/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b7355;
    --secondary-color: #6b8e5a;
    --accent-color: #d4af37;
    --dark-bg: #0a0f0a;
    --dark-card: #1a1f1a;
    --dark-card-hover: #252a25;
    --text-primary: #e8e8e0;
    --text-secondary: #9a9a8a;
    --forest-green: #2d4a2d;
    --forest-dark: #1a2e1a;
    --mist-color: rgba(200, 220, 200, 0.1);
    --armor-gold: #d4af37;
    --armor-brass: #b8860b;
    --gradient-1: linear-gradient(135deg, #8b7355 0%, #6b8e5a 50%, #4a6b3a 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --gradient-3: linear-gradient(135deg, #2d4a2d 0%, #1a2e1a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 15, 10, 0.95) 0%, rgba(26, 31, 26, 0.8) 100%);
    --gradient-forest: linear-gradient(135deg, rgba(45, 74, 45, 0.3) 0%, rgba(26, 46, 26, 0.5) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(at 20% 30%, rgba(45, 74, 45, 0.15) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(26, 46, 26, 0.2) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(200, 220, 200, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(45, 74, 45, 0.03) 2px, rgba(45, 74, 45, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(26, 46, 26, 0.02) 2px, rgba(26, 46, 26, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

body.has-beta-banner {
    padding-top: 50px;
}

/* Beta Banner */
.beta-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.95) 0%, rgba(26, 46, 26, 0.95) 100%);
    z-index: 10001;
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.beta-banner.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.beta-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.beta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.beta-banner-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.beta-banner-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.beta-banner-link:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.beta-banner-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.beta-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body.has-beta-banner .navbar {
    top: 50px;
}

.navbar.scrolled {
    background: rgba(10, 15, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    margin: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-link:hover .logo-img {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

.logo-link:hover .logo {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-download-btn {
    background: var(--gradient-2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--armor-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-toggle {
    background: var(--gradient-3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 74, 45, 0.4);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 74, 45, 0.6);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(1px);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(45, 74, 45, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(26, 46, 26, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(200, 220, 200, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 74, 45, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 46, 26, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 220, 200, 0.15) 0%, transparent 70%);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    margin-top: 5rem;
}


@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #e8e8e0 0%, #d4af37 30%, #8b7355 60%, #6b8e5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.4), 0 0 40px rgba(107, 142, 90, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}


.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.download-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.download-btn.secondary svg {
    width: 20px;
    height: 20px;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(10, 15, 10, 0.8) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(200, 220, 200, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(200, 220, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.download-btn {
    border: none;
    color: white;
    padding: 1.4rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.download-btn.primary {
    background: var(--gradient-2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    min-width: 280px;
    justify-content: center;
    font-family: 'Cinzel', serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.download-btn:hover::before {
    width: 400px;
    height: 400px;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6), 0 0 0 10px rgba(212, 175, 55, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.7);
}

.download-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.download-btn:hover .btn-shine {
    left: 100%;
    transition: left 0.6s;
}

.download-message {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.2) 0%, rgba(26, 46, 26, 0.25) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    animation: slideDown 0.5s ease-out;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.download-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary-color);
    animation: bounceIcon 1s ease-in-out infinite;
}

.download-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-message p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.download-message a {
    color: var(--armor-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--armor-gold);
    transition: all 0.3s ease;
}

.download-message a:hover {
    color: var(--armor-gold);
    border-bottom-color: var(--armor-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}


/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b7355 50%, #6b8e5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.9) 0%, rgba(10, 15, 10, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3), 0 0 0 2px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border-color: var(--armor-gold);
    background: linear-gradient(135deg, rgba(37, 42, 37, 0.95) 0%, rgba(26, 31, 26, 0.98) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatIcon 3s ease-in-out infinite;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: var(--armor-gold);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
    }
}

.feature-card:hover .feature-icon svg {
    color: var(--armor-gold);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1));
    transform: scale(1.15) rotate(10deg);
    animation: iconPulseHover 1s ease-in-out infinite;
}

@keyframes iconPulseHover {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 1));
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: rgba(99, 102, 241, 0.05);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.screenshot-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(212, 175, 55, 0.2), 0 0 0 2px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border-color: var(--armor-gold);
}

.screenshot-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.screenshot-card:hover .screenshot-image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.screenshots-disclaimer {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(26, 31, 26, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Gameplay Section */
.gameplay-section {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 10, 21, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.gameplay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(45, 74, 45, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gameplay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(45, 74, 45, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--armor-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.section-label-center {
    display: block;
    text-align: center;
    padding: 0.5rem 1.2rem;
    background: rgba(45, 74, 45, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--armor-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 1.5rem;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.section-title-left {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e8e8e0 0%, #d4af37 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.gameplay-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.gameplay-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gameplay-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gameplay-visual {
    position: relative;
}

.gameplay-visual-design {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.9) 0%, rgba(10, 15, 10, 0.95) 100%);
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(212, 175, 55, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.gameplay-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(45, 74, 45, 0.02) 2px, rgba(45, 74, 45, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.gameplay-frame-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 74, 45, 0.3) 0%, rgba(26, 46, 26, 0.5) 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.gameplay-scene {
    width: 100%;
    height: 100%;
    position: relative;
}

.scene-knight {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.6) 0%, rgba(107, 142, 90, 0.4) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 85% 20%, 90% 40%, 85% 60%, 80% 80%, 75% 100%, 25% 100%, 20% 80%, 15% 60%, 10% 40%, 15% 20%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: knightIdle 3s ease-in-out infinite;
}

.scene-knight::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.scene-knight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.8) 0%, rgba(107, 142, 90, 0.6) 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
}

@keyframes knightIdle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

.scene-forest {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(45, 74, 45, 0.4) 50%, rgba(26, 46, 26, 0.6) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(107, 142, 90, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 142, 90, 0.3) 0%, transparent 50%);
}

.scene-forest::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, rgba(45, 74, 45, 0.8) 0%, rgba(26, 46, 26, 1) 100%);
    clip-path: polygon(40% 0%, 60% 0%, 70% 20%, 75% 40%, 80% 60%, 85% 80%, 90% 100%, 10% 100%, 15% 80%, 20% 60%, 25% 40%, 30% 20%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.scene-forest::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 100px;
    height: 140px;
    background: linear-gradient(180deg, rgba(45, 74, 45, 0.8) 0%, rgba(26, 46, 26, 1) 100%);
    clip-path: polygon(35% 0%, 65% 0%, 75% 15%, 80% 35%, 85% 55%, 88% 75%, 92% 100%, 8% 100%, 12% 75%, 15% 55%, 20% 35%, 25% 15%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.scene-mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(200, 220, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(200, 220, 200, 0.15) 0%, transparent 50%);
    animation: mistFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mistFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px);
    }
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: var(--dark-card);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--armor-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--armor-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Requirements Section */
.requirements-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.requirements-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.requirements-card:hover {
    border-color: var(--armor-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.requirements-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirements-list li {
    padding: 1rem;
    background: rgba(45, 74, 45, 0.1);
    border-left: 3px solid var(--armor-gold);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    background: rgba(45, 74, 45, 0.2);
    transform: translateX(5px);
    border-left-color: var(--armor-gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Trailer Modal */
.trailer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.trailer-modal.active {
    display: flex;
}

.trailer-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.trailer-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.trailer-close:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.trailer-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-secondary);
}

.video-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    opacity: 0.5;
}

.video-placeholder p {
    font-size: 1.2rem;
}

/* Testers Page Styles */
.testers-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.testers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testers-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.testers-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.testers-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e8e8e0 0%, #d4af37 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.testers-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.testers-info {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testers-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testers-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testers-visual {
    display: flex;
    justify-content: center;
}

.testers-card {
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.8) 0%, rgba(5, 5, 16, 0.9) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    width: 100%;
}

.testers-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testers-card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.testers-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testers-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.testers-code {
    padding: 100px 0;
    background: var(--dark-card);
}

.code-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.code-display {
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.3) 0%, rgba(26, 46, 26, 0.4) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 15px;
    padding: 1.5rem 3rem;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Cinzel', serif;
    letter-spacing: 5px;
    color: var(--armor-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.code-copy-btn {
    background: var(--gradient-2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-family: 'Cinzel', serif;
}

.code-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.7);
}

.code-copy-btn svg {
    width: 20px;
    height: 20px;
}

.code-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testers-benefits {
    padding: 100px 0;
    background: var(--dark-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--armor-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.testers-requirements {
    padding: 100px 0;
    background: var(--dark-card);
}

.testers-req-content {
    max-width: 900px;
    margin: 0 auto;
}

.testers-req-desc {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.testers-req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testers-req-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.testers-req-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.testers-req-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testers-req-card li {
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
}

.testers-req-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--armor-gold);
    font-weight: 700;
}

.testers-cta {
    padding: 100px 0;
    background: var(--dark-bg);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
}

/* Launcher Download Section */
.launcher-download {
    padding: 100px 0;
    background: var(--dark-card);
}

.launcher-download-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.launcher-download-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.launcher-download-btn {
    min-width: 300px;
    justify-content: center;
    gap: 1rem;
}

.launcher-download-message {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.2) 0%, rgba(26, 46, 26, 0.25) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    animation: slideDown 0.5s ease-out;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.launcher-download-message p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.launcher-download-message a {
    color: var(--armor-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--armor-gold);
    transition: all 0.3s ease;
}

.launcher-download-message a:hover {
    color: var(--armor-gold);
    border-bottom-color: var(--armor-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--armor-gold);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-beta-link {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-beta-link a {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(45, 74, 45, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-beta-link a:hover {
    color: var(--armor-gold);
    background: rgba(45, 74, 45, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.footer-beta-link svg {
    color: var(--armor-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        margin-top: 3rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-left {
        font-size: 2.5rem;
    }
    
    .download-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-btn.secondary {
        justify-content: center;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-copyright {
        grid-column: 1;
    }
    
    .nav-download-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .beta-banner-text {
        font-size: 0.85rem;
    }
    
    .beta-banner-link {
        font-size: 0.85rem;
    }
    
    .testers-title {
        font-size: 2.5rem;
    }
    
    .testers-content {
        grid-template-columns: 1fr;
    }
    
    .code-display {
        font-size: 1.8rem;
        padding: 1.2rem 2rem;
    }
    
    .testers-req-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .gameplay-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gameplay-visual-design {
        height: 300px;
    }
    
    .scene-knight {
        width: 80px;
        height: 120px;
        left: 10%;
    }
    
    .scene-forest::before,
    .scene-forest::after {
        width: 60px;
        height: 90px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-card {
        padding: 2rem;
    }
    
    .download-page-title {
        font-size: 2.5rem;
    }
    
    .download-page-message {
        font-size: 1.1rem;
    }
    
    .download-icon-large {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }
    
    .download-info-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* Download Page Styles */
.download-page-section {
    min-height: calc(100vh - 200px);
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 15, 10, 0.5) 100%);
}

.download-page-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    color: var(--armor-gold);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

.download-icon-large svg {
    width: 100%;
    height: 100%;
}

.download-page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e8e8e0 0%, #d4af37 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.download-page-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-page-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-page-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    background: rgba(26, 31, 26, 0.5);
}

.download-page-back:hover {
    color: var(--armor-gold);
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(26, 31, 26, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.download-page-info {
    margin-top: 4rem;
}

.download-info-card {
    background: linear-gradient(135deg, rgba(26, 31, 26, 0.8) 0%, rgba(10, 15, 10, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.download-info-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.download-info-card svg {
    color: var(--armor-gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.download-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
}

.download-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Fade in animations on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

