* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 

body { 
    font-family: 'Times New Roman', serif; 
    color: #001d3d; 
    line-height: 1.6; 
    position: relative; 
} 

html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .background-video {
        position: fixed;
    }
    
    main, .container, .content-wrapper {
        min-height: 100vh;
        position: relative;
        z-index: 2;
    }
}


.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges; 
    -ms-interpolation-mode: nearest-neighbor; 
}


.background-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none; 
}


@media (max-width: 992px) {
    #bg-video {
        
        min-width: 100%;
        width: 100%;
        height: auto;
        min-height: 100%;
    }
    
    .background-video::after {
        background: rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 768px) {
    #bg-video {
        
        min-width: 100%;
        width: 100%;
        min-height: 100%;
        object-position: center center; 
    }
    
    .background-video::after {
        background: rgba(0, 0, 0, 0.7);
    }
}

@media (max-width: 576px) {
    #bg-video {
        
        min-height: 100%;
        height: 100%;
        width: auto;
        min-width: 100vw; 
        object-position: center center;
    }
    
    .background-video::after {
        background: rgba(0, 0, 0, 0.75);
    }
}

.mute-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100; 
    transition: all 0.3s ease;
}

.mute-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}


header {
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 180, 216, 0.8);
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


nav ul {
    display: flex;
    list-style: none;
    align-items: center; 
    margin: 0; 
}


nav ul li {
    margin-right: 10px;
    display: flex;
    align-items: center;
}


nav ul li a {
    text-decoration: none;
    color: #001d3d;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

nav ul li a:hover, nav ul li a.active {
    color: #08ffff;
}


.nav-logo {
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}


.main-website {
    background-color: #001d3d;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}


.main-website:hover {
    background-color: #0077b6;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.server-status {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 29, 61, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.status-dot.online {
    background-color: #69ff6e;
    box-shadow: 0 0 8px #4CAF50;
}

.status-dot.offline {
    background-color: #F44336;
    box-shadow: 0 0 8px #F44336;
}

.status-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

.player-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #fff;
    border-left: 2px solid rgba(0, 29, 61, 0.3);
    padding-left: 15px;
}

.player-count i {
    color: #08ffff;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #0077b6;
    border: 2px solid #00b4d8; 
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #001d3d;
    transform: translateY(-2px);
}

.status-btn, .download-btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.status-btn.online {
    background-color: #001d3d;
    color: #fff;
}

.download-btn {
    background-color: #8d6e63;
    color: #fff;
}


.hero {
    text-align: center;
    padding: 80px 0 40px;
}

.welcome-text h2 {
    font-size: 2rem;
    color: #001d3d;
}

.welcome-text h1 {
    font-size: 5rem;
    color: #001d3d;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
        font-family: 'Open Sans', 'Humanist sans-serif', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative; 
    animation: float 1.5s ease-in-out infinite; 
}

.register-btn {
    background-color: #001d3d;
    border: 2px solid #00b4d8; 
    color: #fff;
    animation-delay: 0s; 
}

.register-btn:hover {
    background-color: #0077b6;
}

.download-btn {
    background-color: #001d3d;
    border: 2px solid #00b4d8; 
    color: #fff;
    animation-delay: 0.5s; 
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation-play-state: paused; 
}


@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.2);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 15px 0px rgba(0,0,0,0.1);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.2);
    }
}

.download-btn {
    background-color: #001d3d;
    color: #fff;
}


.download-btn:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
}

.status-btn.online {
    background-color: #5d4037;
    color: #fff;
}


.download-btn {
    background-color: #001d3d;
    color: #fff;
}


.social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #001d3d;
    color: #fff;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0077b6;
    transform: translateX(-5px);
}


.info-sections {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.server-info-section, .pre-register-section {
    background-color: rgba(0, 29, 61, 0.3); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.server-info-section {
    width: 60%;
}

.pre-register-section {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 29, 61, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 
    width: 280px;
    z-index: 10;
    border: 2px solid #00b4d8; 
    backdrop-filter: blur(5px);
}

.pre-register-section h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.pre-register-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00b4d8, transparent);
}


