:root {
    --primary-color: #fbd38d;
    --secondary-color: #2d3748;
    --accent-color: #f56565;
    --background-dark: #0f172a;
    --background-light: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --success-color: #48bb78;
    --warning-color: #f59e0b;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global contact link styling (mailto + Discord) */
a[href^="mailto:"],
a[href*="discord.gg"],
a[href*="discord.com"] {
    color: var(--primary-color);
}

a[href^="mailto:"]:hover,
a[href*="discord.gg"]:hover,
a[href*="discord.com"]:hover {
    color: #f6ad55;
}

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

/* Featured Partner Section */
.featured-partner-section {
    padding: 2rem 0;
    background: var(--background-dark);
}

/* Featured Partner Card in Hero */
.featured-partner-card {
    background: linear-gradient(135deg, rgba(251, 211, 141, 0.1), rgba(251, 211, 141, 0.05));
    border: 1px solid rgba(251, 211, 141, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.featured-partner-carousel {
    position: relative;
}

.featured-partner-slides {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.featured-partner-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-partner-slide.active {
    display: block;
    opacity: 1;
}

.featured-partner-progress {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(251, 211, 141, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.featured-partner-progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
    animation: progressAnimation 5s linear infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Mobile App Install Callout */
.mobile-install-callout {
    background: linear-gradient(135deg, rgba(251, 211, 141, 0.1), rgba(251, 211, 141, 0.05));
    border: 1px solid rgba(251, 211, 141, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-install-callout:hover {
    transform: translateY(-1px);
    border-color: rgba(251, 211, 141, 0.4);
}

.mobile-install-icon {
    background: var(--primary-color);
    color: var(--background-dark);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mobile-install-content {
    flex: 1;
}

.mobile-install-content h3 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.mobile-install-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .mobile-install-callout {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .mobile-install-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .mobile-install-content h3 {
        font-size: 0.85rem;
    }
    
    .mobile-install-content p {
        font-size: 0.75rem;
    }
    
    .btn-small {
        width: 100%;
        justify-content: center;
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* Featured Partner Card smaller on mobile */
    .featured-partner-card {
        margin-top: 0.75rem;
        padding: 0.75rem;
        max-width: 320px;
    }
    
    .featured-partner-header {
        margin-bottom: 0.5rem;
    }
    
    .featured-partner-eyebrow {
        font-size: 0.75rem;
    }
    
    .featured-partner-logo {
        height: 40px;
        width: 40px;
    }
    
    .featured-partner-text h3 {
        font-size: 0.9rem;
    }
    
    .featured-partner-text p {
        font-size: 0.75rem;
    }
}

.featured-partner-progress-bar.paused {
    animation-play-state: paused;
}

.featured-partner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 211, 141, 0.3);
}

.featured-partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.featured-partner-eyebrow {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-partner-eyebrow i {
    font-size: 0.625rem;
}

.featured-partner-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}


.featured-partner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.featured-partner-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.featured-partner-text {
    flex: 1;
}

.featured-partner-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.featured-partner-text p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.featured-partner-text p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.featured-partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, background 0.2s ease;
    border-radius: 8px;
    padding: 0.25rem;
}

.featured-partner-link:hover {
    background: rgba(251, 211, 141, 0.05);
    transform: translateY(-1px);
}

.featured-partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease;
    margin-top: 0.5rem;
}

.featured-partner-link:hover .featured-partner-cta {
    gap: 0.75rem;
}

.featured-partner-arrow-right {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    margin-left: auto;
}

.featured-partner-link:hover .featured-partner-arrow-right {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .featured-partner-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .featured-partner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .featured-partner-logo {
        height: 48px;
    }
    
    .featured-partner-text h3 {
        font-size: 1rem;
    }
    
    .featured-partner-text p {
        font-size: 0.8125rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(251, 211, 141, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn-secondary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.nav-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #f6ad55);
    color: var(--background-dark);
    border: 2px solid var(--primary-color);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 211, 141, 0.3);
}

@keyframes statusColorChange {
    0% {
        background-position: 0% 50%;
        border-color: #48bb78;
    }
    15% {
        background-position: 0% 50%;
        border-color: #48bb78;
    }
    35% {
        background-position: 50% 50%;
        border-color: #f59e0b;
    }
    50% {
        background-position: 50% 50%;
        border-color: #f59e0b;
    }
    65% {
        background-position: 100% 50%;
        border-color: #f56565;
    }
    85% {
        background-position: 100% 50%;
        border-color: #f56565;
    }
    100% {
        background-position: 0% 50%;
        border-color: #48bb78;
    }
}

/* Animated Status button: cycles green → orange → red with subtle pulse */
.nav-btn-status {
    border-color: #48bb78; /* start green */
    color: #f8fafc;
    background: rgba(255,255,255,0.04);
    animation: statusColorChange 6s linear infinite, statusPulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
.nav-btn-status:hover {
    transform: translateY(-1px) scale(1.01);
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.35); }
  33% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15); }
  66% { box-shadow: 0 0 0 6px rgba(245, 101, 101, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.0); }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 211, 141, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Title */
.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight,
#animated-title .highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Typewriter effect */
#animated-title {
    position: relative;
    min-height: 3rem;
}

#animated-title::after {
    content: '|';
    color: #fbbf24;
    font-weight: bold;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 1.1rem;
}

.robot-icon, .money-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.mr-2 {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #f6ad55);
    color: var(--background-dark);
}

/* Ensure Discord invite CTA (gold primary button) keeps dark text instead of gold link color */
a.btn-primary[href*="discord.com"],
a.btn-primary[href*="discord.gg"] {
    color: var(--background-dark);
}

a.btn-primary[href*="discord.com"] i,
a.btn-primary[href*="discord.com"] .robot-icon,
a.btn-primary[href*="discord.gg"] i,
a.btn-primary[href*="discord.gg"] .robot-icon {
    color: var(--background-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 211, 141, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
}

/* Hero Discord info bubble */
.btn-discord {
    position: relative;
    /* Override gold secondary button to Discord brand */
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: #ffffff;
    border: 2px solid transparent;
}

/* Make sure hero Discord button text is white, overriding global Discord link color */
a.btn.btn-secondary.btn-discord[href*="discord.gg"],
a.btn.btn-secondary.btn-discord[href*="discord.com"] {
    color: #ffffff;
}

.btn-discord .btn-text {
    color: #ffffff;
}

.btn-discord .info-bubble {
    position: absolute;
    bottom: -6px;
    right: -6px;
    transform: translate(100%, 0);
    background: rgba(15, 23, 42, 0.95);
    color: #e2e8f0;
    border: 1px solid rgba(251, 211, 141, 0.35);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.85rem;
    line-height: 1.3;
    max-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(251, 211, 141, 0));
    animation: bubbleIn 600ms ease forwards 800ms, bubblePulse 2600ms ease-in-out infinite 1.6s;
}

.btn-discord .info-bubble::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -6px;
    width: 0; height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid rgba(15, 23, 42, 0.95);
}

.btn-discord:hover .info-bubble {
    animation-play-state: running;
    opacity: 1;
}

@keyframes bubbleIn {
  0%   { opacity: 0; transform: translate(100%, 6px) scale(0.98); }
  60%  { opacity: 1; transform: translate(100%, 0) scale(1.02); }
  100% { opacity: 1; transform: translate(100%, 0) scale(1); }
}

@keyframes bubblePulse {
  0%,100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); filter: drop-shadow(0 0 0 rgba(251, 211, 141, 0.0)); }
  50%     { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45); filter: drop-shadow(0 0 8px rgba(251, 211, 141, 0.35)); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-discord .info-bubble { animation: none; opacity: 1; }
}

