* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffa726;
    --accent-color: #ff3d00;
    --accent-color-hover: #ff0800;
    --dark-bg: rgba(0, 0, 0, 0.85);
    --box-glow: 0 0 15px rgba(255, 167, 38, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: 400px;
}

.nav-left .logo {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-left .logo:hover {
    transform: translateY(-3px);
}

@keyframes iconLogoLanding {
    0% {
        opacity: 0;
        transform: translateX(-100vw) rotate(-10deg);
        filter: brightness(0.5);
    }
    70% {
        transform: translateX(20px) rotate(5deg);
        filter: brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
        filter: brightness(1);
    }
}

.icon-logo {
    max-width: 60px;
    animation: iconLogoLanding 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    filter: drop-shadow(0 0 25px rgba(255, 167, 38, 0.3));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    display: block;
}

.nav-left .logo:hover .icon-logo {
    filter: drop-shadow(0 0 35px rgba(255, 167, 38, 0.5));
}

.nav-middle {
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    border-radius: 8px;
    padding: 0.8rem 2rem;
    gap: 1.5rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {

    background-color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
    white-space: nowrap;
}

.top-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.top-nav a:hover {
    color: var(--primary-color);
}

/* Common Button Styles */
.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Common Button Styles */
.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff !important;
    background: rgb(179, 126, 11);
    border: 1px solid rgb(255, 187, 0);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover States */
.register-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.donate-btn:hover {
    background: rgb(223, 156, 13);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Active States */
.register-btn:active, .donate-btn:active {
    transform: scale(0.98);
}

/* Focus States */
.register-btn:focus, .donate-btn:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


/* Main Content Sections */
.full-height-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 50px;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 8px;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.prelaunch-box {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.692);
    backdrop-filter: blur(2px);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    z-index: 100;
}

.prelaunch-box p:first-of-type {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    margin-bottom: 1rem;
    color: #6bff26;
}

.prelaunch-box p:nth-of-type(2) {
    background: rgba(87, 87, 87, 0.5);
    padding: 0.75rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.pickup-btn {
    background: #30db19;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pickup-btn:hover {
    background: #56ff40;
    box-shadow: 0 0 15px rgba(21, 255, 0, 0.4);
}



/* Popup Backdrop */
.popup-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1090;
}

.popup-backdrop.active {
    display: block;
}


/* Popup Menus */
.popup-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(87, 87, 87, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1100;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}

.popup-menu.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.popup-content {
    padding: 2rem;
    color: white;
    text-align: center;
}

.popup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.close-popup-btn {
    position: absolute;
    top: -5px;
    right: 1px;
    background: transparent;
    color: #c9c9c9;
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1101;
    border: none;
}

.close-popup-btn:hover {
    color: white;
    background: transparent;
}

.read-more-btn {
    background: #b9b9b9;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    font-weight:bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
    background: #e4e4e4;
}


.bottom-left-icons {
    display: flex;
    gap: 5px;  
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10;
}

.icon-btn { 
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent; 
}

.icon-btn img {
    border-radius: 50%;
    width: 50px;  
    height: 50px;
    transition: transform 0.3s ease-in-out;
}


.icon-btn:hover {
    transform: scale(1.1) rotate(10deg); 
    background-color: rgba(26, 25, 25, 0.719); 
    box-shadow: 0 8px 16px rgba(88, 83, 80, 0.3); 
    border-color: rgba(255, 255, 255, 0.423);
}


.icon-btn:hover img {
    transform: scale(1.1); 
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


@keyframes heroLogoLanding {
    0% {
        opacity: 0;
        transform: translateY(-150vh);
        filter: brightness(0.5);
    }
    70% {
        transform: translateY(2px);
        filter: brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: brightness(1);
    }
}


.hero-logo {
    max-width: 400px;
    /* animation: heroLogoLanding 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; */
    filter: drop-shadow(0 0 25px rgba(255, 167, 38, 0.3));
    transition: all 0.3s ease;
}


.hero-logo:hover {
    filter: drop-shadow(0 0 35px rgba(255, 167, 38, 0.5));
    transform: scale(1.02);
}

.welcome-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


#countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}
.countdown-box {
    backdrop-filter: blur(2px);
    width: 140px;
    height: 140px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.692);
}

.countdown-box span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.countdown-box .label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    opacity: 0.8;
}

.countdown-text {
    font-size: 1.8rem;
    color: #e7aa00;
    margin: 2rem 0;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.download-btn {
    font-family: 'Rajdhani', sans-serif;

    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.trailer-btn {
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.trailer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.trailer-btn i , .download-btn i, .pickup-btn i, .prelaunch-box-btn i {
    margin-right:9px;
}


.bottom-left-icons,
.prelaunch-box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

body:not(.section-home-active) .bottom-left-icons,
body:not(.section-home-active) .prelaunch-box {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.section-home-active .bottom-left-icons,
.section-home-active .prelaunch-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reward-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(63, 63, 63, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-item:hover {
    background: rgba(63, 63, 63, 0.568);
    transition: all 0.3s;
}

.reward-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reward-item span {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
}

.reward-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.icon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
}


.prelaunch-box-btn {
    font-weight: 600;
    background: #30db19;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}

.prelaunch-box-btn:hover {
    background: #56ff40;
    box-shadow: 0 0 15px rgba(21, 255, 0, 0.4);
    transform: translateY(-2px);
}

/* Laptop/Tablet Styles */
@media (min-width: 1024px) and (max-width: 1200px) {
    .hero-content {
        padding-top: 0 !important;
    }
    .hero-logo {
        margin-top: -200px;
        max-width: 350px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-content {
        padding-top: 0 !important;
    }
    .hero-logo {
        margin-top: -200px;
        max-width: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 0 !important;
    }

    .hero-logo {
        margin-top: -200px;
        max-width: 350px;
    }

    .welcome-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .main-title {
        font-size: 1rem;
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 0.5rem;
        letter-spacing: 1px !important;
    }

    #countdown {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin: 2rem 0;
        margin-bottom: 3rem;
    }

    .countdown-box {
        width: 80px;
        height: 80px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.492);
    }

    .countdown-box span:first-child {
        font-size: 1.5rem;
    }

    .countdown-box .label {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 0;
    }

    .download-btn, .trailer-btn {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .bottom-left-icons {
        display: flex;
        gap: 5px;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        z-index: 10;
    }

    .prelaunch-box {
        padding: 1rem;
        right: 0;
        margin-top: 50px !important;
        left: 0;
        margin: 0 auto;
        width: 90%;
        height: auto;
        bottom: 90px;
        max-width: none;
        border-radius: 10px;
    }
    
    .prelaunch-box p:nth-of-type(2) {
        background: rgba(87, 87, 87, 0.5);
        padding: 0.2rem;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 0.8rem;
        color: #ffffff;
    }

    .popup-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .popup-content h2 {
        font-size: 1.2rem;
        margin-top: 0;
    }


    .reward-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        margin-bottom: 40px;
        margin-top: 20px;
        padding: 20px;
        border-radius: 10px;
        max-height: 400px;
        overflow-y: auto; 
        scrollbar-width: thin;
        scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);

    }
    

    .reward-list::-webkit-scrollbar {
        width: 8px;
    }
    
    .reward-list::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
    }
    
    .reward-list::-webkit-scrollbar-thumb {
        background: #a1a1a1;
        border-radius: 4px;
    }
    
    .reward-list::-webkit-scrollbar-thumb:hover {
        background: #dbdbdb;
    }

    .reward-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        background: rgba(63, 63, 63, 0.3);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .reward-item span {
        color: #fff;
        font-size: 1rem;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 600;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
        hyphens: auto;
        max-width: calc(100% - 47px); 
    }

}
.features-container {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 20px;
    height: 100%;
    align-items: flex-start;
    flex-direction: row;
}

.features-sidebar {
    position: sticky;
    top: 120px;
    height: calc(100vh - 160px);
    width: 300px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto; 
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);
}

.feature-radio {
    margin-bottom: 15px;
}

.feature-radio input[type="radio"] {
    display: none;
}

.feature-radio label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.feature-radio label i {
    font-size: 1.2rem;
}

.feature-radio input[type="radio"]:hover + label {
    background: rgba(197, 197, 197, 0.815);
    color: #000;
    box-shadow: 0 0 15px rgba(185, 185, 185, 0.3);
}

.feature-radio input[type="radio"]:checked + label {
    background: rgb(197, 197, 197);
    color: #000;
    box-shadow: 0 0 15px rgba(185, 185, 185, 0.3);
}

.features-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: calc(100vh - 160px);
    width: 800px; 
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);
}

