:root {
    --primary: #FFD700;
    --primary-dark: #B8860B;
    --primary-light: #FFED4E;
    --primary-rgb: 255, 215, 0;
    --secondary: #1a1a1a;
    --secondary-light: #2a2a2a;
    --secondary-lighter: #3a3a3a;
    --accent: #FFA500;
    --accent-rgb: 255, 165, 0;
    --dark: #0a0a0a;
    --dark-rgb: 10, 10, 10;
    --light: #ffffff;
    --light-rgb: 255, 255, 255;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #cccccc;
    --success: #00d4aa;
    --warning: #ffaa00;
    --danger: #ff4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(var(--primary-rgb), 0.1) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(var(--accent-rgb), 0.1) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(var(--primary-rgb), 0.1) 0px, transparent 50%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(var(--primary-rgb), 0.4);
    --shadow-glow-accent: 0 0 30px rgba(var(--accent-rgb), 0.4);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    z-index: -1;
    opacity: 0.5;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

::selection {
    background: rgba(var(--primary-rgb), 0.3);
    color: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.loading-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-logo img {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--dark-rgb), 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(var(--dark-rgb), 0.95);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    gap: 40px;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(var(--secondary-light), 0.6);
    padding: 10px 15px;
    border-radius: 50px;
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    padding: 14px 28px;
    color: var(--gray-lighter);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 25px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--dark);
    transform: translateY(-3px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--dark);
    background: var(--gradient);
    box-shadow: var(--shadow-glow);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-actions {
    position: absolute;
    right: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(var(--light-rgb), 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline:hover::after {
    left: 0;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: var(--light);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3B42A0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.mobile-toggle {
    display: none;
    background: rgba(var(--primary-rgb), 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px 15px;
    transition: var(--transition);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.mobile-toggle:hover {
    color: var(--dark);
    background: var(--gradient);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.mobile-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    height: calc(100vh - 85px);
    background: rgba(var(--dark-rgb), 0.98);
    backdrop-filter: blur(25px);
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
    padding: 30px 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 20px;
    margin-bottom: 15px;
    background: rgba(var(--secondary-light), 0.4);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(10px);
}

.mobile-nav-link:hover {
    color: var(--dark);
    background: var(--gradient);
    transform: translateX(15px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.mobile-nav-link.active {
    color: var(--dark);
    background: var(--gradient);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(var(--primary-rgb), 0.2) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 10s infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 40px;
    background: rgba(var(--dark-rgb), 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: var(--shadow-xl);
    animation: hero-fade-in 1s ease-out;
    margin: 0 auto;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title, .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--accent) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-lighter);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
}

.stat-item {
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(var(--secondary-light), 0.6);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.countdown-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-finished {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    background: rgba(var(--success), 0.1);
    border: 2px solid var(--success);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, var(--primary) 0, var(--primary) 1px, transparent 1px, transparent 15px);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-title p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-lighter);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--secondary);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.gallery-item.active {
    opacity: 1;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item.active img {
    transform: scale(1.05);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 40px;
    border-radius: 20px;
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.indicator:hover:not(.active) {
    background: rgba(255, 215, 0, 0.5);
    border-color: #ffd700;
    transform: scale(1.2);
}

.features {
    padding: 4rem 2rem;
    background: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.feature-card {
    background: rgba(var(--secondary-light), 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius-xl);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 30px;
    font-size: 2.5rem;
    color: var(--dark);
    transition: var(--transition-slow);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
    filter: blur(30px);
    transform: scale(1.2);
}

.feature-card h3, .feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card p, .feature-description {
    font-size: 1.05rem;
    color: var(--gray-lighter);
    line-height: 1.8;
}

.lightbox {
    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: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightbox-zoom 0.3s ease-out;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--gradient);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.music-toggle-btn {
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.music-toggle-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--light-rgb), 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: var(--transition);
}

.music-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.music-toggle-btn:hover::before {
    transform: scale(1.5);
}

.music-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(var(--dark-rgb), 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--border-radius-xl);
    padding: 25px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.music-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.music-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.music-btn {
    background: rgba(var(--secondary-light), 0.5);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.music-btn:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.music-btn:active {
    transform: scale(0.95);
}

.volume-control {
    width: 100%;
}

.volume-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.volume-slider {
    width: 100%;
    height: 8px;
    background: rgba(var(--secondary-light), 0.5);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 1200px) {
    .navbar-inner {
        gap: 20px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-container {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar-inner {
        justify-content: space-between;
    }
    
    .nav-actions {
        position: relative;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 50px 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .countdown-container {
        gap: 20px;
    }
    
    .countdown-box {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        height: 75px;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .hero-title, .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-box {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-title {
        font-size: 36px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 12px;
        padding: 10px 25px;
    }
    
    .gallery-container {
        height: 400px;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .gallery-indicators {
        bottom: 20px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .music-control {
        bottom: 20px;
        right: 20px;
    }
    
    .music-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title, .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .gallery-container {
        height: 300px;
    }
    
    .gallery-section .section-title {
        font-size: 28px;
    }
    
    .gallery-section .section-tag::before,
    .gallery-section .section-tag::after {
        display: none;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .music-panel {
        bottom: 70px;
        right: -10px;
        min-width: 200px;
        padding: 20px;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}