body, html {
    margin: 0;
    padding: 0;
    height: auto;
    font-family: sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
    z-index: -3;
    opacity: 1;
    pointer-events: none;
}

#nav-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    background: rgba(0,0,0,0.7);
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.logo img{
    height: 60px;
    width: auto;
    display: block;
}
#navbar ul{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
#navbar li{
    margin-left: 20px;
}
#navbar a{
    color: white;
    text-decoration: none;
}
#navbar a:hover{
    color: #f0a500;
}

.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.text-animation{
    position: relative;
    z-index: 1;
    background-color: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
}
.text-animation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    color: white;
}
.text-animation_h1{
    font-size: 2.5rem;
    text-align: center;
}

#site-footer{
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    text-align: center;
}
.footer-container{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.sponsors{
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.sponsors li{
    margin: 5px 0;
}
.sponsors li a{
    color: white;
    text-decoration: none;
}
.sponsors li a:hover{
    color: #f0a500;
}
.social-links{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-links img{
    width: auto;
    height: 80px;
    transition: transform 0.2s ease;
}
.social-links img:hover{
    transform: scale(1.1);
}

.char-container{
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
    background: rgba(0,0,0,0.5);
}
.char-container span{
    color: white;
}
.char-info{
    flex: 1;
    padding-right: 20px;
}
.char-image{
    flex: 1;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.char-image img{
    max-height: 400px;
    max-width: 90%;
    border-radius: 12px;
}
.skills{
    margin: 15px 0;
    list-style: none;
    padding: 0;
}
.skills li{
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
}
.char-buttons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}
.char-buttons button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #444;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.char-buttons button.active{
    transform: scale(1.2);
}
#char{
    display: block;
}

.news-container{
    max-width: 600px;
    margin: 2rem auto;
    font-family: sans-serif;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(0,0,0,0.7);
}
.news-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.news-item{
    display: none;
    padding: 1rem;
    border: 2px dashed #eee;
    border-radius: 8px;
    color: #222;
    text-decoration: none;
    transition: background 0.2s;
    background: #999;
}
.news-item:hover{
    background: #f3f3f3;
}
.news-more{
    margin-top: 1.5rem;
    text-align: right;
}
#btn-more,#btn-less{
    padding: 0.5rem 1rem;
    background: #4f8cff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}
#btn-more:hover,#btn-less:hover{
    background: #3a6fdc;
}
#news{
    display: block;
}

.floating-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #4f8cff;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
    z-index: 9999;
}
.floating-btn:hover{
    background: #f0a500;
}

#unfullwidth{
    max-width: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin:  0 auto;
}

.gamecontainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-family: sans-serif;
    margin-bottom: 20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.7);
    max-width: 100%;
}
.game-title{
    font-size: 2em;
    font-weight: bold;
    color: #53c7ea;
    text-align: center;
}
.game-info{
    display: flex;
    font-family: sans-serif;
    text-align: center;
    gap: 15px;
    font-size: 1em;
    color: #f0a500;
    max-width: 100%;
}
.game-info-key,.game-info-values{
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1em;
}
.game-info-key{
    font-weight: bold;
    text-align: right;
}
.game-info-values{
    flex: 1;
}
#game{
    display: block;
}

.news-mv{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}