body {
    font-family: 'PT Serif', serif;
    justify-content: center; 
    align-items: flex-start; 
    min-height: 100vh; 
    background-color: #080a0a;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


/*{outline: 1px solid red; }


/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0; 
    z-index: 7;
    background-color: #070605;
    padding: 0px 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.507);
}

.container {
    max-width: 1200px;
    padding: 0px;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    padding: 4px 6px;
}

.navbar-toggler-icon {
    color: white;
}

.navbar-brand img {
    margin: 0;
    height: 50px;
    vertical-align: top;
}

.navbar-nav .nav-item img {
    height: 16px;
    width: 16px;
    margin: 0 10px;
    vertical-align: middle;
}

.navbar-nav {
    display: flex;
    justify-content: left; 
    align-items: center;
    width: 100%; 
  }

.nav-link {
    vertical-align: middle;
    font-weight: 500;
    color: #ffffff;
}

.nav-dot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-link:hover, .always-active {
    color: #ecb95d;
}

.nav-link.active {
    color: #ecb95d;
}


.btn {
    color: white;
}

.btn-registration {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 190px;
    height: 60px;
    background-image: url('/img/genesis/btn_register.png');
    background-size: cover;
    background-position: center;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.btn-registration img {
    width: 24px; 
    height: auto;
    margin:0px;
}

.btn-registration:hover {
    transform: scale(1.1);
}


.btn-login {
    white-space: nowrap; 
    background: none;
    color: #868178;
    font-size: 16px;
    padding: 8px 24px;
}

.btn-login:hover {
    color: #ecb95d;
}

.btn-login img {
    width: 56px;
    height: 32px;
    margin-left: -10px;
}

.nav-item img {
    display: inline-block;
    vertical-align: middle;
}

.navbar-nav .nav-item:not(:last-child) .nav-link::after {
    content: '';
    display: none;
    background-image: url('/img/genesis/dot.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-left: 16px;
    vertical-align: middle;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    background-image: url('/img/genesis/dot.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 16px;
    vertical-align: middle;
    display: inline-block; /* Dot akan tampil di mobile */
}


.dropdown-toggle {
    vertical-align: middle;
    border: none;
    color: white;
    margin-left: -16px;
    margin-top: 3px;
    gap: 10px;
}

.dropdown-toggle {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    border: none;
    color: white;
    gap: 10px; 
    margin-left: 0;
    margin-top: 3px;
}

.dropdown-item img {
    vertical-align: middle;
    height: 24px;
    width: 24px;
}