/* Ensure icon/text stay white and hover matches streamer Discord buttons */
.btn-discord i { color: #ffffff; }
.btn.btn-secondary.btn-discord:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #ffffff;
}

/* Donate button (green, glow, floating) to match dashboard */
.btn-donate {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #0f172a;
    position: relative;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.0);
    animation: donateFloat 3s ease-in-out infinite, donateGlow 2.4s ease-in-out infinite;
}
.btn-donate i {
    color: #0f172a;
}
.btn-donate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35), 0 0 16px rgba(34, 197, 94, 0.45);
}
@keyframes donateFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
@keyframes donateGlow {
  0%, 100% { box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25), 0 0 10px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45), 0 0 18px rgba(34, 197, 94, 0.55); }
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.mr-2 {
    margin-right: 8px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.floating-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Hero carousel arrows */
.hero-carousel {
    position: relative;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(251, 211, 141, 0.5);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2;
}
.hero-arrow:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.05);
}
.hero-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.hero-arrow.prev { left: -12px; }
.hero-arrow.next { right: -12px; }

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 211, 141, 0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Age Verification Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.age-gate-modal {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px 24px;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(251, 211, 141, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.age-gate-modal h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.age-gate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.age-gate-actions .btn {
    min-width: 160px;
}

.age-gate-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.85;
}

@media (max-width: 480px) {
  .age-gate-modal {
    padding: 24px 18px;
  }

  .age-gate-actions .btn {
    width: 100%;
  }
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-light), var(--background-dark));
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 211, 141, 0.05), transparent 70%);
    pointer-events: none;
}