.countdown {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.countdown-item {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 10px;
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(107, 166, 193, 0.5);
    position: relative;
    overflow: hidden;
}


@media (max-width: 568px) {
    .countdown {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        margin-top: 5px;

    }
    
    .countdown-item {
        text-align: center;
        font-family: 'Rajdhani', sans-serif;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        padding: 5px;
        min-width: 60px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 0 5px rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(107, 166, 193, 0.5);
        position: relative;
        overflow: hidden;
    }

    .countdown-item div:first-child {
    font-size: 1.3rem !important;
    font-weight: bold;
    color: #37485d;
}

}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('images/background.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.countdown-item div:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #c19a6b; 
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-item div:first-child {
    animation: pulse 2s infinite ease-in-out;
}


.countdown-item:nth-child(1) div:first-child { animation-delay: 0s; }
.countdown-item:nth-child(2) div:first-child { animation-delay: 0.5s; }
.countdown-item:nth-child(3) div:first-child { animation-delay: 1s; }
.countdown-item:nth-child(4) div:first-child { animation-delay: 1.5s; }

.info-sections h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #5d4037;
    font-size: 1.5rem;
}

.info-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.info-column {
    flex: 1;
}

.info-icon {
    font-size: 2rem;
    color: #5d4037;
    margin-bottom: 10px;
}

.info-column h3 {
    margin-bottom: 10px;
    color: #5d4037;
}


.pre-register-section {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    z-index: 10;
}


.countdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.countdown-item {
    text-align: center;
}

.countdown-item div:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #37485d;
}

.countdown-label {
    font-size: 0.8rem;
    color: #637a8d;

}


.bottom-buttons {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}


@media (max-width: 576px) {
    .bottom-buttons {
        gap: 10px;
    }
    
    .bottom-buttons .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}



footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    z-index: 10;
}

.footer-content {
    background-color: rgba(0, 29, 61, 0.55); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    border: 2px solid #00b4d8; 
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 
    max-width: 800px;
    margin: 0 auto;
    color: #f8f9fa;
}

.footer-content p {
    font-size: 1em;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Open Sans', 'Humanist sans-serif', sans-serif;
}


@media (max-width: 768px) {
    .pre-register-section {
        position: static;
        transform: none;
        width: 100%;
        margin: 10px 0;
    }
    
    .countdown {
        flex-direction: row;
        justify-content: center;
    }
    
    .bottom-buttons {
        position: static;
        transform: none;
        margin: 20px 0;
    }
    
    footer {
        position: static;
    }
    
    .footer-content {
        border-radius: 10px;
    }
}






.social-icons-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 29, 61, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    border: 2px solid #00b4d8; 
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 
    z-index: 10;
}


.social-icons {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


@media (max-width: 576px) {
    .social-icons-container {
        position: fixed;
        right:0;
        left:0;
        top: auto;
        bottom: 75px;
        margin-left: 15px;
        margin-right: 15px;
        width: 90%;
        transform: none;
    background-color: rgba(0, 29, 61, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    border: 2px solid #00b4d8; 
    padding: 7px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 

        margin: 0 auto;

        z-index: 10;
    }
    
    .social-icons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


.video-container {
    max-width: 800px;
    margin: 20px auto 30px;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.plyr--video {
    border-radius: 10px;
}



@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
}


.download-page {
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../images/download.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    pointer-events: none; 
}


.download-page .background-video,
.download-page .mute-btn {
    display: none;
}


.download-section {
    max-width: 1000px;
    margin: 30px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-section h1 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.download-intro {
    color: #f7f7f7;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.preregist-milestone {
    background-color: transparent; 
    background-image: background: linear-gradient(to right, transparent, #00b4d8, transparent);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(202, 240, 248, 0.2); 
    width: 100%;
    border: 2px solid #00b4d8;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.download-option.full-client {
    background-color: rgba(0, 119, 182, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.9), rgba(0, 29, 61, 0.9)); 
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(202, 240, 248, 0.2); 
    width: 100%;
    border: 2px solid #00b4d8;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.download-option.full-client h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #00b4d8; 
}


.download-details-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}




.download-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 60%;
}

.download-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-family: 'Open Sans', 'Humanist sans-serif', sans-serif;
    color: #f7f7f7;
    position: relative;
    padding-left: 5px;
    transition: transform 0.2s ease;
}

.download-details li:hover {
    transform: translateX(5px);
}

.download-details li i {
    font-size: 1.2rem;
    color: #caf0f8; 
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.detail-label {
    font-weight: bold;
    color: #caf0f8;
    margin-right: 8px;
    min-width: 140px; 
    display: inline-block;
}

.detail-value {
    color: #f7f7f7;
    font-weight: 400;
}




.download-option.partial-client {
    background-color: rgba(0, 119, 182, 0.85);
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.9), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(202, 240, 248, 0.2); 
    width: 100%;
    border: 2px solid #00b4d8;
    backdrop-filter: blur(5px);
}

.download-option.partial-client h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    text-align: left;
    border-bottom: 1px solid #00b4d8;
}

