/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #e4c571;
    --secondary-color: #C0C0C0;
    --accent-color: #FFFFFF;
    --dark-bg: #2a2a2a;
    --darker-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-secondary: #b0b0b0;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #e4c571 0%, #C0C0C0 100%);
    --gradient-secondary: linear-gradient(135deg, #C0C0C0 0%, #FFFFFF 100%);
    --gradient-gold: linear-gradient(135deg, #e4c571 0%, #d4b560 100%);
    --gradient-silver: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 100%);
    --shadow-glow: 0 0 20px rgba(228, 197, 113, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* SEO and Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Button text styling removed - using standard button styling */

.launcher-btn, .play-btn {
    width: 360px;
    height: 65px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    position: relative;
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 25px rgba(228, 197, 113, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-btn {
    width: 150px;
    height: 40px;
    background: var(--gradient-silver);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button hover effects - separate for each button */
.launcher-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(228, 197, 113, 0.9);
    background: linear-gradient(135deg, #d4b560, #e4c571) !important;
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
    background: var(--secondary-color) !important;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
    background: var(--secondary-color);
}

/* Store button styles */
.store-btn {
    width: 150px;
    height: 40px;
    background: var(--gradient-gold);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(228, 197, 113, 0.3);
}

.store-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 20px rgba(228, 197, 113, 0.5);
    background: linear-gradient(135deg, #d4b560, #e4c571);
    color: var(--text-dark);
    text-decoration: none;
}

.store-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 10px rgba(228, 197, 113, 0.4);
}

.store-btn.active {
    background: linear-gradient(135deg, #d4b560, #e4c571);
    color: #333;
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.8);
    transform: scale(1.05);
}

.store-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.store-btn:hover i {
    transform: scale(1.1);
}

/* Button shine effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

/* Primary button styles */
.btn-primary {
    background: #e4c571;
    color: #333;
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.5);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(228, 197, 113, 0.8);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.6);
}

/* Secondary button styles */
.btn-secondary {
    background: var(--gradient-silver);
    color: var(--text-dark);
    border: 1px solid var(--secondary-color);
    box-shadow: none;
    border-radius: 8px;
    font-weight: 600;
    text-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--secondary-color);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

/* Override conflicting styles for specific buttons */
.launcher-btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(228, 197, 113, 0.8);
    background: linear-gradient(135deg, #d4b560, #e4c571) !important;
}

.play-btn.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--secondary-color) !important;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
    border: 1px solid var(--secondary-color);
}

/* Force specific button styles */
.launcher-btn {
    background: var(--gradient-gold) !important;
}

.play-btn {
    background: var(--gradient-silver) !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(30px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 64px;
    height: 64px;
}

@keyframes glow {
    from { 
        box-shadow: 0 0 15px rgba(228, 197, 113, 0.6);
        filter: drop-shadow(0 0 15px rgba(228, 197, 113, 0.7));
    }
    to { 
        box-shadow: 0 0 25px rgba(228, 197, 113, 0.9);
        filter: drop-shadow(0 0 20px rgba(228, 197, 113, 1));
    }
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(228, 197, 113, 0.5);
}

.nav-link.active::after {
    width: 20px;
    animation: activeIndicator 0.3s ease-in-out;
}

.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.3);
}

.nav-link.active:hover::after {
    width: 25px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes activeIndicator {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 20px;
        opacity: 1;
    }
}

.nav-link:focus {
    outline: none;
}

.nav-link:focus-visible {
    outline: none;
}

.nav-auth {
    display: flex;
    gap: 1rem;
}

.nav-arrows {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-arrow {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(228, 197, 113, 0.7));
}

.nav-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(228, 197, 113, 0.8));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Server Status Indicators */
.server-status {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 20px;
}

.server-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 197, 113, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.server-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 197, 113, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.server-indicator:hover::before {
    left: 100%;
}

.server-indicator:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(228, 197, 113, 0.2);
    border-color: rgba(228, 197, 113, 0.5);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.winter-online .status-dot {
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(228, 197, 113, 0.6);
    animation: pulse-gold 2s infinite;
}

.summer-offline .status-dot {
    background: #666;
    box-shadow: 0 0 5px rgba(102, 102, 102, 0.4);
    opacity: 0.5;
}

.server-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winter-online .server-name {
    color: var(--primary-color);
    text-shadow: 0 0 3px rgba(228, 197, 113, 0.3);
}

.summer-offline .server-name {
    color: #888;
    opacity: 0.6;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 8px rgba(228, 197, 113, 0.6);
    }
    50% {
        box-shadow: 0 0 12px rgba(228, 197, 113, 0.8);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(0deg, #1e1e1e 0%, rgb(255 255 255) 100%, #020202 100%);
    overflow: hidden;
    margin: 0;
    padding: 120px 0 40px 0; /* Increased top padding to prevent logo overlap with navigation */
}

/* Hide hero title visually but keep it for SEO and accessibility */
.hero-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.0);
    z-index: 0;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(30, 30, 30, 0.6) 50%, rgba(51, 51, 51, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.15) 0%, rgba(192, 192, 192, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-element {
    position: absolute;
    opacity: 0.6;
    animation: floatElement 8s ease-in-out infinite;
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.float-1 {
    top: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.float-2 {
    top: 70%;
    right: 15%;
    width: 45px;
    height: 45px;
    animation-delay: 2s;
}

.float-3 {
    top: 40%;
    left: 20%;
    width: 70px;
    height: 70px;
    animation-delay: 4s;
}

.float-4 {
    top: 80%;
    right: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg);
        opacity: 1;
    }
}

.smoke-effect {
    position: absolute;
    opacity: 0.4;
    animation: smokeFloat 20s ease-in-out infinite;
    z-index: 2;
}

.smoke-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smoke-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 200px;
    animation-delay: 0s;
}

.smoke-2 {
    top: 60%;
    right: 10%;
    width: 250px;
    height: 180px;
    animation-delay: 10s;
}

@keyframes smokeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.5;
    }
}