.dropdown-menu {
    background-color: #070605;
    border: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.dropdown-item {
    color: #ffffff;
}

.dropdown-toggle::before {
    content: '';
    background-image: url('/img/genesis/dot.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 0px;
    vertical-align: middle;
    display: inline-block;
}

.dropdown-item:hover {
    background-color: #ecb95d; 
    color: #000000;
}

/* Media Queries untuk Responsivitas */
@media (min-width: 768px) and (max-width: 1199px) {
    .navbar {
        position: sticky;
        padding: 0px 24px 0px 24px;
        width: 100%;
        opacity: 100%;
    }
    
    .container {
        width: 100%;
        padding: 0px;
    }
    
    .d-flex {
        flex-direction: row;
    }
    
    .d-flex a {
        margin-bottom: 10px;
        width: 100%;
    }

    .navbar-brand img {
        margin: 0px;
        padding: 0px;
        height: 40px;
    }
    
    .navbar-nav {
        justify-content: left;
        align-items: left;
        width: 100%; 
    }

    .btn-registration {
        width: 200px;
        height: 42px;
        font-size: 12px;
        padding: 16px 32px;
        margin: 8px 0px 0px 0px ;
    }

    .btn-registration img {
        width: 100%;
        margin-left: 8px;
        padding: 0px;
    }

    .btn-login {
        font-size: 14px; 
        margin: auto -0px auto auto;
        height: 40px; 
        vertical-align: middle;
    }

    .btn-login img {
        width: 48px; 
        height: auto; 
        margin: 0px; 
    }
    

    
    .dropdown-toggle {
        margin-left: 0px;
        margin-top: 0px;
        gap: 4px;
        width: 100%;
        
    }
    
    .dropdown-toggle {
        align-items: left; 
        justify-content: space-between; 
        gap: 10px; 
        margin-left: 0;
        margin-top: 0px;
    }
    
    .dropdown-item img {
        height: 24px;
        width: 24px;
    }
    
    .dropdown-menu {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .navbar {
        position: sticky;
        top: 0; 
        padding: 8px 24px 8px 24px;
        width: 100%;
        opacity: 100%;
    }
    
    .container {
        width: 100%;
        padding: 16px auto;
    }
    
    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-toggler-icon {
        color: white;
    }
    
    
    .d-flex a {
        margin-bottom: 10px;
        width: 50%;
    }


    .navbar-brand img {
        margin: 0px;
        padding: 0px;
        height: 40px;
    }
    
    .navbar-nav .nav-item img {
        height: 16px;
        width: 16px;
        margin: 0px;
        vertical-align:auto;
    }
    
    .navbar-nav {
        justify-content: flex-start; 
        align-items: flex-start;
        width: 100%; 
    }

    .nav-link {
        text-align: left;
        font-weight: 500;
        color: #ffffff;
        display: block;
        padding: 8px 16px;
        width: 100%;
        margin: 0; 
    }

    .nav-link:hover {
        background-color: #ecb95d; 
        color: #000000;
        width: 100%;
    }
    
    .nav-item img {
        display: inline-block;
        vertical-align: middle;
    }
    
    
    .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-item .nav-link::before {
        content: '';
        background-image: url('/img/genesis/dot.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 14px;
        height: 14px;
        margin-right: 16px;
        vertical-align: middle;
        display: inline-block;
    }

    
    .btn-registration {
        width: 100%;
        font-size: 16px;
    }
    
    .btn-registration img {
        width: 80%;
        margin:0px;
    }
    
    .btn-login {
        font-size: 16px;
        padding: 8px 24px;
        width: 100%; 
        padding: 10px 0;
    }
        
    .btn-login img {
        width: 64px;
        height: auto;
        margin-left: 0px;
    }
    

    .dropdown-toggle {
        margin: 0px;
        gap: 16px;
        width: 100%;
        align-items: left; 
        justify-content: space-between; 
    }

    .dropdown-toggle::before {
        margin-left: 4px;
    }
    
    .dropdown-item img {
        height: 24px;
        width: 24px;
    }
    
    .dropdown-menu {
        margin: 0px;
    }
}

.logo-character-wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0px; 
    display: flex;
    justify-content: space-between;  
    align-items: center; 
}

.banner-container {
    position: relative;
    height: auto;
    margin-top: -100px;
    z-index: 1;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo-character {
    padding-top: 150px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 0px;
    width: 100%;
    
}

.logo {
    width: 40%; 
    max-width: 500px; 
    margin: -300px 0 0 27px;
    opacity: 0; /* Mulai dari tidak terlihat */
    transform: translateY(-20px); /* Bergeser ke atas sedikit */
    animation: fadeIn 1s forwards; /* Menerapkan animasi */

}

@keyframes fadeIn {
    to {
        opacity: 1; /* Menjadi terlihat */
        transform: translateY(0); /* Kembali ke posisi normal */
    }
}

.character {
    width: 60%; 
    max-width: 700px; 
    margin-left: -50px;
    animation: idleAnimation 4s infinite ease-in-out; /* Animasi idle */
}

@keyframes idleAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Karakter naik sedikit */
    }
    100% {
        transform: translateY(0); /* Kembali ke posisi awal */
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .banner-container {
        margin-top: -50px;
        width: 100%;
        margin-bottom: 0px;
        margin-left: 24px;
        margin-right: 24px;
        padding: 0px;
        display: flex;
        justify-content:center;
    }

    .banner-background img {
        object-fit: cover; 
        height: auto; 
    }

    .logo-character-wrapper {
        margin: 0 24px; 
        padding: 0px;
        display: flex;
        justify-content: space-between; 
        align-items: center; 
    }

    .logo-character {
        padding-top: 80px;
        margin-top: 0px;
        width: 100%;
    }

    .logo {
        margin: -50px auto 50px auto;
        width: 50%;
        max-width: 300px;
        padding: 0px; 
        
    }

    .character {
        width: 100%;
        max-width: 400px;
        margin-left: 0px;
    }
}


@media (max-width: 767px) {

    .banner-container {
        height: auto;
        margin:0px;
        padding: 0px;
    }
    
    .banner-background img {
        width: 100%;
        height: 100%;
    }
    
    .logo-character {
        flex-direction: column; 
        margin-top: 24px; 
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        overflow: hidden;
    }
    
    .logo {
        width: 80%; 
        margin: -50px 0px 0px 0px;
    }
    
    .character {
        margin:-70px 0 0 0;
        width: 135%; 
        margin-left: 0; 
    }

}

/* Main Content Section */
.start-container {
    display: flex;
    position: relative;
    z-index: 6;
    align-items: center;
    margin: 0 auto; 
    flex-wrap: wrap; 
    max-width: 1200px; 
    width: 100%;
    justify-content: center; 
}

.game-actions {
    position: relative;
    display: flex;
    gap: 48px;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    margin: -500px 0 0 0;
}

.game-action-item {
    text-align: center;
    flex: 1;
}

.version-number, .server-time {
    color: #ffcd6d;
}

.start-game {
    background-image: url('/img/genesis/bg_start.png');
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 218px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    border: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    background-repeat: no-repeat;
    margin: 0 0 -48px 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.start-game:hover {
    transform: scale(1.05);
}


.server-status {
    background-image: url('/img/genesis/bg_status_new.png'); 
    background-size: contain;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    height: 218px; 
    color: #63df00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: none;
    font-weight: bold;
    margin: 0 0 -48px 0;
    position: relative;
}

.server-status img {
    width: 35%; 
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0px;
}

.server-status span#server-status {
    display: inline-block;
    vertical-align: middle; 
    font-size: 20px; 
    color: #63df00;
    font-weight: bold;
}

.status-title {
    
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.186);
    text-align: center;
    width: 100%;
    padding: 0px;
    margin: 50px 0px -90px 0px;
}

.status-instruction {
    color: #fff;
    font-size: 16px;
    margin-top: 8px;
}

.game-instruction {
    color: #fff;
    font-size: 16px;
    margin-top: 8px;
}

@media (min-width: 768px) and (max-width: 1119px) {
    .start-container {
        margin: -100px 24px 0px 24px;
        width: 100%;
        align-items: center;
        padding: 0px;
        display: flex;
        justify-content: center;
    }

    .game-actions {
        top: 0px;
        gap:0px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin: 0px;
        padding: 0px;
    }

    .game-action-item {
        text-align: center;
        width: 100%;
        align-items: center;
    }

    .game-instruction {
        font-size: 16px;
        margin-top: -40px;
    }

    .start-game {
        width: 100%;
        font-size: 16px;
        background-size: cover;
        background-repeat: no-repeat; 
    }

    .server-status {
        width: 100%;
        font-size: 16px;
        background-size: cover;
        background-repeat: no-repeat;
        margin-top: 0px;
    }

    .server-status img {
        width: 50%;
    }

    .status-instruction {
        font-size: 16px;
        margin-top: -50px;
    }

    .status-title {
        font-size: 16px;
        margin: -120px 0px 0px 210px ;
    }
}


@media (max-width: 767px) {
    .start-container {
        margin: 300px 0 0px 0;
        width: 100%;
        max-width: none;
        padding: 0 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .game-actions {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column; 
        gap: 0px; 
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .game-action-item {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .game-instruction {
        font-size: 16px; 
        margin-top: 0px;
    }

    .start-game {
        width: 100%; 
        height: 140px; 
        font-size: 16px; 
        margin-bottom: 0px; 
        background-size: cover; 
        background-repeat: no-repeat;
        
    }

    .server-status {
        width: 100%; 
        height: 140px; 
        font-size: 16px; 
        background-size: cover; 
        background-repeat: no-repeat;
        margin: 0px; 
    }

    .server-status img {
        width: 50%;
    }

    .status-instruction {
        font-size: 16px;
        margin-top: 0;
    }

    .status-title {
        font-size: 16px;
        margin: -145px 0px 0px 265px ;
    }
}

/* Video & News */
.first-container {
    display: flex;
    position: relative;
    z-index: 5;
    gap: 0px; 
    margin: -128px auto 0px auto;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap; 
}

@keyframes moveLight {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; } /* Pindahkan hingga dua kali lebar gambar */
}

@keyframes pulseLight {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}


.first-container::before {
    content: '';
    position: absolute;
    top: -590px; 
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 1096px;
    background-image: url('/img/genesis/bg_light.png'); 
    background-size: auto; /* Atur agar gambar berulang secara otomatis */
    background-repeat: repeat-x; /* Ulangi gambar horizontal (X axis) */
    background-position: top center; 
    z-index: -1;
    animation: pulseLight 5s ease-in-out infinite;
}


#video-container {
    position: relative;
    width: 100%;
    max-width: 610px;
    padding:0px auto;
    margin-bottom: 0px;
    overflow: hidden;
}

#thumbnail {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 620px;
    cursor: pointer;
}

#video iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#video video {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; /* Menjaga interaktivitas seperti thumbnail */
}

/* News Section */
.news-container {
    width: 100%;
    max-width: 590px;
    background-color: #080a0a;
    padding: 24px 24px 24px 24px;
    margin: 29px 0px 0px 0px; 
    height: 100%;
    min-height: 315px;
    flex-direction: column; /* Tambahkan flex */
    justify-content: space-between; /* Posisikan konten dengan jarak */
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:white;
    margin: 0px;
    font-size: 24px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.news-header h2 {
    margin: 0px;
    font-size: 24px;
    font-weight: 500;
}

.news-categories button {
    background: none;
    border: none;
    padding: 8px 8px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    position: relative;
    margin: 0px;
    
}

.news-categories button:hover::after,
.news-categories button.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background-color: #ecb95d;
    width: 100%;
}

.news-categories button:focus {
    outline: none;
}

#news-list {
    list-style: none; /* Hilangkan bullet point bawaan */
    padding: 0;       /* Hilangkan padding bawaan */
    margin: 0;        /* Hilangkan margin bawaan */
    text-decoration: none;
}