.feature-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
    width: 100%;
}

.feature-panel.active {
    display: block;
}

.feature-panel h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.feature-panel p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.feature-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    width: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 167, 38, 0.3));
}

.feature-item span {
    flex: 1;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;

}

.rate-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}


.rate-item .feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 167, 38, 0.3));
}

.rate-item span {
    flex: 1;
}

.rate-item .rate-value {
    flex: 0 0 auto;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 167, 38, 0.3);
}

.enchant-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}


.enchant-icons {
    display: flex;
    gap: 5px;
}

.enchant-icons .feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 167, 38, 0.3));
}

.enchant-info {
    flex: 1;
}

.enchant-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.enchant-details,
.enchant-rates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.enchant-details span,
.enchant-rates span {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.enchant-details span:hover,
.enchant-rates span:hover {
    background: rgba(255, 255, 255, 0.2);
}

.enchant-note {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ffa726;
    font-style: italic;
}

.schedule-group {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

.schedule-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 167, 38, 0.3);
}

.schedule-items {
    display: grid;
    gap: 10px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.schedule-item .day {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 100px;
}

.schedule-item .boss {
    flex: 1;
    color: #fff;
}

.schedule-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-item .note {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 0.9rem;
}

.raid-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.raid-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
}

.raid-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.raid-note {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

.event-group {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;

}

.event-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 167, 38, 0.3);
}