.video-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(251, 211, 141, 0.1), rgba(251, 211, 141, 0.05));
    border: 2px solid rgba(251, 211, 141, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 211, 141, 0.5);
    box-shadow: 0 10px 30px rgba(251, 211, 141, 0.2);
}

.trailer-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-play-overlay-inner {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 2px solid rgba(251, 211, 141, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.video-container:hover .video-play-overlay {
    transform: scale(1.01);
}

.video-container:hover .video-play-overlay-inner {
    border-color: rgba(251, 211, 141, 0.95);
    background: rgba(15, 23, 42, 0.85);
}

.video-container.is-playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-fallback {
    padding: 3rem 2rem;
    text-align: center;
}

.video-fallback .video-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.video-fallback h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Hide fallback when video is available */
.video-container.has-video .video-fallback {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        margin: 0 1rem;
    }
    
    .video-fallback {
        padding: 2rem 1.5rem;
    }
    
    .video-fallback .video-icon {
        font-size: 3rem;
    }
    
    .video-fallback h2 {
        font-size: 1.5rem;
    }
}

/* Stats Section */
.stats {
    padding: 40px 0 10px;
    background: var(--background-dark);
}

.stats-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(30,64,175,0.9));
    border: 1px solid rgba(251, 211, 141, 0.25);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #fbbf24, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(226, 232, 240, 0.85);
    margin: 0;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.stats-subtext {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
  .stats-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-dark);
}

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

.feature-card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 211, 141, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #f6ad55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--background-dark);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

/* About (Our Story) Section */
.about {
    padding: 80px 0;
    background: var(--background-dark); /* match streamers section */
}

.about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(251, 211, 141, 0.15);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.about-lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-badges .badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(251, 211, 141, 0.08);
    border: 1px solid rgba(251, 211, 141, 0.25);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.about-illustration {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .partner-requirements {
        display: block !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .partner-requirements-toggle {
        width: 100% !important;
    }

    .partner-requirements-panel {
        position: static !important;
        width: 100% !important;
        margin: 8px auto 0 auto !important;
        padding: 10px 12px !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }

    .partner-requirements.open .partner-requirements-panel {
        display: block !important;
    }

    /* Centreer Discord bubble op mobiel */
    .btn-discord {
        position: relative !important;
        margin-bottom: 60px !important;
        z-index: 20 !important;
    }

    .btn-discord .info-bubble {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: calc(100vw - 40px) !important;
        text-align: center !important;
        white-space: normal !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 8px !important;
        z-index: 30 !important;
    }

    .mobile-install-callout {
        position: relative;
        z-index: 1;
    }

    .btn-discord .info-bubble::after {
        display: none !important;
    }

    /* Verplaats hero-visual naar beneden op mobiel */
    .hero-visual {
        margin-top: 60px !important;
    }
}

.floating-about-image {
    position: relative;
    animation: float 6s ease-in-out infinite; /* reuse existing keyframes */
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 211, 141, 0.2);
}

/* Partners Section (modern layout) */
.partners {
    padding: 60px 0;
    background: var(--background-dark);
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.partners-text {
    flex: 0 0 380px;
}

.partners-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
    margin-bottom: 6px;
}

.partners-text h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: left;
}

.partners-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 520px;
}

.partner-requirements {
    margin-top: 16px;
    position: relative;
    display: inline-block;
}

.partner-requirements-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.partner-requirements-toggle .icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color);
    font-size: 0.75rem;
}