@keyframes backgroundMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(228, 197, 113, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 6s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(228, 197, 113, 0.8),
        0 0 30px rgba(228, 197, 113, 0.4),
        0 0 45px rgba(228, 197, 113, 0.2);
    filter: blur(0.5px);
}

.particle:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 65%;
    left: 85%;
    width: 5px;
    height: 5px;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 35%;
    left: 15%;
    width: 7px;
    height: 7px;
    animation-delay: 3s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 75%;
    left: 75%;
    width: 6px;
    height: 6px;
    animation-delay: 4.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(5) {
    top: 25%;
    left: 92%;
    width: 4px;
    height: 4px;
    animation-delay: 2s;
    animation-duration: 8.5s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 12%;
    width: 7px;
    height: 7px;
    animation-delay: 5.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(7) {
    top: 8%;
    left: 55%;
    width: 5px;
    height: 5px;
    animation-delay: 1s;
    animation-duration: 9.5s;
}

.particle:nth-child(8) {
    top: 88%;
    left: 35%;
    width: 6px;
    height: 6px;
    animation-delay: 3.5s;
    animation-duration: 6s;
}

@keyframes sparkleFloat {
    0% { 
        transform: translateY(0) translateX(0) scale(0.3);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translateY(-8px) translateX(8px) scale(1);
    }
    30% { 
        transform: translateY(-25px) translateX(12px) scale(1.1);
        opacity: 0.9;
    }
    45% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
        opacity: 1;
    }
    60% { 
        transform: translateY(-30px) translateX(15px) scale(1.05);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(-8px) scale(0.85);
        opacity: 0.9;
    }
    90% {
        transform: translateY(-35px) translateX(5px) scale(0.95);
        opacity: 0.7;
    }
    100% { 
        transform: translateY(-45px) translateX(-3px) scale(0.3);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 1400px;
    padding: 40px 20px 0 20px; /* Increased top padding for better spacing from navigation */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-header {
    margin-bottom: 2rem;
    animation: headerSlideDown 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-text {
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(228, 197, 113, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(228, 197, 113, 0.8);
    }
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Reduced gap from 2rem to 1.5rem */
    margin-bottom: 2.5rem; /* Reduced margin from 3rem to 2.5rem */
    flex-wrap: wrap;
}

.hero-logo-section {
    margin-bottom: 0.8rem; /* Reduced margin from 1rem to 0.8rem */
    animation: logoSlideDown 1.2s ease-out 0.2s both;
    opacity: 0;
}

.hero-logo {
    width: 500px; /* Reduced from 350px to 320px */
    height: auto;
    filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.8));
    animation: logoGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease, transform 0.8s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(228, 197, 113, 1));
}

.hero-character {
    animation: characterFloat 4s ease-in-out infinite;
}

.character-container {
    position: relative;
    display: inline-block;
}

.character-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.9));
    animation: characterGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.3) 0%, rgba(192, 192, 192, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: characterGlowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes characterGlow {
    from { filter: drop-shadow(0 0 25px rgba(228, 197, 113, 0.8)); }
    to { filter: drop-shadow(0 0 35px rgba(228, 197, 113, 1)); }
}

@keyframes characterGlowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-text {
    flex: 1;
    max-width: 800px;
    animation: textSlideIn 1s ease-out 0.5s both;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: titleSlideIn 1s ease-out;
    text-shadow: 0 0 30px rgba(228, 197, 113, 0.9);
    width: 100%;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: lineSlideIn 1s ease-out forwards;
}

.title-line:nth-child(1) { 
    animation-delay: 0.7s; 
    font-size: 4.5rem;
    color: var(--accent-color);
}
.title-line:nth-child(2) { 
    animation-delay: 1.0s; 
    font-size: 5.5rem;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightGlow 3s ease-in-out infinite alternate;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(228, 197, 113, 0.8));
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    animation: highlightUnderline 2s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(228, 197, 113, 0.6);
}

@keyframes lineSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoSlideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    from { 
        filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.8));
    }
    to { 
        filter: drop-shadow(0 0 40px rgba(228, 197, 113, 1));
    }
}

@keyframes highlightUnderline {
    0%, 100% { 
        transform: scaleX(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightGlow {
    from { filter: drop-shadow(0 0 10px var(--secondary-color)); }
    to { filter: drop-shadow(0 0 20px var(--accent-color)); }
}

.hero-description {
    font-size: 1.5rem; /* Reduced from 1.6rem to 1.5rem */
    color: var(--secondary-color);
    margin-bottom: 1.5rem; /* Reduced from 2rem to 1.5rem */
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
    animation: descriptionFadeIn 1s ease-out 1.1s both;
    opacity: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    font-style: italic;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-subtitle {
    margin-bottom: 2rem;
    animation: subtitleFadeIn 1s ease-out 1.2s both;
}

.hero-subtitle h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.8);
    width: 100%;
    font-weight: 700;
}

.hero-subtitle p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(192, 192, 192, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(192, 192, 192, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bonusItemFadeIn 0.8s ease-out forwards;
    opacity: 0;
    backdrop-filter: blur(10px);
}

.bonus-item:nth-child(1) { animation-delay: 1.2s; }
.bonus-item:nth-child(2) { animation-delay: 1.4s; }
.bonus-item:nth-child(3) { animation-delay: 1.6s; }

.bonus-item:hover {
    background: rgba(192, 192, 192, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
    border-color: var(--primary-color);
}

.bonus-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.5);
}

.bonus-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@keyframes bonusItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: actionsSlideUp 1s ease-out 1.2s both;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.3) 0%, transparent 70%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover .btn-glow {
    opacity: 1;
}

/* Button content positioning */
.btn i,
.btn span {
    position: relative;
    z-index: 2;
}

/* Hero Features Badges */
.top-features-section {
    margin-top: 2rem;
    text-align: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
    animation: subtitleFadeIn 1s ease-out 1.3s both;
}

.features-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(228, 197, 113, 0.1);
    border: 2px solid rgba(228, 197, 113, 0.3);
    border-radius: 18px;
    padding: 0.6rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: badgeFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.feature-badge:nth-child(1) { animation-delay: 1.4s; }
.feature-badge:nth-child(2) { animation-delay: 1.5s; }
.feature-badge:nth-child(3) { animation-delay: 1.6s; }
.feature-badge:nth-child(4) { animation-delay: 1.7s; }
.feature-badge:nth-child(5) { animation-delay: 1.8s; }
.feature-badge:nth-child(6) { animation-delay: 1.9s; }

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 197, 113, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-badge:hover::before {
    left: 100%;
}

.feature-badge:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(228, 197, 113, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.8);
    position: relative;
    z-index: 2;
}