/* Tambahkan efek hover pada setiap item news */
#news-list li {
    margin: 0px 0;
    font-size: 16px;
    line-height: 1.6;
    padding: 16px 0 16px 0 ; /* Update padding */
    border-bottom: 2px dotted #555;
    transition: background-color 0.3s ease, background-image 0.3s ease;
    background-color: transparent; /* Set transparan awal */
    
}


#news-list li:hover {
    background-image: url('/img/genesis/high_forum.png'); /* Background hover dengan gambar */
    background-size: cover;
    padding: 16px 8px 16px 8px; /* Maintain padding for consistency */
    margin-bottom: 10px;
}

/* Hover pada judul item berita */
#news-list li .description {
    color: #f5f5f5;
    transition: color 0.3s ease;
    text-decoration: none;
}

#news-list li:hover .description {
    color: #ecb95d;
    text-decoration: underline;
}

/* Hover pada tanggal berita */
.date {
    float: right;
    color: #6f6a62;
    transition: color 0.3s ease;
}

#news-list li:hover .date {
    color: #fff;
}


.category {
    font-weight: bold;
    margin-right: 10px;
}

.category.news {
    color: #af663c;
}

.category.updates {
    color: #4c9d96;
}

.category.events {
    color: #9d4b85;
}

.date {
    float: right;
    color: #6f6a62;
}

.description {
    color: #fff;
}

.news-archive-btn-container {
    text-align: center; 
    margin-top: 24px; 
    width: 100%;
    margin-bottom: 0; /* Atur agar tetap di bawah */
}

.news-archive-btn {
    display: inline-block;
    width: 100%;
    background-size: cover; 
    background-position: bottom; 
    color: white;
    background-color: transparent;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s, background-color 0.3s ease; /* Tambahkan transisi untuk hover */
    text-decoration: none;
    line-height: 60px; 
}

.news-archive-btn:hover {
    background-image: url('/img/genesis/bg_archive_news.png'); 
    opacity: 0.9;
}

.news-archive-btn img {
    width: 50px; 
    height: 50px;
}

.news-archive-btn:hover img {
    opacity: 0.8; 
}

.news-archive-btn .btn-text {
    font-size: 16px;
    color: #868178;
}

.news-archive-btn:hover .btn-text {
    color: #ecb95d;; 
}

@media (min-width: 768px) and (max-width: 1199px) {
    .first-container {
        margin: 0px 24px 24px 24px;
        display: flex;
        gap: 0px;
        width: 100%;
    }

    .first-container::before {
        top: -300px;
        width: 100%;
        height: 600px;
    }

    #video-container {
        max-width: 100%;
        width: 50%;
        margin: 0px;
        padding: 0px;
        position: relative;
    }

    #video {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 50%;
    }

    #video iframe {
        width: 50%;
        height: 50%;
        border: none;
    }

    .news-container {
        width: 50%;
        max-width: 50%;
        margin: 24px 0px 0px 0px;
        padding: 24px 24px 0px 24px;
    }

    .news-header {
        font-size: 20px; /* Sedikit kecilkan header */
    }

    .news-categories button {
        font-size: 14px; /* Ukuran tombol kategori sedikit lebih kecil */
        padding: 5px 8px;
    }

    #news-list li {
        font-size: 14px; /* Ukuran list berita lebih kecil */
        padding: 12px 0;
    }

    .news-archive-btn {
        font-size: 14px; /* Ukuran teks archive lebih kecil */
        padding: 12px;
        line-height: 40px;
    }

}


@media (max-width: 767px) {


    .first-container {
        margin: -48px 0 0 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0px 24px 24px 24px ;
        align-items: start;
    }

    .first-container::before {
        top: -550px;
        width: 100%;
        left: 50%;
        height: 700px;
    }

    #video-container {
        width: 100%;
        max-width: 100%; 
        padding-bottom: 56.25%; 
        margin-bottom: 24px;   
    }

    #video iframe, #video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    #thumbnail {
        width: 100%;           
        height: auto;        
        margin: 0px 0px -224px 0px;          
        padding: 0px;  
    }

    .news-container {
        width: 100%; 
        max-width: 100%; 
        padding: 16px; 
        margin: 0px;
        min-height: auto;
    }

    .news-header {
        font-size: 16px;
        padding-bottom: 8px;
        text-align: center; 
    }

    .news-header h2 {
        font-size: 16px; 
        text-align: center; 
    }

    .news-categories button {
        font-size: 14px; 
        text-align: center; 
    }

    #news-list li {
        margin: 0px;
        line-height: 1.6;
        font-size: 12px; /* Ukuran list berita lebih kecil */
        padding: 24px 0;
    }
    
    
    #news-list li:hover {
        padding: 24px 8px 24px 8px; /* Maintain padding for consistency */
        margin-bottom: 10px;
    }

    .news-archive-btn {
        font-size: 16px;
        display: flex;
        justify-content: center;
        padding: 16px;
        line-height: 35px; 
    }

    .news-archive-btn img {
        width: 100%;
        height: 24px;
    }

    

}