.event-items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.siege-info,
.olympiad-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.siege-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.stat-item,
.olympiad-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stat-item:hover,
.olympiad-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stat-item img,
.olympiad-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 167, 38, 0.3));
}

.siege-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.schedule-row .day {
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-row .time {
    color: var(--primary-color);
}

.schedule-row .reward {
    color: #4caf50;
}

.cloak-stats {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1;
    padding: 10px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.feature-list li {
    padding: 10px 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    width: 100%;
}




.features-sidebar::-webkit-scrollbar,
.features-content::-webkit-scrollbar {
    width: 8px;
}

.features-sidebar::-webkit-scrollbar-track,
.features-content::-webkit-scrollbar-track {
    background: #a1a1a1;
    border-radius: 4px;
}

.features-sidebar::-webkit-scrollbar-thumb,
.features-content::-webkit-scrollbar-thumb {
    background: #a1a1a1;
    border-radius: 4px;
}

.features-sidebar::-webkit-scrollbar-thumb:hover,
.features-content::-webkit-scrollbar-thumb:hover {
    background: #dbdbdb;
}

@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 60px !important;

    }

    .features-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        max-height: 200px;
        margin-bottom: 10px;
    }

    .features-content {
        width: 100%;
        height: auto;
        max-height: calc(100vh - 300px);
    }

    .feature-radio label {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .features-container {
        padding: 15px;
        margin-top: 40px;
    }

    .feature-panel h2 {
        font-size: 1.5rem;
    }

    .feature-panel p {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .feature-banner {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 10px;
        margin-top: 30px;
    }

    .features-sidebar {
        max-height: 173px;
    }

    .feature-radio label {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .feature-panel h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .features-content {
        padding: 20px;
    }

    .feature-banner {
        height: 120px;
    }
}

.downloads-section {
    position: relative;
    width: 100%;

}

.downloads-container {
    display: flex;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 60px;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

@keyframes bounceLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 1;
    }
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) translateX(10px);
        opacity: 1;
    }
}

.downloads-container::-webkit-scrollbar {
    display: none; 
}

.download-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;

    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.download-nav-arrow.prev {
    left: 0;
    animation: bounceLeft 1.5s infinite;
}

.download-nav-arrow.next {
    right: 0;
    animation: bounceRight 1.5s infinite;
}

.download-nav-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

.download-nav-arrow.active {
    display: flex;
}


.download-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: calc(100% - 40px);
    max-width: 480px;
    min-width: min(92vw, 480px);
    min-height: 350px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}