.feature-badge span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes actionsSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(228, 197, 113, 0.9);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(228, 197, 113, 1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 3;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-arrow:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

@keyframes scrollBounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        transform: translateX(-50%) translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 40px 0; /* Reduced padding for medium screens */
    }
    
    .hero-content {
        padding: 30px 20px 0 20px;
    }
    
    .hero-logo {
        width: 400px; /* Reduced from 500px */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px 0; /* Further reduced padding for mobile */
    }
    
    .hero-content {
        padding: 25px 20px 0 20px;
    }
    
    .hero-main {
        flex-direction: column;
        gap: 1.5rem; /* Reduced from 2rem to 1.5rem */
        text-align: center;
    }
    
    .hero-logo {
        width: 220px; /* Reduced from 250px to 220px */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.8rem;
    }
    
    .bonus-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .launcher-btn, .play-btn {
        width: 250px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-arrows {
        display: none;
    }
    
    .server-status {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px 0; /* Minimal padding for small screens */
    }
    
    .hero-content {
        padding: 20px 20px 0 20px;
    }
    
    .hero-logo {
        width: 160px; /* Reduced from 180px to 160px */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.5rem;
    }
    
    .character-img {
        max-width: 180px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .launcher-btn, .play-btn {
        width: 220px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 70px 0 30px 0; /* Minimal padding for very small screens */
    }
    
    .hero-content {
        padding: 15px 15px 0 15px;
    }
    
    .hero-logo {
        width: 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .launcher-btn, .play-btn {
        width: 200px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* Section Separator */
.section-separator {
    width: 100%;
    height: 44px;
    background-image: url('../assets/images/border_line.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: -15px 0 0 0;
    padding: 0;
    opacity: 0.5;
    position: absolute;
    z-index: 100;
    display: block;
    line-height: 0;
}

/* Server Cards */
.servers {
    padding: 8rem 0 3rem 0;
    background: var(--darker-bg);
    position: relative;
    margin: 0;
    border-bottom: none;
}

.servers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.servers-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.servers .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.season-card {
    background: rgba(192, 192, 192, 0.05);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 600px;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(228, 197, 113, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.season-card:hover::before {
    transform: translateX(100%);
}

.season-card > * {
    position: relative;
    z-index: 5;
}

/* Season Image as Background */
.season-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.season-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.season-card:hover .season-image img {
    transform: scale(1.1);
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(30, 30, 30, 0.7) 100%);
    z-index: 2;
}

/* Winter Season Card - Active & Prominent */
.season-card.winter {
    border-color: rgba(228, 197, 113, 0.6);
    box-shadow: 0 0 40px rgba(228, 197, 113, 0.2);
    transform: scale(1.02);
    position: relative;
}

.season-card.winter.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 60px rgba(228, 197, 113, 0.4);
    animation: winterGlow 3s ease-in-out infinite;
}

.season-card.winter:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 0 80px rgba(228, 197, 113, 0.6);
    border-color: var(--primary-color);
}

@keyframes winterGlow {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(228, 197, 113, 0.4);
        border-color: var(--primary-color);
    }
    50% { 
        box-shadow: 0 0 80px rgba(228, 197, 113, 0.6);
        border-color: #f0d080;
    }
}

/* Winter Card Special Effects */
.season-card.winter::before {
    background-image: url('../assets/images/lin2-cube-texture.png');
    background-size: 150px 150px;
    background-repeat: repeat;
    opacity: 0.6;
    animation: winterTexture 10s linear infinite;
}

@keyframes winterTexture {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-150px) translateY(-150px); }
}

/* Summer Season Card - Offline & Disabled */
.season-card.summer {
    border-color: rgba(192, 192, 192, 0.2);
    opacity: 0.5;
    transform: scale(0.95);
    filter: grayscale(0.3);
    position: relative;
}

.season-card.summer.disabled {
    border-color: rgba(192, 192, 192, 0.1);
    opacity: 0.4;
    filter: grayscale(0.5);
}

.season-card.summer:hover {
    transform: translateY(-5px) scale(0.97);
    opacity: 0.6;
    filter: grayscale(0.2);
}

/* Summer Card Offline Effect */
.season-card.summer::before {
    background-image: url('../assets/images/lin2-cube-texture.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.2;
    filter: grayscale(0.8);
}

/* Offline Badge Effect */
.season-card.summer .season-status.coming-soon {
    background: linear-gradient(135deg, #666, #999);
    color: #333;
    box-shadow: 0 0 10px rgba(102, 102, 102, 0.3);
    animation: offlinePulse 2s ease-in-out infinite;
}

@keyframes offlinePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.02);
        opacity: 1;
    }
}

.season-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem 2rem 0 2rem;
    z-index: 5;
}

