:root {
    /* Warm, cheerful palette matching hero image - replacing all purples */
    --primary-warm: #FF8C42;
    --primary-warm-dark: #E17055;
    --secondary-warm: #FFD700;
    --accent-warm: #FF6B6B;
    --soft-green: #90EE90;
    --soft-blue: #87CEEB;
    --warm-yellow: #FFD700;
    --warm-orange: #FF8C42;
    --warm-coral: #FF6B6B;
    --warm-brown: #D4A574;
    --warm-green: #A8E6CF;
    /* Dark theme with warm undertones */
    --dark-bg: #1A1818;
    --dark-surface: #2A2525;
    --dark-surface-light: #3A3232;
    --text-primary: #FFFFFF;
    --text-secondary: #F5F5DC;
    --text-muted: #D4A574;
    /* Warm gradients */
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%);
    --gradient-2: linear-gradient(135deg, #90EE90 0%, #87CEEB 100%);
    --gradient-3: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
    --warm-gradient: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    position: relative;
}

/* Ensure no scrollbar affects viewport width */
body::-webkit-scrollbar {
    width: 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero container should not have padding that creates margins */
.hero .container {
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: calc(16px + 16px);
    right: 24px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 37, 37, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 140, 66, 0.15);
}

.lang-btn.active {
    background: var(--gradient-1);
    color: #1A1818;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 24, 24, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
    padding: 16px 0;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    opacity: 0.85;
    z-index: 0;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 30, 0.4) 0%,
        rgba(15, 15, 30, 0.6) 50%,
        rgba(15, 15, 30, 0.7) 100%
    );
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--warm-gradient);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #F5F5DC;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%);
    color: #1A1A2E;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFE700 0%, #FFA042 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-coming-soon {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.coming-soon-badge {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%);
    color: #1A1A2E;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 140, 66, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 40px rgba(255, 215, 0, 0.5),
            0 0 20px rgba(255, 140, 66, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 50px rgba(255, 215, 0, 0.7),
            0 0 30px rgba(255, 140, 66, 0.5);
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--dark-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--dark-surface-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--warm-orange);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.25);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* For Players Section */
.for-players {
    background: var(--dark-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.content-card {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: var(--warm-orange);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.25);
}

.content-number {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    margin-top: 16px;
}

.content-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* For Creators Section */
.for-creators {
    background: var(--dark-surface);
}

/* Highlights Section */
.highlights {
    background: var(--dark-bg);
    padding: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.highlight-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--dark-surface);
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: var(--warm-orange);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.25);
}

.highlight-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
    filter: grayscale(0.2);
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-label {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--dark-surface);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-contact {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--warm-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--warm-yellow);
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .features-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .language-switcher {
        top: calc(16px + 16px);
        right: 16px;
        transform: translateY(-50%);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-badge {
        font-size: 18px;
        padding: 12px 32px;
    }
}