.download-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-item span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-buttons .download-btn {
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-buttons .download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.download-buttons .download-btn.torrent {
    background: rgba(255, 167, 38, 0.1);
    border-color: rgba(255, 167, 38, 0.3);
}

.download-buttons .download-btn.torrent:hover {
    background: rgba(255, 167, 38, 0.2);
}


@media (min-width: 1441px) {
    .download-nav-arrow {
        display: none !important;
    }
    
    .downloads-container {
        padding: 20px;
        max-width: 1600px;
        gap: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1024px) {
    .download-nav-arrow {
        display: flex;
    }
    
    .downloads-container {
        padding: 20px;
        max-width: 100%;
        margin: 0 auto;
        overflow-x: auto;
        position: relative;
        scroll-padding: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .download-card {
        width: 100%;
        max-width: 320px;
        min-height: 350px;
        margin: 0 auto;
        scroll-snap-align: center;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .download-nav-arrow {
        display: none !important;
    }
    
    .downloads-container {
        padding: 20px;
        max-width: 100%;
        margin: 0 auto;
        overflow-x: auto;
        position: relative;
        scroll-padding: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .download-card {
        width: 100%;
        max-width: 400px;
        min-width: min(400px);
        min-height: 350px;
        margin: 0 auto;
        scroll-snap-align: center;
    }
}


@media (max-width: 768px) {
    .downloads-container {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        position: relative;
    }

    .download-card {
        width: 100%;
        min-width: 100%;
        padding: 20px;
        min-height: 350px;
    }

    .download-info {
        gap: 8px;
    }

    .info-item {
        padding: 10px;
        font-size: 0.9rem;
    }

    .download-buttons .download-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .downloads-container {
        padding: 10px;
    }

    .download-card {
        padding: 15px;
        min-height: 300px;
    }

    .info-item {
        padding: 8px;
        font-size: 0.85rem;
    }

    .download-buttons .download-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

.community-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 80px !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.community-left {
    display: flex;
    flex-direction: column;
    width: 350px;
    justify-content: center; 
}

.community-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    height: auto;
    align-items: center; 
    margin: auto;
    width: 100%;
}

.discord-widget {
    height: 300px;
    width: 350px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 0.3rem;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    
}

.video-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 1.4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header i {
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.section-header i.fa-youtube {
    color: #ff0000;
}

.section-header i.fa-twitch {
    color: #9146ff;
}

.header-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.header-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}


.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.video-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
 
}


.streamer-recruit-card {
    background: rgba(145, 70, 255, 0.1);
    border: 1px solid rgba(145, 70, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    backdrop-filter: blur(1px);
}

.streamer-recruit-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.streamer-recruit-card .card-header i {
    font-size: 1.2rem;
    color: #9146ff;
}

.streamer-recruit-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.streamer-recruit-card .rewards-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.streamer-recruit-card .rewards-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.streamer-recruit-card .rewards-list li i {
    color: #9146ff;
}

.streamer-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #9146ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin-top: 0;
    transition: all 0.3s ease;
}

.streamer-apply-btn:hover {
    background: #a970ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: auto; 
    background: rgba(22, 22, 22, 0.3);
    backdrop-filter: blur(3px);
    border-radius: 10px;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 0.7rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}


.social-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.social-btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}


.social-btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}



.discord { 
    background: rgba(114, 137, 218, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.discord:hover { 
    background: #7289da;
    transform: translateY(-2px) scale(1.02);
}

.telegram { 
    background: rgba(0, 136, 204, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.telegram:hover { 
    background: #0088cc;
    transform: translateY(-2px) scale(1.02);
}

.facebook { 
    background: rgba(24, 119, 242, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.facebook:hover { 
    background: #1877f2;
    transform: translateY(-2px) scale(1.02);
}

.youtube { 
    background: rgba(255, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.youtube:hover { 
    background: #ff0000;
    transform: translateY(-2px) scale(1.02);
}

.instagram { 
    background:  #330e1c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.instagram:hover { 
    background: #220e15;
    transform: translateY(-2px) scale(1.02);
}

.whatsapp {
    background: #075e54;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp:hover {
    background: #054c44;
    transform: translateY(-2px) scale(1.02);
}

.tiktok {
    background: #010101;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tiktok:hover {
    background: #121212;
    transform: translateY(-2px) scale(1.02);
}

/* mobiles */
@media (max-width: 768px) {
    .community-left {
        width: 100%;
        gap: 20px;
        justify-content: center;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .discord-widget {
        height: 300px;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        overflow: hidden;
    }

    .streamer-recruit-card {
        margin-top: 0;
    }

    .header-text h3 {
        font-size: 1rem;
    }
    
    .header-text p {
        font-size: 0.8rem;
    }
    .social-links {
        margin-top: 10px;
        white-space: nowrap;
        }
}

/* tablets */
@media (min-width: 769px) and (max-width: 1023px) {
    .community-left {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        justify-content: center;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .discord-widget {
        height: 317px;
        width: 50% !important;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        overflow: hidden;
    }

    .streamer-recruit-card {
        margin-top: 0;
    }

    .header-text h3 {
        font-size: 1rem;
    }
    
    .header-text p {
        font-size: 0.8rem;
    }
    .social-links {
        margin-top: 10px;
        white-space: nowrap;
        }
}

/* responsive design */
@media (min-width: 1024px) and (max-width:1200px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .community-left {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 20px;
        justify-content: center;
        margin-top: 10px !important;
        margin-bottom: -10px !important;
    }

    .discord-widget {
        height: 300px;
        width: 50%;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        overflow: hidden;
    }

    .streamer-recruit-card {
        background: rgba(145, 70, 255, 0.1);
        border: 1px solid rgba(145, 70, 255, 0.3);
        border-radius: 10px;
        padding: 1rem;
        width: 50%;
        margin-top: 0;
        backdrop-filter: blur(1px);
    }

.content-wrapper {
    flex-direction: row;
    gap: 1rem;
}

.section-header {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 420px;  
    height: 200px; 
    position: relative;
}

.header-text h3 {
    font-size: 1.2rem;
}

.header-text p {
    font-size: 0.9rem;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

    .social-links {
    margin-top: 10px;
    white-space: nowrap;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    height: 35px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-menu-btn:hover {
    color: rgb(160, 160, 160) !important;
}

.menu-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.menu-social h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.menu-footer {
    margin-top: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Header Styles */
.mobile-header {
    display: none;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-left .icon-logo {
    height: 35px;
}

.mobile-nav-middle {
    display: flex;
    gap: 1rem;
}

.mobile-auth-btn {
    color: #ffffff;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-auth-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-auth-btn-donate {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-auth-btn-donate:hover {
    background: rgba(202, 174, 16, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .top-nav {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-middle {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-right .register-btn,
    .nav-right .donate-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .top-nav {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }

    .nav-middle {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-right .register-btn,
    .nav-right .donate-btn {
        display: none;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }
    
    
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (min-width: 1025px) and (max-width: 1400px) {
    .top-nav {
        padding: 1rem;
    }

    .top-nav a {
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
        font-size: 1rem;
        letter-spacing: 0;
    }

    
    .nav-right {
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }
    
    .nav-left {
        min-width: 80px;
    }

    .icon-logo {
        max-width: 40px;
        margin-left:0;
    }

    .nav-right .register-btn,
    .nav-right .donate-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .nav-right .register-btn span,
    .nav-right .donate-btn span {
        display: none;
    }
    
    .nav-right .register-btn i,
    .nav-right .donate-btn i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 1440px) {
    
    .nav-right {
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }
    
    .nav-left {
        min-width: 150px;
    }


    .nav-right .register-btn,
    .nav-right .donate-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .nav-right .register-btn span,
    .nav-right .donate-btn span {
        display: none;
    }
    
    .nav-right .register-btn i,
    .nav-right .donate-btn i {
        margin: 0;
        font-size: 1.2rem;
    }
}

.social-popup {
    display: flex;
    gap: 30px;
    padding: 30px;
    max-width: 800px;
}

.social-popup-left {
    flex: 0 0 300px;
}

.social-sticker {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-sticker:hover {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) brightness(1.05);
    transform: translateY(-2px);
}

.social-popup-right {
    flex: 1;
    text-align: left;
}

.social-popup-right h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.stat-item i {
    font-size: 1.2rem;
    color: white;
}

.social-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.social-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-features li i {
    color: #30db19;
}

.social-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.social-join-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.social-join-btn i {
    font-size: 1.1em !important;
    transition: transform 0.3s ease;
}

.social-join-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-popup {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .social-popup-left {
        flex: none;
    }

    .social-sticker {
        max-height: 200px;
        object-fit: contain;
    }

    .social-popup-right h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .social-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item {
        justify-content: center;
    }

    .social-join-btn {
        width: 100%;
        justify-content: center;
    }
}

/* New Footer Styles */
.site-footer {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.315), #000);
    backdrop-filter: blur(3px);
    color: #fff;
    padding: 60px 0 20px;
    overflow: hidden;
}

.footer-dragon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-dragon.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 8px;
}

.stat-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Server Status Indicators */
.stat-icon i.online {
    color: #4CAF50;
}

.stat-icon i.offline {
    color: #f44336;
}

.stat-value.online {
    color: #4CAF50;
}

.stat-value.offline {
    color: #f44336;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    color: #aaa;
    font-size: 0.9rem;
}

.stat-value {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-value.online {
    color: #4CAF50;
}

/* Right Side Grid Links */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.footer-links-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    text-align: center;
    height: 90px; 
}

.footer-links-card i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links-card span {
    font-size: 0.85rem;
    color: #aaa;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.footer-links-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-links-card:hover i {
    transform: scale(1.1);
}

.footer-links-card:hover span {
    color: #fff;
}

.footer-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    text-align: center;
    height: 90px; 
}

.footer-link-card i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
    transition: all 0.3s ease;
}

.footer-link-card span {
    font-size: 0.85rem;
    color: #aaa;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.footer-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-link-card:hover i {
    transform: scale(1.1);
}

.footer-link-card:hover span {
    color: #fff;
}

/* Social Media Cards Special Colors */
.footer-link-card.discord:hover { background: rgba(114, 137, 218, 0.2); }
.footer-link-card.facebook:hover { background: rgba(66, 103, 178, 0.2); }
.footer-link-card.telegram:hover { background: rgba(0, 136, 204, 0.2); }
.footer-link-card.instagram:hover { background: rgba(167, 29, 75, 0.2); }
.footer-link-card.youtube:hover { background: rgba(192, 33, 33, 0.2); }


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

.designer-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 167, 38, 0.1);
    transition: all 0.3s ease;
}

.designer-link:hover {
    background: rgba(255, 167, 38, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.15);
}

.designer-link i {
    font-size: 1rem;
    color: var(--primary-color);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-link-card {
        padding: 15px 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-box {
        padding: 10px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

.legal-section {
    padding-top:120px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.legal-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 70vh;
    height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);
}



.legal-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    font-size: 1.8em;
    align-items: center;
    gap: 0.5rem;
}



.legal-container h1 i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

/* Custom scrollbar for Webkit browsers */
.legal-container::-webkit-scrollbar {
    width: 8px;
}

.legal-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.legal-container::-webkit-scrollbar-thumb {
    background: #a1a1a1;
    border-radius: 4px;
}

.legal-container::-webkit-scrollbar-thumb:hover {
    background: #dbdbdb;
}

.legal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: rgba(51, 51, 51, 0.8);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tab-button.active {
    background: #f7f7f7;
    color: #000;
}

.tab-content {
    display: none;
    padding: 20px;
    border-radius: 5px;
}


.tab-content.active {
    display: block;
}

.legal-content {
    color: #fff;
    line-height: 1.6;
}

.legal-content h2 {
    color: #4a90e2;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: #c2c2c2;
    margin: 20px 0 10px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 5px;
}


.legal-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.legal-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease; 
}

.legal-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.legal-question h3 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}

.legal-question i {
    transition: transform 0.3s ease;
    color: white;
}

.legal-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.legal-answer.active {
    max-height: 1000px;
    padding: 20px;

}

.legal-question.active {
    background: rgba(255, 255, 255, 0.1);
}

.legal-answer ul, 
.legal-answer ol {
    margin: 10px 0;
    padding-left: 20px;
}

.legal-answer li {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content {
    margin-top: 20px;
}

/* FAQ Page Styles */
.faq-section {
    padding-top:120px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.faq-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 70vh;
    height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-container h1 i {
    font-size: 0.9em;
    color: #fff;
}

.faq-categories {
    display: flex;
    
    gap: 15px;
    margin-bottom: 30px;
}

.category-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.category-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.category-button.active {
    background: #fff;
    color: #000;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question h3 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .category-button {
        width: calc(50% - 10px);
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}


/* Support Page Styles */
.support-section {
    padding-top:120px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.support-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 80vh;
    height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 rgba(0, 0, 0, 0.3);
}

.support-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.support-container h1 i {
    font-size: 0.9em;
}

.support-intro {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 5px;
}


.support-card .support-icon i.fab.fa-discord {
    color: #5a7aee; 
}

.support-card .support-icon i.fas.fa-ticket-alt {
    color: var(--primary-color);
}

.support-card .support-icon i.fas.fa-envelope {
    color: #00A8E8; 
}

.support-card h3 {
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.support-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.support-button.discord {
    background: #fff;
}

.support-button.ticket {
    background: #fff;
}

.support-button.email {
    background: #fff;
}

.support-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.faq-preview {
    margin-top: 20px !important;
}

.faq-preview h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-preview h2 i {
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 20px;
    }
    
    .support-container {
        padding: 20px;
    }
}

/* Trailer Video Modal Styles */
.trailer-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.trailer-video-content {
    position: relative;
    margin: 40px auto;
    width: 90%;
    max-width: 1000px;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(87, 87, 87, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.trailer-video-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trailer-video-header h2 {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    font-size: 1.5rem;
}

.trailer-video-close {
    color: #c2c0c0;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.trailer-video-close:hover {
    color: #fff;
}

.trailer-video-container {
    width: 100%;
    height: 600px;
    background: transparent;
    position: relative;
    margin-bottom: 0;
    border-radius: 0 0 10px 10px;
}

.trailer-video-container iframe,
.trailer-video-container video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 10px 10px;
}

/* Animation for modal */
@keyframes trailerModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-60%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.trailer-video-modal.show .trailer-video-content {
    animation: trailerModalFadeIn 0.3s ease forwards;
}



.goog-te-banner-frame {display: none;}
#goog-gt-tt {display: none !important; visibility: hidden !important;}

#google_translate_element {
    position: absolute;
    bottom: -40px;
    right: 88px !important;
    z-index: 99999;
}

.goog-te-gadget {
    font-family: 'Open Sans', sans-serif !important;
    text-transform: uppercase;
}

.goog-te-gadget-simple {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 5px 8px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    display: inline-block;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    color: #ffffff !important;
}

.goog-te-gadget-simple:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.goog-te-menu2 {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.goog-te-menu-value {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.goog-te-menu-value span:nth-child(5),
.goog-te-menu-value span:nth-child(3) {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate {display: none !important;}
body {top: 0px !important;}

@media (max-width: 667px) {
    #google_translate_element {
        bottom: 15px;
        left: 15px !important;
        width: auto !important;
    }
    
    .goog-te-gadget-simple {
        width: auto !important;
        text-align: left;
    }
}

.voting-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.vote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.vote-item:hover {
    transform: translateX(5px);
}

.vote-site-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.vote-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.icon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vote-site-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.vote-button {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 100px;
    text-decoration: none;
}

.vote-hopzone {
    background: #2196F3;
    color: white;
}

.vote-hopzone:hover {
    background: #1976D2;
    transform: scale(1.05);
    color: white;
}

.vote-topzone {
    background: #FFC107;
    color: black;
}

.vote-topzone:hover {
    background: #FFA000;
    transform: scale(1.05);
}

.vote-network {
    background: #F44336;
    color: white;
}

.vote-network:hover {
    background: #D32F2F;
    transform: scale(1.05);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 480px) {
    .voting-menu {
        padding: 1rem;
        width: 100%;
    }

    .vote-item {
        padding: 0.8rem 1rem;
    }

    .vote-site-info {
        gap: 0.8rem;
    }

    .vote-site-name {
        font-size: 1rem;
    }

    .vote-button {
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
        min-width: 90px;
    }
}