.season-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.season-card.winter .season-icon {
    background: linear-gradient(135deg, #e4c571, #d4b560);
    color: #333;
    box-shadow: 0 0 35px rgba(228, 197, 113, 0.7);
    animation: winterIconGlow 2s ease-in-out infinite;
}

@keyframes winterIconGlow {
    0%, 100% { 
        box-shadow: 0 0 35px rgba(228, 197, 113, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(228, 197, 113, 0.9);
        transform: scale(1.05);
    }
}

.season-card.summer .season-icon {
    background: linear-gradient(135deg, #999, #ccc);
    color: #333;
    box-shadow: 0 0 15px rgba(102, 102, 102, 0.3);
    filter: grayscale(0.3);
    opacity: 0.8;
}

.season-card:hover .season-icon {
    transform: scale(1.1);
}

.season-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.season-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.season-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.season-status:hover::before {
    left: 100%;
}

.season-status.active {
    background: linear-gradient(135deg, #e4c571, #d4b560);
    color: #333;
    box-shadow: 0 0 25px rgba(228, 197, 113, 0.6);
    animation: activeStatusPulse 2s ease-in-out infinite;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes activeStatusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px rgba(228, 197, 113, 0.6);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 0 35px rgba(228, 197, 113, 0.8);
    }
}

.season-status.coming-soon {
    background: linear-gradient(135deg, #C0C0C0, #E5E5E5);
    color: #333;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(228, 197, 113, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(228, 197, 113, 0.6);
    }
}

.season-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem 2rem 2rem;
    z-index: 5;
}

/* Connection info removed - no longer needed */

.season-features {
    background: rgba(192, 192, 192, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.season-card.winter .season-features {
    border-color: rgba(228, 197, 113, 0.4);
    background: rgba(228, 197, 113, 0.08);
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.1);
}

.season-card.winter .season-features::before {
    filter: hue-rotate(0deg) brightness(1.3);
    opacity: 0.8;
}

.season-features h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    position: relative;
    z-index: 2;
}

.season-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.season-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.season-features li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.season-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-shadow: 0 0 8px rgba(228, 197, 113, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.season-features li:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(228, 197, 113, 0.8);
}

.season-features li i.fa-clock {
    color: #999;
}

.season-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.connect-btn, .download-btn {
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connect-btn {
    background: var(--gradient-gold);
    color: #333;
    box-shadow: 0 0 25px rgba(228, 197, 113, 0.5);
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(228, 197, 113, 0.7);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

.download-btn {
    background: var(--gradient-silver);
    color: #333;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

.btn.disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.countdown {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.countdown strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Responsive Design for Season Cards */
@media (max-width: 768px) {
    .season-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .season-features ul {
        grid-template-columns: 1fr;
    }
    
    .season-card {
        min-height: 500px;
    }
    
    .season-header {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .season-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .season-header h3 {
        font-size: 1.8rem;
    }
    
    .season-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .season-image {
        height: 200px;
    }
}

/* Features Section - New Interactive Design */
.features {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
}

/* Background Image */
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.features-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
}

/* Animated Background */
.features-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background-image: url('../assets/images/lin2-cube-texture.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.element-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

.element-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.08;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.06;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.09;
    }
}

/* Main Content */
.features-main {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(228, 197, 113, 0.6);
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.title-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.title-line {
    width: 100%;
    height: auto;
    opacity: 0.3;
    filter: drop-shadow(0 0 10px rgba(228, 197, 113, 0.4));
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.1) 0%, transparent 70%);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(228, 197, 113, 0.1);
    border: 2px solid rgba(228, 197, 113, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 197, 113, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 197, 113, 0.3);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(228, 197, 113, 0.4);
    transform: translateY(-2px);
}

.category-tab.active::before {
    display: none;
}

.tab-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(228, 197, 113, 0.6));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab.active .tab-icon img {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.8)) brightness(0.9);
}

.category-tab span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab.active span {
    color: #333;
    font-weight: 700;
}

/* Showcase Section */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.showcase-main {
    position: relative;
}

.showcase-display {
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 2px solid rgba(228, 197, 113, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.showcase-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/lin2-cube-texture.png');
    background-size: 100px;
    background-repeat: repeat;
    opacity: 0.03;
    animation: backgroundFloat 30s linear infinite;
}

@keyframes backgroundFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.display-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.feature-preview {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    position: relative;
    z-index: 2;
}

.preview-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(228, 197, 113, 0.6));
    animation: previewGlow 3s ease-in-out infinite;
}

@keyframes previewGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(228, 197, 113, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.8));
        transform: scale(1.05);
    }
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.2) 0%, transparent 70%);
    animation: previewGlowPulse 2s ease-in-out infinite;
}

@keyframes previewGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.preview-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preview-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.preview-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.preview-particles .particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: -1.5s;
}

.preview-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: -3s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

.feature-info {
    text-align: center;
    width: 100%;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(228, 197, 113, 0.3);
}

.feature-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(228, 197, 113, 0.2);
}

.detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(228, 197, 113, 0.4);
}

.feature-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(228, 197, 113, 0.5);
    font-family: 'Cinzel', serif;
}

.feature-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    background: rgba(228, 197, 113, 0.1);
    border: 1px solid rgba(228, 197, 113, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.4);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 2px solid rgba(228, 197, 113, 0.2);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(228, 197, 113, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-texture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    animation: cardTextureFloat 20s linear infinite;
}

@keyframes cardTextureFloat {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(228, 197, 113, 0.6));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(228, 197, 113, 0.3) 0%, transparent 70%);
    animation: iconGlow 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.4);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.feature-card:hover .card-indicator {
    width: 100%;
}

.feature-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(228, 197, 113, 0.3);
    transform: translateY(-5px) scale(1.01);
}

.feature-card.active::before {
    opacity: 1;
}

.feature-card.active .icon-glow {
    opacity: 1;
}

.feature-card.active .card-indicator {
    width: 100%;
}

/* Category filtering */
.feature-card[data-category] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
}

.feature-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Footer Decoration */
.features-footer {
    text-align: center;
    margin-top: 4rem;
}

.footer-decoration {
    display: inline-block;
    position: relative;
}