.partial-downloads {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.partial-download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #001d3d;
    border: 1px solid #00b4d8;
    border-radius: 5px;
    padding: 8px 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.partial-download-btn i {
    font-size: 1.2rem;
    color: #00b4d8;
    margin-bottom: 3px;
}

.partial-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #003566;
}

.download-instructions {
    background-color: rgba(0, 119, 182, 0.7);
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #00b4d8;
}

.download-instructions h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    margin-bottom: 15px;
}

.download-instructions ol {
    text-align: left;
    color: #f7f7f7;
    padding-left: 20px;
}

.download-instructions ol li {
    margin-bottom: 10px;
}



.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 20px;
    align-self: center;
    width: 220px; 
}

.download-full-btn,
.download-mirror-btn {
    display: inline-block;
    text-decoration: none;
    padding: 15px 0; 
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Open Sans', 'Humanist sans-serif', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #00b4d8;
    color: #fff;
    font-size: 1.2rem;
    width: 100%; 
    text-align: center; 
}


.download-full-btn {
    background-color: #001d3d;
    animation: float 1.5s ease-in-out infinite;
}

.download-mirror-btn {
    background-color: #003566;
}

.download-full-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 180, 216, 0.4);
    animation-play-state: paused;
    background-color: #003566;
}

.download-mirror-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 180, 216, 0.4);
    background-color: #0077b6;
}