.second-container {
    display: flex;
    position: relative;
    z-index: 5;
    gap: 0px; 
    margin: 24px auto; 
    max-width: 1200px; 
    width: 100%; 
    flex-wrap: wrap; 
    padding-bottom: 81px;
}

.top-players-container {
    width: 100%;
    max-width: 600px;
    margin: 0px;
    background-image: url('/img/genesis/bg_topplayer.png'); 
    background-size: cover;
    background-position: center;
    padding: 24px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.title-top {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 16px;
    color: #070605;
}

.top-players-table {
    width: 100%;
    border-collapse: collapse;
}

.top-players-table thead th {
    color: #312923;
    padding: 8px;
    font-size: 16px;
    border-bottom: 1.5px dashed #857d76;
    text-align: left;
}

.top-players-table tbody td {
    padding: 8px;
    font-size: 16px;
    text-align: left;
}

.player-info {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 8px; 
}

.profile-pic {
    width: 52px; 
    object-fit: cover;
    margin-right: 16px;
}

.top-players-table tbody tr:hover {
    background-image: url('/img/genesis/hover_table.png'); 
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.362);
}


.rating {
    color: #ad1b41; 
}

.level-t {
    color: #7c52af; 
}

.forum-section {
    padding: 0 0 0 24px;
    width: 50%;
    margin: 0px;
}

.top-faction-container {
    width: 100%;
    background-image: url('/img/genesis/bg_topplayer.png');
    background-size: cover;
    background-position: center;
    padding: 24px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px; 
    transition: transform 0.3s ease;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #232323;
    padding: 16px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);  

}

.discord-btn {
    background-image: url('/img/genesis/bg_discord.jpg');
    background-size: cover;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease;
}

.telegram-btn {
    background-image: url('/img/genesis/bg_telegram.jpg');
    background-size: cover;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease;
}

.social-btn img {
    width: 98px;
    height: 61px;
    margin-right: 10px;
}

.social-btn:hover {
    background-color: #333;
    transform: scale(1.05);
}


.discussion-list h2 {
    text-align: center;
    color: white;
    margin: 24px auto;
    font-size: 24px;
    font-weight: 500;
    background-image: url('/img/genesis/bg_discussion.png');
    background-size: cover;
    background-position: center;
}

.discussion-item {
    display: flex;
    align-items: center;
    padding: 16px 0px;
    border-bottom: 1px dashed #333;
    transition: background-color 0.3s ease;
}

.discussion-item:hover{
    background-image: url('/img/genesis/high_forum.png');
    background-size: cover;
    padding: 16px 8px 16px 8px;
    margin-bottom: 10px;
}

.discussion-item img.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.discussion-content {
    flex-grow: 1;
}

.discussion-title {
    font-size: 16px;
    font-weight:500;
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.discussion-title:hover {
    color: #ecb95d;
}

.discussion-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    margin-top: 4px;
}

.thread-count {
    color: #fff;
    font-weight: bold;
}

.chat-icon {
    width: 14px;
    height: 12px;
}