.footer-line {
    width: 200px;
    height: auto;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(228, 197, 113, 0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-display {
        padding: 2rem;
    }
    
    .feature-preview {
        width: 150px;
        height: 150px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-nav {
        gap: 1.5rem;
    }
    
    .category-tab {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 2rem 0;
    }
    
    .features-main {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .category-nav {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .category-tab {
        padding: 0.8rem 1.2rem;
        gap: 0.5rem;
    }
    
    .category-tab span {
        font-size: 0.9rem;
    }
    
    .tab-icon {
        width: 25px;
        height: 25px;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .showcase-display {
        padding: 1.5rem;
    }
    
    .feature-preview {
        width: 120px;
        height: 120px;
    }
    
    .feature-info h3 {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .footer-line {
        width: 150px;
    }
}

.item-icon {
    width: 80px;
    height: 80px;
    background: rgba(228, 197, 113, 0.1);
    border: 2px solid rgba(228, 197, 113, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.item-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(228, 197, 113, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.item-icon:hover::before {
    transform: translateX(100%);
}

.item-icon:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.5);
}

.item-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(228, 197, 113, 0.8));
    z-index: 2;
    position: relative;
}

.item-name {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(228, 197, 113, 0.6);
    z-index: 2;
    position: relative;
    text-align: center;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.glowing-cube {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    animation: cubeFloat 4s ease-in-out infinite;
}

.glowing-cube img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(228, 197, 113, 0.8));
    animation: cubeRotate 10s linear infinite;
}

@keyframes cubeFloat {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-10px); }
}

@keyframes cubeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Character Overlay Animations */
.character-overlay {
    animation: characterFade 8s ease-in-out infinite;
}

.character-overlay.left {
    animation-delay: 0s;
}

.character-overlay.right {
    animation-delay: 4s;
}

@keyframes characterFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Pagination */
.features-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.pagination-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.1);
    border: 2px solid rgba(192, 192, 192, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.pagination-dot:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.pagination-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #333;
    box-shadow: 0 0 20px rgba(228, 197, 113, 0.6);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(228, 197, 113, 0.6);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(228, 197, 113, 0.8);
    }
}

/* Statistics Section */
.statistics {
    padding: 8rem 0 3rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
    margin: 0;
    border-bottom: none;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(192, 192, 192, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

 .stat-label {
     color: #ccc;
     font-size: 1.1rem;
 }
 
 /* Top Features Section */
 .top-features-section {
     margin-top: 4rem;
     text-align: center;
 }
 
 .features-subtitle {
     font-size: 2rem;
     color: var(--secondary-color);
     margin-bottom: 2rem;
     text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
 }
 
 .features-badges {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     flex-wrap: wrap;
     max-width: 1000px;
     margin: 0 auto;
 }
 
 .feature-badge {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     background: rgba(228, 197, 113, 0.1);
     border: 2px solid rgba(228, 197, 113, 0.3);
     border-radius: 22px;
     padding: 0.8rem 1.2rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     backdrop-filter: blur(10px);
     position: relative;
     overflow: hidden;
 }
 
 .feature-badge::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(228, 197, 113, 0.2), transparent);
     transition: left 0.6s ease;
 }
 
 .feature-badge:hover::before {
     left: 100%;
 }
 
 .feature-badge:hover {
     transform: translateY(-5px) scale(1.05);
     background: rgba(228, 197, 113, 0.2);
     border-color: var(--primary-color);
     box-shadow: 0 8px 25px rgba(228, 197, 113, 0.4);
 }
 
 .feature-badge i {
     color: var(--primary-color);
     font-size: 1.3rem;
     text-shadow: 0 0 10px rgba(228, 197, 113, 0.8);
     position: relative;
     z-index: 2;
 }
 
 .feature-badge span {
     color: #ffffff;
     font-weight: 600;
     font-size: 0.9rem;
     text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
     position: relative;
     z-index: 2;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }



/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(228, 197, 113, 0.5));
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link i {
    position: relative;
    z-index: 2;
}

/* Footer Social Link Colors */
.footer-social-link.discord {
    background: var(--gradient-gold);
    border: 2px solid rgba(228, 197, 113, 0.5);
}

.footer-social-link.discord:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(228, 197, 113, 0.4);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