@media (max-width: 992px) {
    .download-section {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .download-section h1 {
        font-size: 2rem;
    }
    
    .download-intro {
        font-size: 1rem;
    }
    
    .download-details-container {
        flex-direction: column;
    }
    
    .download-details {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .download-buttons {
        width: 100%;
        margin-left: 0;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .download-full-btn, 
    .download-mirror-btn {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .download-section h1 {
        font-size: 1.8rem;
    }
    
    .download-option.full-client h2 {
        font-size: 1.6rem;
    }
    
    .download-option.partial-client h2 {
        font-size: 1.2rem;
    }
    
    .partial-downloads {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .detail-label {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .download-section h1 {
        font-size: 1.5rem;
    }
    
    .download-intro {
        font-size: 0.9rem;
    }
    
    .download-option.full-client,
    .download-option.partial-client {
        padding: 15px;
    }
    
    .download-option.full-client h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .download-details li {
        margin-bottom: 10px;
    }
    
    .download-details li i {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .detail-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .partial-downloads {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .partial-download-btn {
        padding: 6px 3px;
        font-size: 0.8rem;
    }
    
    .partial-download-btn i {
        font-size: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-full-btn, 
    .download-mirror-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .download-instructions {
        padding: 15px;
    }
    
    .download-instructions h3 {
        font-size: 1.2rem;
    }
    
    .download-instructions ol {
        padding-left: 15px;
        font-size: 0.9rem;
    }
}


@media (max-width: 400px) {
    .partial-downloads {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-option.full-client h2,
    .download-option.partial-client h2 {
        font-size: 1.2rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }
    
    .detail-label {
        min-width: 90px;
    }
}


.account-page .background-image {
    background-image: url('../images/register.jpg');
}

.account-section {
    max-width: 1000px;
    margin: 30px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-section h1 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.account-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.account-form {
    background-color: rgba(0, 119, 182, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.9), rgba(0, 29, 61, 0.9)); 
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(202, 240, 248, 0.2); 
    border: 2px solid #00b4d8; 
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.account-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.account-form h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8; 
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.account-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #caf0f8, transparent); 
}


.dotted-input input {
    border: none;
    border-bottom: 1px dotted #00b4d8; 
    background-color: transparent;
    color: #fff;
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.dotted-input input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.dotted-input input:focus {
    outline: none;
    border-bottom: 1px solid #caf0f8; 
    box-shadow: none;
}


.gender-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.gender-group label {
    display: inline;
    margin: 0;
}

.gender-group input[type="radio"] {
    margin: 0;
    vertical-align: middle;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
    min-width: 0; 
}

.form-group {
    margin-bottom: 10px; 
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #caf0f8; 
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem; 
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 8px; 
    border-radius: 5px;
    border: 1px solid #00b4d8; 
    background-color: rgba(255, 255, 255, 0.9);
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 5px #caf0f8; 
    border-color: #caf0f8; 
}

.form-group i {
    margin-right: 5px;
    color: #caf0f8; 
}

.captcha-group .captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px; 
}

.captcha-image {
    flex-grow: 1;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
}

.refresh-captcha {
    background-color: #001d3d; 
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-captcha:hover {
    background-color: #0077b6; 
}

.agreement-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agreement-group input[type="checkbox"] {
    margin-top: 3px;
}

.agreement-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.agreement-group a {
    color: #caf0f8; 
    text-decoration: underline;
}

.account-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #001d3d; 
    color: #fff;
    border: 2px solid #00b4d8; 
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px; 
    font-size: 1.1rem;
}

.account-btn:hover {
    background-color: #0077b6; 
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.form-links a {
    color: #caf0f8; 
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.form-note {
    background-color: rgba(0, 180, 216, 0.2); 
    border-left: 3px solid #00b4d8; 
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 5px 5px 0;
}

.form-note p {
    color: #caf0f8; 
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 768px) {
    .account-container {
        max-width: 90%;
    }
    
    .form-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}


@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: rgba(0, 119, 182, 0.95); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.9), rgba(0, 29, 61, 0.9)); 
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(202, 240, 248, 0.2); 
    border: 2px solid #00b4d8; 
    overflow: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(107, 159, 193, 0.8);
}

.modal-header h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #fff;
    transform: scale(1.1);
}

.modal-content {
    padding: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.terms-content {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.terms-content h4 {
    color: #36b9ff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 2px solid rgba(107, 159, 193, 0.5);
    display: flex;
    justify-content: flex-end;
}


.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #fbfdff;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #b4e1ff;
}


.server-info-page .background-image {
    background-image: url('../images/serverinfo.jpg');
}

.server-info-section {
    max-width: 1000px;
    margin: 30px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.server-info-section h1 {
    font-family: 'Rajdhani', sans-serif;
    color: #caf0f8;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}


.server-info-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}


.tab-button {
    background-color: #0077b6;
    border: 2px solid #00b4d8; 
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tab-button:hover {
    background-color: #001d3d;
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: #0c4683;
    box-shadow: 0 0 15px rgba(255, 225, 180, 0.3);
    transform: translateY(-2px);
}


.server-info-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 500px; 
}

.server-info-content {
    background-color: rgba(0, 29, 61, 0.85); 
    background-image: linear-gradient(to bottom, rgba(0, 180, 216, 0.3), rgba(0, 29, 61, 0.9));
    border-radius: 15px;
    border: 2px solid #00b4d8; 
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(0, 180, 216, 0.2); 
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.server-info-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.server-info-content h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.server-info-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #36b9ff, transparent);
}

/* ===========================
   DONATE PAGE STYLE
   =========================== */

.donate-page .background-image {
    background-image: url('../images/register.jpg');
}

/* Container utama donasi */
.donate-page .donation-section {
  text-align: center;
  padding: 60px 15px;
}

.donate-page h2 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #00b4d8;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.donate-page .donation-card {
  background: linear-gradient(180deg, rgba(0, 119, 182, 0.9), rgba(0, 29, 61, 0.9));
  border: 2px solid #00b4d8;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), inset 0 0 20px rgba(0,180,216,0.2);
  padding: 25px 10px;
  transition: all 0.25s ease-in-out;
}

.donate-page .donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,180,216,0.4);
}

.donate-page .amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #caf0f8;
  text-shadow: 0 0 8px rgba(0,180,216,0.6);
}

.donate-page .text-muted {
  color: #90e0ef !important;
}

.donate-page .donation-btn {
  background: linear-gradient(to right, #00b4d8, #0077b6);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.donate-page .donation-btn:hover {
  background: linear-gradient(to right, #48cae4, #00b4d8);
  transform: scale(1.05);
}

/* Modal Bootstrap biar nyatu gaya */
.donate-page .modal-content {
  background: linear-gradient(180deg, rgba(0,119,182,0.95), rgba(0,29,61,0.95));
  border: 2px solid #00b4d8;
  border-radius: 15px;
  color: #fff;
}

.donate-page .modal-header {
  border-bottom: 1px solid #00b4d8;
}

.donate-page .modal-title {
  font-weight: 700;
  color: #90e0ef;
  text-shadow: 0 0 6px rgba(0,180,216,0.5);
}

.donate-page .btn-success {
  background: linear-gradient(to right, #00b4d8, #0077b6);
  border: none;
}

.donate-page .btn-success:hover {
  background: linear-gradient(to right, #48cae4, #00b4d8);
}

.scrollable-content {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
    
    scrollbar-width: thin;
    scrollbar-color: #ffffff rgba(93, 64, 55, 0.5);
}


.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: rgba(93, 64, 55, 0.5);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: #36b9ff;
    border-radius: 10px;
}


.info-list, .feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.info-list li, .feature-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(107, 154, 193, 0.3);
}

.info-list li:last-child, .feature-list li:last-child {
    border-bottom: none;
}

.info-label {
    display: inline-block;
    min-width: 150px;
    color: #36b9ff;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif;
}

.info-value {
    color: #f7f7f7;
    font-family: 'Open Sans', sans-serif;
}

.feature-title {
    display: block;
    color: #36b9ff;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-desc {
    display: block;
    color: #f7f7f7;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}


@media (max-width: 992px) {
    .server-info-section {
        max-width: 90%;
        margin: 20px auto;
        gap: 15px;
    }
    
    .server-info-section h1 {
        font-size: 2rem;
    }
    
    .server-info-container {
        max-width: 95%;
        height: 450px; 
    }
    
    .tab-button {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .server-info-content {
        padding: 20px;
    }
    
    .server-info-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .info-label {
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .server-info-section {
        max-width: 95%;
        width:90%;
        margin: 55px auto;
        gap: 10px;
    }
    
    .server-info-section h1 {
        font-size: 1.8rem;
    }
    
    .server-info-container {
        height: 400px; 
    }
    
    .server-info-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-button {
        padding: 6px 15px;
        font-size: 0.9rem;
        flex: 1 0 auto;
        min-width: 120px;
    }
    
    .info-label {
        min-width: 120px;
        display: block;
        margin-bottom: 5px;
    }
    
    .info-value {
        display: block;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .server-info-section h1 {
        font-size: 1.6rem;
    }
    
    .server-info-container {
        height: 350px; 
    }
    
    .tab-button {
        padding: 5px 10px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .server-info-content {
        padding: 15px;
    }
    
    .server-info-content h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .scrollable-content {
        padding-right: 5px;
    }
    
    .scrollable-content::-webkit-scrollbar {
        width: 5px;
    }
    
    .info-list li, .feature-list li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .info-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
}


.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.desktop-nav ul li {
    margin-right: 10px;
    display: flex;
    align-items: center;
}


.mobile-nav-wrapper {
    display: none; 
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo-container {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #08ffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    margin-right: 10px; 
}


@media (max-width: 992px) {
    
    .desktop-nav {
        display: none;
    }
    
    
    .mobile-nav-wrapper {
        display: flex;
    }
    
    nav {
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 2;
        margin-top: 10px;
        display: none;
    }
    
    .nav-menu.active {
        max-height: 250px;
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        padding: 12px;
        width: 100%;
        display: block;
        font-size: 0.8rem;
        border-bottom: 1px solid rgba(93, 64, 55, 0.2);
    }
    
    
    .main-website span {
        display: none;
    }
    
    .main-website {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-logo {
        height: 24px;
        margin: 0;
    }

    .mute-btn {
        top: auto;
        bottom: 155px;
        right: 15px;
    }

    footer {
        position: fixed;
        margin-top: 30px;
        padding: 15px;
    }
    
    .footer-content {
        border-radius: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .footer-content p {
        font-size: 0.7em;
    }

}

@media (max-width: 576px) {
    .server-status {
        flex-direction: row;
        gap: 5px;
        align-items: center;
        font-size: 0.8rem; 
    }
    
    .player-count {
        font-size: 0.8rem;
    }
    
    .status-text {
        font-size: 0.8rem;
    }
    
    .nav-logo {
        height: 20px; 
    }
    
    .mobile-toggle {
        margin-right: 15px; 
    }
}


@media (min-width: 768px) and (max-width: 820px) {
    
    .social-icons-container {
        position: fixed;
        right: 0;
        left: 0;
        top: auto;
        bottom: 75px;
        width: 91%;
        transform: none;
        background-color: rgba(93, 64, 55, 0.85);
        background-image: linear-gradient(to bottom, rgba(222, 184, 135, 0.9), rgba(93, 64, 55, 0.9));
        border-radius: 15px;
        border: 2px solid #c19a6b;
        padding: 10px;
        margin: 0 auto;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.2);
        z-index: 10;
    }
    
    .social-icons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}


@media (min-width: 1024px) and (max-width: 1024px) {
    
    .pre-register-section {
        width: 140px;
        padding: 15px;
    }
    
    .pre-register-section h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .countdown {
        gap: 8px;
        margin-top: 5px;
    }
    
    .countdown-item {
        padding: 5px;
        min-width: 40px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 0 5px rgba(255, 215, 0, 0.1);
    }
    
    .countdown-item div:first-child {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    
    .social-icons-container {
        padding: 14px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    
    nav ul li a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .status-text, .player-count {
        font-size: 0.75rem;
    }

    .download-option.partial-client {
        margin-bottom: 70px !important;
    }
 
    .account-container {
        margin-bottom: 70px !important;
    }

    .server-info-section {
        margin-bottom: 100px !important;
    }
}


@media only screen and (min-width: 1280px) and (max-width: 1280px) and (min-height: 800px) and (max-height: 800px) {
    .download-option.partial-client {
        margin-bottom: 70px !important;
    }

    .account-container {
 margin-bottom: 70px !important;
}

    .server-info-section {
 margin-bottom: 100px !important;
    }

}


@media (min-width: 769px) {
    .account-page {
        overflow: hidden; 
    }
    
    .account-container {
        height: auto;
        min-height: 400px; 
    }
    
    .account-form.active {
        position: relative;
        height: 100%;
    }
}


@media (max-width: 992px) {
    .background-image {
        background-attachment: scroll; 
    }
}

@media (max-width: 768px) {
    .background-image {
        background-position: center center;
    }
}

@media (max-width: 576px) {
    .background-image {
        
        background-position: 85% center;
    }
    
    
    .account-page .background-image {
        background-position: 85% center;
    }
    
    .server-info-page .background-image {
        background-position: 18% center;
    }
}


@media (width: 820px) {
    
    .pre-register-section {
        position: static;
        transform: none;
        width: 100%;
        margin: 10px 0;
        left: auto;
        top: auto;
    }
    
    .countdown {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .countdown-item div:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }

    .bottom-buttons {
    bottom: 160px;
}

    .btn {
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
        padding: 12px 40px; 
        font-size: 0.9rem; 
        min-width: 180px; 
        text-align: center; 
    }

}