.partner-requirements-toggle .chevron {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.partner-requirements-toggle:hover {
    background: rgba(15, 23, 42, 1);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.partner-requirements.open .partner-requirements-toggle {
    border-color: var(--primary-color);
}

.partner-requirements.open .partner-requirements-toggle .chevron {
    transform: rotate(180deg);
}

.partner-requirements-panel {
    position: absolute;
    top: 110%;
    left: 0;
    z-index: 5;
    width: min(420px, 88vw);
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.partner-requirements.open .partner-requirements-panel {
    display: block;
}

.partners-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.partners-carousel {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.partner-slides {
    position: relative;
}

.partner-slide {
    display: none;
}

.partner-slide.active {
    display: block;
}

.partner-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 211, 141, 0.2);
}

.partner-progress {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    height: 3px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    overflow: hidden;
    z-index: 2;
}

.partner-progress-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #facc15, #f97316);
}

.partner-progress-bar.active {
    animation: partnerProgress 6s linear forwards;
}

@keyframes partnerProgress {
    0%   { width: 0%; }
    100% { width: 100%; }
}

.partners-cta {
    text-align: center;
}

.partners-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.partners-cta p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.partner-description {
    margin-top: 22px;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(251, 211, 141, 0.3);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--background-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.partner-cta-btn:hover {
    background: #f6ad55;
    transform: translateY(-2px);
}

.partner-cta-btn i {
    font-size: 0.85rem;
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 16px;
    border: 1px solid rgba(251, 211, 141, 0.2);
}

.testimonial-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-cta p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsible Gambling Logos Section */
.responsible-logos {
  padding: 40px 0 20px;
  background: var(--background-dark);
  border-top: 1px solid rgba(251, 211, 141, 0.08);
}

.responsible-logos-header {
  text-align: center;
  margin-bottom: 20px;
}

.responsible-logos-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.responsible-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.responsible-logo-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 16px 26px;
  min-width: 200px;
  max-width: 240px;
  min-height: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.responsible-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.responsible-logo-card.text-only {
  padding: 14px 20px;
}

.responsible-logo-card .text-badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.responsible-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  border-color: var(--primary-color);
}

@media (max-width: 640px) {
  .responsible-logos {
    padding-top: 30px;
  }

  .responsible-logo-card {
    flex: 1 1 calc(50% - 18px);
  }
}

/* Placeholder Text */
.placeholder-text {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--background-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--background-dark);
    border-top: 1px solid rgba(251, 211, 141, 0.1);
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.footer-badges {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(251, 211, 141, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--background-dark);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-container {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 211, 141, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Carousel Buttons */
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--background-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #f6ad55;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-btn:disabled:hover {
    background: var(--primary-color);
    transform: scale(1);
}

.testimonial-content {
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-content p {
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #f6ad55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    color: var(--warning-color);
}

.rating i {
    margin-left: 2px;
}

/* Discord Bot Section */
.discord-bot {
    padding: 80px 0;
    background: var(--background-dark);
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-left {
    text-align: left;
}

.text-left h2 {
    text-align: left;
}

.text-left p {
    text-align: left;
    margin: 0 auto 0 0;
}

.bot-features {
    margin: 30px 0;
}

.bot-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.bot-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #f6ad55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bot-feature h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

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

.bot-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bot-note {
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.bot-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bot-note i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Discord Preview */
.discord-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-discord-image {
    position: relative;
    animation: floatDiscord 6s ease-in-out infinite;
}

.discord-preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 211, 141, 0.2);
    transition: transform 0.3s ease;
}

.discord-preview-image:hover {
    transform: scale(1.05);
}

@keyframes floatDiscord {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}



/* How to get acces Section */
.how-to-get-acces {
    padding: 80px 0;
    background: var(--background-dark);
}

.how-to-get-acces-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.how-to-get-acces-info {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.creator-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.creator-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.how-to-get-acces-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.how-to-get-acces-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    border: 1px solid rgba(251, 211, 141, 0.1);
}

.how-to-get-acces-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #e53e3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.how-to-get-acces-item:nth-child(2) i {
    background: linear-gradient(135deg, var(--warning-color), #d69e2e);
}

.how-to-get-acces-item:nth-child(3) i {
    background: linear-gradient(135deg, var(--success-color), #38a169);
}

.how-to-get-acces-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.how-to-get-acces-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.how-to-get-acces-cta-single {
    margin-top: 20px;
}

/* Floating CTA button (not used for donate anymore) */
.how-to-get-acces-cta-single .btn-primary {
    animation: floatDonate 3s ease-in-out infinite;
    position: relative;
}

.how-to-get-acces-cta-single .btn-primary:hover {
    animation-play-state: paused;
}

/* Zorg dat de tekst in de how-to-get-acces kaarten netjes links uitlijnt */
.how-to-get-acces-item {
    text-align: left;
}

.how-to-get-acces-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--warning-color);
}

.how-to-get-acces-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.donation-note i {
    color: var(--warning-color);
    font-size: 1rem;
}

@keyframes floatDonate {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(251, 211, 141, 0.3);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(251, 211, 141, 0.5);
    }
}

.donation-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.donation-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--background-dark);
}