.highlighted {
    background-image: url('/img/genesis/high_forum.png');
    background-size: cover;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.visit-forum-btn-wrapper {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.visit-forum-btn {
    position: relative; 
    background-image: url('/img/genesis/btn_visit.png');
    background-size: cover; 
    color: #fff;
    text-align: center;
    padding: 16px 24px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    width: 175px; 
    height: 40px; 
    justify-content: center;
    align-items: center;
    display: flex;
    border: none;
    transition: transform 0.3s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.visit-forum-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 546px;
    height: 29px;
    background-image: url('/img/genesis/bg_btn_visit.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;

}

.visit-forum-btn:hover {
    transform: scale(1.1);
}

.visit-forum-btn:hover::before {
    transform: translate(-50%, -50%);
    z-index: 1;
}


@media (min-width: 768px) and (max-width: 1199px) {
    .second-container {
        max-width: 100%;
        padding-bottom: 60px;
        margin: 24px;
    }

    .top-players-container {
        max-width: 50%;
        padding: 20px; 
    }

    .title-top {
        font-size: 22px;
    }

    .top-players-table thead th,
    .top-players-table tbody td {
        font-size: 14px;
    }

    .player-info {
        gap: 6px;
    }

    .profile-pic {
        width: 40px;
    }

    .forum-section {
        width: 48%;
        padding: 16px;
    }

    .social-buttons {
        gap: 16px;
    }

    .social-btn {
        padding: 12px;
        font-size: 16px;
    }

    .social-btn img {
        width: 80px;
        height: 50px;
        margin-right: 8px;
    }

    .discussion-list h2 {
        font-size: 24px;
        margin: 16px auto;
        width: 100%;
    }

    .discussion-item {
        padding: 16px 0;
        width: 100%;
    }

    .discussion-title {
        font-size: 16px;
    }

    .discussion-info {
        font-size: 12px;
        width: 100%;
    }

    .highlighted {
        padding: 12px;
    }

    .visit-forum-btn {
        padding: 12px 20px;
        font-size: 10px;
        width: 150px;
        height: 35px;
    }

    .visit-forum-btn::before {
        width: 400px;
        height: 25px;
    }
}


@media (max-width: 767px) {
    .second-container {
        gap: 0px; 
        margin: 0px;  
        width: 100%;
        padding: 0px 24px 96px 24px;
    }
    
    .top-players-container {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 40px 8px 40px 8px;
    }
    
    .title-top {
        font-size: 20px;
        margin-bottom: 8px;
        margin-top: 0px;
    }
    
    .top-players-table {
        width: 100%;
    }
    
    .top-players-table thead th {
        padding: 4px;
        font-size: 14px;
    }
    
    .top-players-table tbody td {
        padding: 4px;
        font-size: 12px;
    }
    
    .player-info {
        gap: 4px; 
    }
    
    .profile-pic {
        width: 32px; 
        margin-right: 8px;
    }
    
    .forum-section {
        padding: 0px;
        margin-top: 24px;
        width: 100%;
    }
    
    .social-buttons {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 24px; 
        transition: transform 0.3s ease;
    }
    
    .social-btn {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
        width: 100%;
        height: 72px;
        font-size: 16px;    
    }
    
    .social-btn img {
        width: 40px;
        height: auto;
        margin: 0px;
    }

    .discussion-list {
        margin: 0px;
    }

    .discussion-list h2 {
        font-size: 24px;
    }
    
    .discussion-item {
        padding: 16px 0;
    }
    
    .discussion-item img.profile-pic {
        width: 40px;
        height: auto;
        border-radius: 50%;
        margin-right: 16px;
    }
    
    .discussion-content {
        flex-grow: 1;
    }
    
    .discussion-title {
        font-size: 14px;
    }
    
    .discussion-info {
        margin-top: 4px;
    }
    
    .thread-count {
        color: #fff;
        font-weight: bold;
    }
    
    .chat-icon {
        width: 14px;
        height: 12px;
    }
    
    .highlighted {
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .visit-forum-btn-wrapper {
        margin-top: 24px;
    }
    
    
    .visit-forum-btn {
        padding: 16px 24px;
        font-size: 12px;
        width: 175px; 
        height: 40px; 
    }
    
    
    .visit-forum-btn::before {
        top: 6px; 
        left: 0px;
        width: 100%;
        align-items: center;
        display: none;
    }
    
}


/* Footer Styling */
.site-footer {
    background-color: #0e1010;
    color: #868178;
    text-align: center;
    position: relative; 
    width: 100%; 
    flex-wrap: wrap; 
    padding: 40px 0 0 0; 
    z-index: 99999;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.scroll-up-container {
    position: absolute;
    top: -40px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.scroll-up-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
}

.scroll-up-btn img {
    width: 91px; 
    height: 80px;
    transition: transform 0.3s ease; 
}

.scroll-up-btn img:hover {
    transform: scale(1.1); 
}

.scroll-up-container::before {
    content: '';
    position: absolute;
    top: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: 877px;
    height: 231px;
    background-image: url('/img/genesis/light_btn_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1; 
    pointer-events: none;
}

.scroll-up-btn:hover::before {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 48px 0;
}

.footer-menu nav a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 16px;
    
}

.footer-menu nav a:not(:last-child)::after {
    content:'';
    display: inline-block;
    background-image: url('/img/genesis/dot.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px; 
    height: 14px; 
    margin-left: 24px; 
    vertical-align: middle;
    align-items: center;
    padding: 0px;
}

.footer-menu nav a:hover {
    color: #ecb95d; 
}



.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #272828;
    max-width: 1200px; 
    margin: 0 auto 0 auto;
    padding: 48px 0 48px 0;
    background-color: transparent; 
}

.copyright-info {
    display: flex;
    align-items: left;
    font-size: 16px;
}

.age-rating {

    border: 4px solid #ff0055; 
    color: #fff; 
    padding: 4px 8px 0px 8px ;
    font-size: 24px;
    font-weight: bold;
    margin: 0 16px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.copyright-info {
    display: flex;
    align-items: left;
    font-size: 16px;
}
.copyright-text {
    text-align: left;
    padding-top: 5px; 
    padding-bottom: 0; 
}

.copyright-text p {
    margin: 0;
    line-height: 1.5;
}

.footer-contact-info {
    text-align: right;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-info p {
    margin: 0;
}

.footer-contact-info i {
    color: #7c52af;
    margin-right: 6px;
}

.footer-contact-info a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: #fff;
}

.language-selector {
    width: 210px;
    position: relative;
    display: inline-block;
    padding: 0px;
}

.language-selector select {
    width: 100%;
    padding: 16px 40px;
    background-repeat: no-repeat;
    background-position: 8px center; 
    background-size: 24px 24px; 
    border: 1px solid #272828;
    color: #fff;
    background-color: #070605; 
}

.language-selector select option {
    padding-left: 16px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .site-footer {
        margin: 0px; 
        width: 100%;
        padding: 24px;
        display: flex;
        justify-content:center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        padding: 16px 0;
        width: 100%;
        
    }

    .footer-menu nav a {
        font-size: 16px;
        margin: 0 12px;
        
    }

    .footer-menu nav a:not(:last-child)::after {
        width: 10px;
        height: 10px;
        margin-left: 16px;
    }

    .scroll-up-container {
        top: -30px;
    }

    .scroll-up-btn img {
        width: 70px;
        height: 60px;
    }

    .scroll-up-container::before {
        width: 600px;
        height: 180px;
        top: -72px;
    }

    /* Footer Copyright */
    .footer-copyright {
        align-items: left;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        width: 100%;
    }
    .footer-contact-info {
        text-align: left;
    }
    .copyright-info {
        display: flex;
        align-items: left;
        font-size: 16px;
        padding-top: 30px ;
    }
    .copyright-text {
        text-align: left;
        padding-top: 5px; 
        padding-top: 0; 
        padding-bottom: 0; 
    }
    
    .copyright-text p {
        margin: 0;
        line-height: 1.5;
    }

    .age-rating {
        font-size: 16px;
        margin-right: 16px;
    }

    .copyright-text {
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
    }

    .language-selector {
        width: 180px;
    }
    
    .language-selector select {
        padding: 12px 32px;
        background-size: 20px 20px;
        font-size: 14px;
    }
    
    .language-selector select option {
        padding-left: 12px;
    }
    
}


@media (max-width: 767px) {

    .site-footer { 
        width: 100%;  
        padding: 24px; 
    }
    
    .footer-container {
        flex-direction: column; 
    }
    
    .footer-menu {
        flex-direction: column;
        display: flex;
        padding: 24px 0 24px 0; 
    
    }
    
    .footer-menu nav a {
        margin: 0;
        align-items: center;
        font-size: 16px;
    }
    
    .footer-menu nav a:not(:last-child)::after {
        margin-left: 8px; 
    }
    
    .scroll-up-container {
        top: -40px; 
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-up-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        box-shadow: none;
    }
    
    .scroll-up-btn img {
        width: 91px; 
        height: 80px;
    }
    
    .scroll-up-container::before {
        top: -18px;
        margin: 0px;
        width: 100%;
        height: 100px;
    }

    .footer-copyright {
        padding:24px 0 0 0;
        width: 100%;
        margin: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        
    }
    
    .copyright-info {
        font-size: 14px;
        padding: 0 0 0px 0;
        margin: 0px; 
    }
    
    .age-rating {
        height: fit-content;
        border: 3px solid #ff0055; 
        padding: 8px 8px 8px 8px;
        font-size: 20px;
        font-weight: bold;
        margin-right: 16px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .copyright-text {
        text-align: left;
        padding:0px;
        
    }
    
    .copyright-text p {
        line-height: 1.5;
    }
    
    .language-selector {
        width: 100%;
    }
    
    .language-selector select {
        padding: 10px 28px; 
        background-size: 18px 18px; 
        font-size: 16px; 
    }
    
    .language-selector select option {
        padding-left: 10px; 
    } 
}

.last-footer {
    background-color: #121414;
    padding: 0px;
    text-align: center;
    width: 100%; 
    flex-wrap: wrap; 
    bottom: 0px;
    
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
    background-color: transparent;
    min-height: 70px;
    bottom: 0px;

}

.legal-menu a {
    color: #868178;
    margin-right: 16px;
    font-size: 16px;
    text-decoration: none;
}

.legal-menu a:hover {
    color: #ecb95d;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}


.legal-menu a i {
    font-size: 18px; 
    color: #414343; 
    margin-right: 4px;
    transition: color 0.3s ease; 
}


.legal-menu a[href="#facebook"] i:hover {
    color: white; 
}

.legal-menu a[href="#youtube"] i:hover {
    color: white; 
}

.legal-menu a[href="https://discord.gg/pwexe"] i:hover {
    color: white; 
}

.footer-copy {
    position: relative;
    width: 100px;
    height: 13px;
    top:4px;
    background-image: url('/img/genesis/logo_footer.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}


.footer-copy:hover {
    opacity: 1;
}


.legal-menu a:first-child::after {
    content: ' | ';
    color: #393e41; 
    padding-left: 10px; 
}

.legal-menu a:nth-child(2)::after {
    content: ' | '; 
    color: #393e41;
    padding-left: 10px;
}

.legal-menu a:nth-child(3)::after {
    content: ''; 
}

@media (min-width: 768px) and (max-width: 1199px) {
    .footer-bottom {
        vertical-align: middle;
        align-items: center; 
        margin: auto 24px;
        padding: 0px;
    }

    .legal-menu {
        margin-bottom: 8px;  
        text-align: center;  
    }

    .legal-menu a {
        margin: 8px;  
        font-size: 16px;  
    }

    .social-media {
        margin-top: 16px;  
        text-align: center;
    }

    .social-media img {
        width: 25px;  
        height: 25px;
    }


    .footer-copy {
        width: 100px;
        height: 10px;
        top:0px;
    }

    .legal-menu a:first-child::after {
        padding-left: 8px; 
    }
    
    .legal-menu a:nth-child(2)::after {
        padding-left: 8px;
    }
    
    .legal-menu a:nth-child(3)::after {
        content: ''; 
    }
}

@media (max-width: 767px) {
    .last-footer {
        padding: 24px 24px 32px 24px;
        margin: 0px;
        text-align: left;
        width: 100%;
        flex-direction: column;  
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
        width: 100%;; 
        margin: 0px;
        min-height: 24px;
    }
    
    .legal-menu a {
        margin-right: 0px;
        font-size: 14px;
    }
    
    .social-media a {
        margin: 0px;
    }
    
    .social-media img {
        width: 30px;
        height: 30px;
    }
    
    .legal-menu a img {
        width: auto; 
        height: auto;
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    .footer-copy {
        width: 100px;
        height: 10px;
        top:8px;
    }
    
    .legal-menu a:first-child::after {
        padding-left: 8px; 
    }
    
    .legal-menu a:nth-child(2)::after {
        padding-left: 8px;
    }
    
    .legal-menu a:nth-child(3)::after {
        content: ''; 
    }
}


/* Styling untuk halaman download */

.banner-kecil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Gambar background di belakang elemen lain */
}

.logo-karakter-kecil {
    max-width: 1200px;  
    margin: 0 auto;  
    padding: 0px;  
    display: flex;
    justify-content: space-between;  
    align-items: center;  
}

.banner-container-kecil {
    background-image: url('/img/genesis/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -100px;
    z-index: 1;
    height: 600px; /* Berikan ukuran untuk memastikan terlihat */
}

.logo-karakter {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 300px;
    width: 100%;
}

.logo-kecil {
    width: 100%;  
    max-width: 300px;  
    margin: -250px 0 0 0;
}

.karakter-kecil {
    width: 100%;  
    max-width: 500px;  
    margin-left: -50px;  
}

/* Tab Menu Styling */
.tab-container{
    background-color: #090b0a; 
    width: 100%;
    padding: 8px 0px 8px 0px; 
    position: relative; 
    z-index: 2; 
    margin-top: -250px;
    border-bottom: 2px solid #333; 
}

.tab-wrapper {
    max-width: 1200px;
    margin: 0px auto; 
    padding: 0px;
}

.tab-menu {
    display: flex;
    justify-content: flex-start; 
    margin-bottom: 0px;
    padding-left: 0; 
    margin: 0px;
    padding: 0px;
}

.tab-item {
    list-style: none;
    padding: 16px 32px;
    font-size: 18px;
    color: #868178;
    cursor: pointer;
    margin: 0 0px;
    background: none;
    border: none;
    position: relative;
}

.tab-item:hover::after,
.tab-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background-color: #ecb95d;
    width: 100%;
}

.tab-item.active {
    color: white;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}


/* Download container */
.download-container {
    background-color: #090b0a; 
    width: 100%;
    padding: 24px 0px 56px 0px; 
    position: relative; 
    z-index: 2; 
    margin-top: 0px; 
}

.logo-karakter::before {
    content: '';
    position: absolute;
    top: -190px; 
    left: 35%;
    transform: translateX(-50%);
    width: 100%;
    height: 1096px;
    background-image: url('/img/genesis/bg_light.png'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: top center; 
    z-index: 1;
    
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 0px 0px 48px 0px;

}

.banner {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; 
}

.download-info {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    text-align: start;
    color: #312923;
    margin:0px auto 0px auto;
    padding: 24px 0px 0px 32px;
    background-image: url('/img/genesis/bg_topplayer.png'); 
    background-size: cover;
    background-position: center;
    font-size: 16px;
    width: 100%; 
}

.download-content {
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    width: 50%; 
}

.download-details {
    margin: 0px; 
}

.download-details h2 {
    font-weight: bold;
    margin-bottom: 16px;
}

.download-buttons {
    display: flex;
    flex-direction: row; 
    gap: 0px; 
}

.btn-download, .btn-guide {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    text-decoration: none;
}

.btn-download {
    background: url('/img/genesis/btn_download1.png') no-repeat center;
    background-size: cover;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
    width: 300px;
    height: 60px;
    font-size: 16px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.btn-guide {
    background: url('/img/genesis/btn_download2.png') no-repeat center;
    background-size: cover;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
    width: 300px;
    height: 60px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.btn-download:hover, .btn-guide:hover {
    transform: scale(1.05);
}

.download-character {
    width: 80%; 
    text-align: right; 
}

.download-character img {
    max-width: 100%; 
    height: auto;
    margin: 48px 0 0 0; 
}

.second-download-info {
    margin-top: 24px; 
}

.info-title {
    font-weight: bold;
    margin-bottom: 0px;
}

.title-page {
    font-weight: 500;
    color: white;
    margin-top: 16px;
}

.title-tab {
    font-weight: 500;
    color: white;
    margin: 16px auto;
}

.desc-page {
    color: white;
    margin-bottom: 8px;
}


.sistem-info {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    text-align: start;
    color: white;
    margin: 24px auto;
    padding: 32px;
    border: 1px solid #272828; 
    font-size: 16px;
    width: 100%; 
    background-color: #121414;
}

.title-sistem {
    font-weight: 500;
    color: #ecb95d;
    margin-bottom: 24px;
}

.title-content {
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

/*patch*/
.patch-section {
    display: flex;
    background-color: #121414; /* Background warna */
    padding: 16px;
    border: 2px solid #272828; /* Warna border */
    color: #bada55; /* Warna teks */
    margin-top:24px;
}

.patch-image {
    flex: 1;
    padding-right: 24px;
    
}

.patch-image img {
    width: 100%;
    height: auto;
    border: 2px solid #272828;
}

.patch-details {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.patch-details h2 {
    color: #ecb95d;
    font-size: 24px;
    margin-bottom: 16px;
}

.patch-details p {
    margin-bottom: 8px;
    color: #ccc;
}

.patch-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-patch {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-patch:hover {
    background-color: #f5c000;
    color: #222;
}

.google-drive {
    background-color: #f44242;
}

.direct-download {
    background-color: #34a853;
}

.mediafire {
    background-color: #4285f4;
}

@media (min-width: 768px) and (max-width: 1199px) {

    .banner-kecil img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .logo-karakter-kecil {
        max-width: 960px;  
        margin: 0 auto;
        padding: 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .banner-container-kecil {
        position: relative;
        height: auto;
        margin-top: -80px; 
        z-index: 1;
    }

    .logo-karakter {
        padding-top: 80px; 
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0px; 
        width: 100%;
    }

    .logo-kecil {
        width: 100%;  
        max-width: 210px;  
        margin: -200px 0 0 0;
    }

    .karakter-kecil {
        width: 100%;  
        height: auto;
        margin-bottom: 0px;
        justify-content: end;  
    }

    .download-container {
        background-color: #090b0a;
        width: 100%;
        padding: 24px 0px 24px 0px; 
        position: relative;
        z-index: 2;
        margin: 0px; 
    }

    .logo-karakter::before {
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%; 
        height: 800px; 
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: 1;
    }

    .content-wrapper { 
        margin: 0px 24px 0px 24px;
        padding: 0px 0px 40px 0px; 
    }

    .banner {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    .tab-container{
        width: 100%;
        padding: 8px 0px 8px 0px; 
        z-index: 2; 
        margin-top: -180px;
        border-bottom: 2px solid #333; 
    }

    .tab-wrapper {
        margin: 0px 24px; 
        padding: 0px;
    }


    .tab-item {
    list-style: none;
    padding: 16px 24px;
    font-size: 16px;
    color: #868178;
    cursor: pointer;
    margin: 0px;
    }

    .tab-menu {
        display: flex;
        justify-content: flex-start;
        margin-bottom: -8px;
        padding-left: 0;
    }

    .tab-item:hover::after,
    .tab-item.active::after {
        bottom: 0px;
        height: 2px;
        width: 100%;
    }

    .download-character img {
        max-width: 100%; 
        height: auto;
        margin: 10% 0 0 0; 
    }
    
    .download-info {
        text-align: start;
        padding: 24px 16px 0px 16px; 
        background-position: center;
        font-size: 16px; 
        width: 100%;
        margin: 0px;
        vertical-align: bottom;
    }

    .download-info h2 {
        font-weight: bold;
        margin-bottom: 16px; 
    }

    .download-buttons {
        margin: 0px;
    }

    .btn-download, .btn-guide {
        padding: 0px;
        margin: 0px;
        text-decoration: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-download {
        display: inline-flex; 
        align-items: center; 
        justify-content: center;
        color: white;
        transition: transform 0.3s;
        width: 350px; 
        height: 50px; 
        font-size: 14px; 
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    }

    .btn-guide {
        display: inline-flex; 
        align-items: center; 
        justify-content: center;
        color: white;
        transition: transform 0.3s;
        width: 300px;
        height: 50px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    }

    .btn-download:hover, .btn-guide:hover {
        transform: scale(1.05);
    }

    .second-download-info {
        margin-top: 24px;
    }

    .info-title {
        font-weight: bold;
    }

    .patch-section {
        display: flex;
        background-color: #121414; /* Background warna */
        padding: 16px;
        border: 2px solid #272828; /* Warna border */
        color: #bada55; /* Warna teks */
        margin-top:24px;
    }
    
    .patch-image {
        flex: 1;
        padding-right: 16px;
        
    }
    
    .patch-image img {
        width: 100%;
        height: auto;
        border: 2px solid #272828;
    }
    
    .patch-details {
        flex: 2;
        display: flex;
        flex-direction: column;
    }
    
    .patch-details h2 {
        color: #f5c000;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .patch-details p {
        margin-bottom: 8px;
        color: #ccc;
    }
    
    .patch-buttons {
        display: flex;
        gap: 16px;
        margin-top: 16px;
    }
    
    .btn-patch {
        background-color: #444;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
}


@media (max-width: 767px) {

    .banner-kecil img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .logo-karakter-kecil {
        max-width: 100%;  
        margin: 0 auto;
        padding: 0px;
        display: flex;
        flex-direction: row;  
        justify-content: center; 
        align-items: center;
    }

    .banner-container-kecil {
        position: relative;
        height: auto;
        margin-top: -70px;
        z-index: 1;
    }

    .logo-karakter {
        padding-top: 80px;
        position: relative;
        z-index: 1;
        display: flex;
        gap: 0px;
        width: 100%;
    }

    .logo-kecil {
        width: 100%;
        max-width: 130px;
        margin: -150px 0 0 0;
    }

    .karakter-kecil {
        width: 100%;
        max-width: 250px;
        margin-left: -50px;
    }

    .download-container {
        background-color: #090b0a;
        width: 100%;
        padding: 0px 24px;
        position: relative;
        z-index: 2;
        padding-top: 24px;
        margin-top: 0px;
    }

    .logo-karakter::before {
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 300px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: 1;
    }

    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0px 0px 48px 0px;
    }

    .banner {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    .tab-container{
        padding: 8px 24px 8px 24px; 
        position: relative; 
        z-index: 2; 
        margin-top: -140px;
        border-bottom: 2px solid #333; 
    }
    
    .tab-wrapper {
        margin: 0px auto; 
        padding: 0px;
    }
    
    
    .tab-item {
        list-style: none;
        padding: 16px 32px;
        font-size: 16px;
        color: #868178;
        cursor: pointer;
        margin: 0px;
    }
    
    .tab-menu {
        display: flex;
        margin-bottom: -8px;
        padding-left: 0;
    }

    .tab-item {
        list-style: none;
        padding: 12px 20px;
        font-size: 14px;
        margin: 0 0px;
        text-align: center;
    }

    .tab-item:hover::after,
    .tab-item.active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0px;
        height: 2px;
        background-color: #ecb95d;
        width: 100%;
    }

    .tab-item.active {
        color: white;
    }

    .download-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 32px 24px 48px 24px ;
        margin: 0px;
        width: 100%;
        
    }

    .download-content {
        width: 100%;
        text-align: center;
        order: 2;
    }

    .download-buttons {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }

    .download-info h2 {
        font-weight: bold;
        margin-bottom: 16px;
    }

    .btn-download {
        width: 100%;
        height: 60px;
    }
    
    .btn-guide {
        width: 100%;
        height: 60px;
    }
    
    .download-character {
        width: 100%;
        margin-bottom: 24px;
        text-align: center;
        order: 1;
    }

    .download-character img {
        max-width: 100%;
        margin-left: 0;
    }

    .second-download-info {
        margin-top: 24px;
    }

    .info-title {
        font-weight: bold;
    }

    .sistem-info {
        flex-direction: column;
        align-items: center;
        padding: 16px;
    }

    .sistem-details {
        text-align: center;
    }

    .patch-section {
        flex-direction: column;
        text-align: center;
    }

    .patch-image {
        margin-bottom: 16px;
        padding-right: 0px;
    }

    .patch-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-patch {
        width: 100%;
        margin-bottom: 8px;
    }
}

.about-container-besar {
    background-image: url('/img/genesis/banner.jpg');
    background-size: cover;
    background-position:bottom;
    position: relative;
    margin-bottom: 0px;
    z-index: -1;
}

.about-container {
    max-width: 1200px;
    margin: 0px auto 0 auto;
    padding:0px 0px 0px 0px ;

}

/* Thumbnail container di bagian atas */
.thumbnail-container {
    margin: -60px auto 100px auto;
    padding: 0px;
    max-width: 800px;
    z-index: 2;
}

/* Thumbnail layout */
.character-thumbnails {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

@keyframes idleMove {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }  /* Menggerakkan karakter sedikit ke atas */
    100% { transform: translateY(0); }
}

.thumbnail:hover {
    transform: scale(1.1); /* Efek zoom saat hover */
    border: 2px solid #ffc107;
}

/* Layout untuk karakter penuh dan deskripsi */
.character-display {
    display: flex;
    justify-content:flex-start;
    align-items: flex-start;
    gap: 0px; /* Jarak antar gambar dan deskripsi */
}

/* Gambar full karakter */
.full-character {
    max-width: 100%;
    object-fit: cover;
    margin: 0px 0 0px -180px;
    animation: idleMove 5s infinite;  /* Durasi animasi 5 detik, berulang */
    z-index: 1;
}

/* Styling untuk deskripsi */
.character-description {
    max-width: 60%;
    padding: 40px 24px 40px 24px;
    margin: 60px 70px 0px -320px;
    background-image: url('/img/genesis/bg_topplayer.png'); 
    background-size: cover;
    background-position: center;
    max-height: 100%;
    z-index: 2;
}

.character-description h2 {
    color: #312923; /* Warna kuning untuk judul */
    margin-bottom: 16px;
    font-weight: bold;
}

.desc-title{
    font-weight: bold;
}

.character-description p {
    color: #312923; /* Warna teks putih */
    margin-bottom: 8px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .about-container {
        max-width: 100%;
        margin: 0 auto 0 auto;
        padding: 0px 24px 40px 24px;
    }

    .character-thumbnails {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .thumbnail {
        width: 80px; /* Thumbnail lebih kecil */
    }

    .thumbnail-container {
        width: 90%;
        margin: -0px 24px 80px 24px;
    }

    .character-display {
        justify-content: center;
        align-items: center;
        gap: 16px; /* Adjust gap for better spacing */
    }

    .full-character {
        max-width: 80%;
        margin: 0 0 0 -100px;
    }

    .character-description {
        max-width: 40%;
        margin: 24px 0 0 -100px;
        padding: 24px 16px 24px 16px;
    }

    .character-description h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .character-description p {
        font-size: 16px;
        margin-bottom: 6px;
    }
}

@media (max-width: 767px) {
    .about-container {
        width: 100%;
        padding: 0px 0px 24px 0px;
    }

    .character-thumbnails {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Tampilkan 5 thumbnail per baris */
        gap: 16px;
        justify-content: center;
        width: 100%;
    }

    .thumbnail {
        max-width: 100%; /* Thumbnail lebih kecil untuk mobile */
        width: 100%;
    }

    .thumbnail-container {
        margin: -30px 24px 60px 24px;
    }

    .character-display {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        overflow: hidden;
    }

    .full-character {
        max-width: 150%;
        margin: 0px;
        padding: 0;
    }

    .character-description {
        max-width: 100%;
        margin: -28px 24px 24px 24px;
        padding: 32px 16px 32px 16px;
    }

    .character-description h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .character-description p {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

.desc-container {
    background-color: #090b0a; 
    width: 100%;
    padding: 24px 0px 56px 0px; 
    position: relative; 
    z-index: 2; 
    margin-top: 0px; 
}

.desc-wrapper {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 0px 0px 48px 0px;

}

.description-section {
    color: white;           /* Teks berwarna putih */
    padding: 0px;         /* Padding di dalam section */
    margin: 48px 0 100px 0;
}

.description-section h2 {
    margin-bottom: 24px; /* Menambahkan jarak di bawah judul */
    color: #ecb95d;  
}

.description-section p {
    margin-top: 16px; /* Menghapus margin atas pada paragraf, jika diperlukan */
    font-size: 16px;
}

.description-wrapper {
    max-width: 1200px;     /* Ukuran maksimum konten */
    margin: 0 auto;        /* Mengatur margin untuk center */
}