.footer-social-link.youtube {
    background: var(--gradient-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.footer-social-link.youtube:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

.footer-social-link.facebook {
    background: var(--gradient-gold);
    border: 1px solid rgba(228, 197, 113, 0.3);
}

.footer-social-link.facebook:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(228, 197, 113, 0.4);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

.footer-social-link.tiktok {
    background: var(--gradient-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.footer-social-link.tiktok:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .features-badges {
        gap: 1rem;
    }
    
    .feature-badge {
        padding: 0.6rem 1rem;
    }
    
    .feature-badge i {
        font-size: 1rem;
    }
    
    .feature-badge span {
        font-size: 0.8rem;
    }

    /* Features Showcase Responsive */
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
        min-height: 60vh;
    }

    .features-content {
        order: 2;
        padding: 1rem;
    }

    .character-overlay {
        width: 30%;
        opacity: 0.2;
    }

    .features-container {
        padding: 0 1rem;
    }

    .features-heading {
        font-size: 2rem;
        text-align: center;
    }

    .features-description p {
        font-size: 1rem;
        text-align: center;
    }

    .features-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .armor-model img {
        max-width: 120px;
    }

    .item-icons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .item-icon {
        width: 60px;
        height: 60px;
    }

    .item-icon img {
        width: 30px;
        height: 30px;
    }

    .glowing-cube {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .nav-arrow img {
        width: 20px;
        height: 20px;
    }

    .pagination-dot {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo-img {
        width: 50px;
    }

    .footer-social {
        justify-content: center;
        gap: 0.8rem;
    }

    .footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .character-overlay {
        width: 25%;
        opacity: 0.15;
    }

    .features-heading {
        font-size: 1.5rem;
    }

    .features-description p {
        font-size: 0.9rem;
    }

    .features-items {
        gap: 1rem;
    }

    .armor-model img {
        max-width: 100px;
    }

    .item-icons {
        gap: 0.5rem;
    }

    .item-icon {
        width: 50px;
        height: 50px;
    }

    .item-icon img {
        width: 25px;
        height: 25px;
    }

    .glowing-cube {
        width: 40px;
        height: 40px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }

    .nav-arrow img {
        width: 18px;
        height: 18px;
    }

    .pagination-dot {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-silver);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
} 

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    position: relative;
    z-index: 2;
}

/* Discord Button */
.social-btn.discord {
    background: var(--gradient-gold);
    border: 2px solid rgba(228, 197, 113, 0.5);
}

.social-btn.discord:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

/* YouTube Button */
.social-btn.youtube {
    background: var(--gradient-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.social-btn.youtube:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

/* Facebook Button */
.social-btn.facebook {
    background: var(--gradient-gold);
    border: 1px solid rgba(228, 197, 113, 0.3);
}

.social-btn.facebook:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

/* TikTok Button */
.social-btn.tiktok {
    background: var(--gradient-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.social-btn.tiktok:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

/* Instagram Button */
.social-btn.instagram {
    background: var(--gradient-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.social-btn.instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
    background: var(--secondary-color);
}

/* Twitter/X Button */
.social-btn.twitter {
    background: var(--gradient-gold);
    border: 1px solid rgba(228, 197, 113, 0.3);
}

.social-btn.twitter:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
    background: linear-gradient(135deg, #d4b560, #e4c571);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        gap: 1.2rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        left: 5px;
        gap: 1rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Footer Responsive for Small Screens */
    .footer-logo-img {
        width: 45px;
    }

    .footer-social {
        gap: 0.6rem;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
} 
/* Support & Help Section */
.support {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.support-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.support-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.support-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}


.support .container {
    position: relative;
    z-index: 2;
}

.support-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
    width: 100%;
}

.support-card {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(228, 197, 113, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 200px;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover::before {
    opacity: 1;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(228, 197, 113, 0.2);
    border-color: rgba(228, 197, 113, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(228, 197, 113, 0.1);
}

.card-header .card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(228, 197, 113, 0.3);
}

.card-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(228, 197, 113, 0.2);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(228, 197, 113, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(228, 197, 113, 0.4);
    box-shadow: 0 5px 15px rgba(228, 197, 113, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(228, 197, 113, 0.6);
    box-shadow: 0 8px 25px rgba(228, 197, 113, 0.2);
    background: rgba(228, 197, 113, 0.05);
}

.faq-question {
    padding: 1.2rem;
    background: rgba(228, 197, 113, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    border: none;
    outline: none;
}

.faq-question:hover {
    background: rgba(228, 197, 113, 0.1);
}

.faq-item.active .faq-question {
    background: rgba(228, 197, 113, 0.15);
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-light);
    pointer-events: auto;
    font-size: 1rem;
    text-align: left;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(20, 20, 20, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.2rem;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Form */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(228, 197, 113, 0.3);
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.8);
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(228, 197, 113, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 197, 113, 0.4);
}

/* Quick Help */
.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(228, 197, 113, 0.05);
    border: 1px solid rgba(228, 197, 113, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-link:hover {
    background: rgba(228, 197, 113, 0.1);
    border-color: rgba(228, 197, 113, 0.4);
    transform: translateX(5px);
}

.help-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Live Support */
.live-support-content {
    text-align: center;
}

.support-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.support-status span {
    color: #4CAF50;
    font-weight: 500;
}

.live-support-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Support Section Responsive Design */
@media (max-width: 1024px) {
    .support {
        padding: 100px 0;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .main-support {
        grid-column: 1;
        grid-row: 1;
    }
    
    .discord-ticket {
        grid-column: 1;
        grid-row: 2;
        min-height: 250px;
    }
    
    .support-card {
        padding: 1.8rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .support {
        padding: 80px 0;
    }
    
    .support .container {
        padding: 0 15px;
    }
    
    .support-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .card-header {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .card-header .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .faq-list {
        gap: 0.8rem;
    }
    
    .faq-question {
        padding: 0.9rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0.9rem;
        font-size: 0.85rem;
    }
    
    .ticket-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .ticket-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .support {
        padding: 60px 0;
    }
    
    .support .container {
        padding: 0 10px;
    }
    
    .support-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .support-card {
        padding: 1.2rem;
    }
    
    .card-header {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .card-header .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .faq-list {
        gap: 0.6rem;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .faq-question span {
        font-size: 0.85rem;
    }
    
    .faq-question i {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .ticket-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }
    
    .ticket-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 160px;
        justify-content: center;
    }
    
    .help-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .help-link i {
        font-size: 1.1rem;
    }
}

.discord-support,
.live-chat {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-support {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.live-chat {
    background: rgba(192, 192, 192, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.discord-support:hover,
.live-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Main FAQ Section */
.main-support {
    grid-column: 1;
    grid-row: 1;
}

/* Discord Ticket Button */
.discord-ticket {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    align-self: stretch;
}

.ticket-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.ticket-content p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
    max-width: 280px;
}

.ticket-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    font-size: 1.1rem;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

/* Multimedia Section - Enhanced Design */

/* Video Modal Styles */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.show {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 20px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .video-modal-content h3 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .video-modal-content h3 {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

.video-modal-content h3 {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Lightbox Modal Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    margin: 20px;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .lightbox-content h3 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98%;
        margin: 5px;
    }
    
    .lightbox-content h3 {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-content h3 {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Enhanced Multimedia Section Design */
.multimedia {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Ensure proper container behavior */
.multimedia .container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Image */
.multimedia-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.multimedia-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.multimedia-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}


/* Animated Background Elements */
.multimedia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/line-header.png') repeat-x;
    background-size: 100% 2px;
    opacity: 0.1;
    animation: scroll 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.multimedia-content {
    position: relative;
    z-index: 4;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 4;
}

/* Ensure proper spacing for multimedia panels */
#videos-panel,
#screenshots-panel {
    width: 100%;
}

.multimedia-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #e4c571 0%, #d4b560 100%);
    border-color: #e4c571;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(228, 197, 113, 0.3);
    color: #333;
}

.featured-video-section {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.hero-video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-video-play-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e4c571 0%, #d4b560 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(228, 197, 113, 0.4);
}

.hero-video-play-btn i {
    color: #333;
    font-size: 2.2rem;
    margin-left: 5px;
    font-weight: bold;
}

.hero-video-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(228, 197, 113, 0.6);
}

.video-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-sidebar h3 {
    color: #e4c571;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 120px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-video-item:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Image styling for multimedia section */
.hero-video-image,
.sidebar-video-image,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-video-item:hover .sidebar-video-overlay {
    opacity: 1;
}

.sidebar-video-play-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e4c571 0%, #d4b560 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sidebar-video-play-btn i {
    color: #333;
    font-size: 1.1rem;
    margin-left: 2px;
    font-weight: bold;
}

.sidebar-video-play-btn:hover {
    transform: scale(1.1);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e4c571 0%, #d4b560 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(228, 197, 113, 0.4);
}

.gallery-icon i {
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
}

.gallery-icon:hover {
    transform: scale(1.15);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .featured-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .video-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .sidebar-videos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .sidebar-video-item {
        margin-bottom: 0;
        height: 140px;
    }
    
    .hero-video-item {
        height: 400px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .multimedia {
        padding: 80px 0;
    }
    
    .multimedia .container {
        padding: 0 15px;
    }
    
    .multimedia-filters {
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .featured-video-section {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-video-item {
        height: 320px;
    }
    
    .hero-video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .hero-video-play-btn i {
        font-size: 1.8rem;
    }
    
    .hero-video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-sidebar {
        padding: 1.5rem;
    }
    
    .video-sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .sidebar-videos {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .sidebar-video-item {
        height: 110px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .gallery-item {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .multimedia {
        padding: 60px 0;
    }
    
    .multimedia .container {
        padding: 0 10px;
    }
    
    .multimedia-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .filter-btn {
        width: 180px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .featured-video-section {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-video-item {
        height: 280px;
    }
    
    .hero-video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .hero-video-play-btn i {
        font-size: 1.5rem;
    }
    
    .hero-video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-sidebar {
        padding: 1rem;
    }
    
    .video-sidebar h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-videos {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .sidebar-video-item {
        height: 100px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
    }
    
    .gallery-icon i {
        font-size: 1.2rem;
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(228, 197, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(228, 197, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(228, 197, 113, 0.05) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

.preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="star" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(228,197,113,0.3)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="20" cy="20" r="0.5" fill="url(%23star)"/><circle cx="80" cy="30" r="0.3" fill="url(%23star)"/><circle cx="40" cy="70" r="0.4" fill="url(%23star)"/><circle cx="90" cy="80" r="0.2" fill="url(%23star)"/><circle cx="10" cy="60" r="0.3" fill="url(%23star)"/><circle cx="70" cy="10" r="0.4" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: starFloat 20s linear infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

@keyframes starFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.preloader-content {
    text-align: center;
    max-width: 1000px;
    padding: 5rem;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.8));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 30px rgba(228, 197, 113, 0.8)); }
    100% { filter: drop-shadow(0 0 50px rgba(228, 197, 113, 1.2)) drop-shadow(0 0 80px rgba(228, 197, 113, 0.4)); }
}

.logo-img {
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(228, 197, 113, 0.6));
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(228, 197, 113, 0.9) 50%,
        transparent 70%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
    z-index: 2;
    pointer-events: none;
    transform: translateX(-100%);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.preloader-text {
    color: #e4c571;
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.5);
    position: relative;
    z-index: 2;
}

.loading-text {
    display: inline-block;
    animation: textPulse 2s ease-in-out infinite;
    position: relative;
}

.loading-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e4c571, transparent);
    animation: textUnderline 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes textUnderline {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(228, 197, 113, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95));
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.3);
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.accept-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(228, 197, 113, 0.3);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
}

.decline-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.decline-btn:hover {
    background: var(--text-muted);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    .preloader-content {
        max-width: 800px;
        padding: 4rem;
    }

    .logo-img {
        max-width: 600px;
    }

    .preloader-text {
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }

    .cookie-text p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        max-width: 600px;
        padding: 3rem;
    }

    .logo-img {
        max-width: 450px;
    }

    .preloader-text {
        font-size: 0.9rem;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-text h3 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(228, 197, 113, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(228, 197, 113, 0.2);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #d4af37, var(--primary-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(228, 197, 113, 0.5);
    border-color: rgba(228, 197, 113, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-2px) scale(0.95);
    box-shadow: 0 6px 20px rgba(228, 197, 113, 0.4);
}

.back-to-top-btn i {
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Store Button Responsive */
@media (max-width: 768px) {
    .store-btn {
        width: 120px;
        height: 35px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .store-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .store-btn {
        width: 100px;
        height: 32px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .store-btn i {
        font-size: 0.8rem;
    }
}

/* Back to Top Button Responsive */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ===== FEATURES PREVIEW SECTION ===== */
.features-preview {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.features-preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-preview-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.features-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.features-preview .container {
    position: relative;
    z-index: 10;
}

.features-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-preview-text {
    color: var(--text-light);
}

.features-preview-text .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(228, 197, 113, 0.5);
}

.features-preview-text .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.9;
}

.features-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(228, 197, 113, 0.1);
    border: 1px solid rgba(228, 197, 113, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: rgba(228, 197, 113, 0.6);
    transform: translateX(10px);
}

.feature-highlight i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.feature-highlight span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.features-preview-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.features-preview-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.features-preview-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 197, 113, 0.4);
}

.features-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-preview-image {
    position: relative;
    max-width: 400px;
}

.preview-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.preview-main-image:hover {
    transform: scale(1.05);
}

.preview-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.3), transparent);
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-preview-image:hover .preview-image-glow {
    opacity: 1;
}

/* ===== DOWNLOAD PREVIEW SECTION ===== */
.download-preview {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.download-preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.download-preview-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.download-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.download-preview .container {
    position: relative;
    z-index: 10;
}

.download-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-preview-text {
    color: var(--text-light);
}

.download-preview-text .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(228, 197, 113, 0.5);
}

.download-preview-text .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.9;
}

.download-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.download-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(228, 197, 113, 0.1);
    border: 1px solid rgba(228, 197, 113, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.download-highlight:hover {
    background: rgba(228, 197, 113, 0.2);
    border-color: rgba(228, 197, 113, 0.6);
    transform: translateX(10px);
}

.download-highlight i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.download-highlight span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.download-preview-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-preview-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.download-preview-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 197, 113, 0.4);
}

.download-preview-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.download-preview-image {
    position: relative;
    max-width: 400px;
}

.download-preview-image .preview-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.download-preview-image .preview-main-image:hover {
    transform: scale(1.05);
}

.download-preview-image .preview-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.3), transparent);
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-preview-image:hover .preview-image-glow {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .features-preview-content,
    .download-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .features-preview-text .section-title,
    .download-preview-text .section-title {
        font-size: 3rem;
    }
    
    .features-preview,
    .download-preview {
        padding: 4rem 0;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .features-preview-text .section-title,
    .download-preview-text .section-title {
        font-size: 2.5rem;
    }
    
    .features-preview-text .section-subtitle,
    .download-preview-text .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-highlights,
    .download-highlights {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-highlight,
    .download-highlight {
        padding: 0.8rem 1.2rem;
    }
    
    .features-preview-actions,
    .download-preview-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .features-preview-actions .btn,
    .download-preview-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .features-preview-image,
    .download-preview-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .features-preview-text .section-title,
    .download-preview-text .section-title {
        font-size: 2rem;
    }
    
    .features-preview-text .section-subtitle,
    .download-preview-text .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-highlight,
    .download-highlight {
        padding: 0.6rem 1rem;
    }
    
    .feature-highlight i,
    .download-highlight i {
        font-size: 1.2rem;
        width: 30px;
    }
    
    .feature-highlight span,
    .download-highlight span {
        font-size: 0.9rem;
    }
    
    .features-preview-actions,
    .download-preview-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-preview-actions .btn,
    .download-preview-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features-preview-image,
    .download-preview-image {
        max-width: 250px;
    }
}

/* Integrated Seasonal Theme Styles */
.seasonal-theme-integrated {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.winter-season-integrated,
.summer-season-integrated {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-bg-integrated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.season-bg-img-integrated {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.season-overlay-integrated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 15px;
}

.winter-overlay-integrated {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.7) 0%, rgba(0, 50, 100, 0.8) 100%);
}

.summer-overlay-integrated {
    background: linear-gradient(135deg, rgba(255, 150, 0, 0.7) 0%, rgba(255, 100, 0, 0.8) 100%);
}

.season-content-integrated {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem;
    max-width: calc(100% - 2rem);
}

.season-title-integrated {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.season-description-integrated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.season-features-integrated {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.season-feature-integrated {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.season-feature-integrated:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive adjustments for integrated seasonal themes */
@media (max-width: 768px) {
    .seasonal-theme-integrated {
        flex-direction: column;
        gap: 1rem;
    }
    
    .winter-season-integrated,
    .summer-season-integrated {
        min-height: 180px;
    }
    
    .season-content-integrated {
        padding: 1rem;
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .season-title-integrated {
        font-size: 1.1rem;
    }
    
    .season-description-integrated {
        font-size: 0.85rem;
    }
    
    .season-feature-integrated {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .season-content-integrated {
        padding: 0.8rem;
        margin: 0.3rem;
    }
    
    .season-title-integrated {
        font-size: 1rem;
    }
    
    .season-description-integrated {
        font-size: 0.8rem;
    }
}

/* Split-Screen Download Section Styles */
.download-split-screen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    min-height: 500px;
    align-items: center;
}

.download-split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.download-split-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(228, 197, 113, 0.3);
}

.download-split-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.download-options-split {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.download-option-btn {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(228, 197, 113, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.download-option-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 197, 113, 0.6);
    box-shadow: 0 10px 30px rgba(228, 197, 113, 0.2);
}

.download-option-btn.primary-option {
    border-color: rgba(228, 197, 113, 0.5);
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.1) 0%, rgba(42, 42, 42, 0.95) 100%);
}

.download-option-btn.primary-option:hover {
    border-color: rgba(228, 197, 113, 0.8);
    box-shadow: 0 15px 40px rgba(228, 197, 113, 0.3);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.option-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.option-size {
    background: rgba(228, 197, 113, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(228, 197, 113, 0.3);
}

.option-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-option-btn:hover .option-arrow {
    transform: translateX(5px);
}

.download-stats-split {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item-split {
    text-align: center;
    flex: 1;
}

.stat-number-split {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    text-shadow: 0 0 10px rgba(228, 197, 113, 0.3);
}

.stat-label-split {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.download-split-right {
    position: relative;
}

.download-preview-image {
    position: relative;
    max-width: 400px;
}

.preview-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.download-preview-image:hover .preview-main-image {
    transform: scale(1.05);
}

.preview-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(228, 197, 113, 0.3), transparent);
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-preview-image:hover .preview-image-glow {
    opacity: 1;
}

/* Responsive Design for Split-Screen Download */
@media (max-width: 1024px) {
    .download-split-screen-container {
        gap: 2rem;
    }
    
    .download-split-title {
        font-size: 2.2rem;
    }
    
    .download-stats-split {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .download-split-screen-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .download-split-left {
        order: 2;
        padding: 1rem 0;
    }
    
    .download-split-right {
        order: 1;
    }
    
    .download-split-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .download-split-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .download-stats-split {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number-split {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-split-title {
        font-size: 1.8rem;
    }
    
    .download-option-btn {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .option-content h3 {
        font-size: 1.1rem;
    }
    
    .option-content p {
        font-size: 0.8rem;
    }
    
    .download-stats-split {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item-split {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item-split:last-child {
        border-bottom: none;
    }
    
    .stat-number-split {
        font-size: 1.3rem;
    }
    
    .stat-label-split {
        margin-top: 0;
    }
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-list {
        padding: 0 15px;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
}