.faq-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab-btn.active,
.faq-tab-btn:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

.faq-content {
    position: relative;
}

.faq-tab {
    display: none;
}

.faq-tab.active {
    display: block;
}

.faq-item {
    background: var(--background-light);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(251, 211, 141, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(251, 211, 141, 0.05);
}

.faq-question h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}



/* Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .streamers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Medium screens (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streamers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-track {
        gap: 25px;
    }
}

/* Tablet and small desktop (768px and down) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--background-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 20px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(251, 211, 141, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-actions.active {
    right: 0;
}

/* Mobile menu overlay */
.nav-actions::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-actions.active::before {
    opacity: 1;
    visibility: visible;
}
    
    .nav-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title h1 {
        font-size: 2.2rem;
        min-height: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Features Section */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .partners-container {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .partners-text {
        flex: none;
        text-align: center;
    }

    .partners-text h2,
    .partners-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .partners-visual {
        justify-content: center;
    }

    .partners-header-row {
        flex-direction: column;
        align-items: stretch;
    }

    .partners-header-text {
        flex: none;
        text-align: center;
    }

    .partners-header-text h2,
    .partners-header-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Streamers Section */
    .streamers {
        padding: 60px 0;
    }
    
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .streamer-social {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-carousel {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        position: relative;
        z-index: 10;
    }
    
    .testimonials-container {
        width: 100%;
        overflow: hidden;
    }
    
    .testimonials-track {
        gap: 20px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 100%;
        flex-shrink: 0;
    }
    
    /* Discord Bot Section */
    .discord-bot {
        padding: 60px 0;
    }
    
    .discord-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .text-left {
        text-align: center;
    }
    
    .text-left h2 {
        text-align: center;
    }
    
    .text-left p {
        text-align: center;
        margin: 0 auto;
    }
    
    .bot-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .bot-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Donation Section */
    .donation {
        padding: 60px 0;
    }
    
    .donation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .donation-item {
        padding: 15px;
    }
    
    .help-cta {
        padding: 30px 20px;
    }
    
    /* FAQ Section */
    .faq {
        padding: 60px 0;
    }
    
    .faq-tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .faq-tab-btn {
        width: 200px;
    }
    
    /* CTA Section */
    .cta {
        padding: 60px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
    }
}

/* Mobile phones (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 10px 15px;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .nav-actions {
        width: 260px;
        padding: 70px 15px 20px;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title h1 {
        font-size: 1.8rem;
        min-height: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Features */
    .features {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Streamers */
    .streamers {
        padding: 40px 0;
    }
    
    .streamers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .streamer-card {
        padding: 20px;
    }
    
    .streamer-avatar {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .streamer-card h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-carousel {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonials-track {
        gap: 15px;
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 20px;
        min-width: 220px;
        max-width: calc(100vw - 40px);
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .rating {
        font-size: 0.8rem;
    }
    
    /* Discord Bot */
    .discord-bot {
        padding: 40px 0;
    }
    
    .discord-preview {
        margin: 0 -10px;
    }
    
    .discord-preview-image {
        border-radius: 10px;
    }
    
    .bot-feature {
        margin-bottom: 20px;
    }
    
    .bot-feature i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Donation */
    .donation {
        padding: 40px 0;
    }
    
    .creator-info h3 {
        font-size: 1.5rem;
    }
    
    .help-cta {
        padding: 25px 15px;
    }
    
    .help-cta h3 {
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-tab-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* CTA */
    .cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand img {
        height: 40px;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
}

/* Extra small phones (320px and down) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero-title h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .feature-card,
    .streamer-card,
    .testimonial-card {
        padding: 15px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-container {
        gap: 20px;
    }
    
    .hero-title h1 {
        font-size: 1.8rem;
        min-height: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .features,
    .streamers,
    .testimonials,
    .discord-bot,
    .donation,
    .faq,
    .cta {
        padding: 40px 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .discord-preview-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-actions,
    .carousel-btn,
    .bot-actions,
    .cta-actions {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .feature-card,
    .streamer-card,
    .testimonial-card,
    .donation-item {
        border: 1px solid #ccc;
        box-shadow: none;
    }
} 