        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
            overflow-x: hidden;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }
        
        .game-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(10px);
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
        }
        
        .trailer-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
            border-radius: 1rem;
        }
        
        .trailer-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .newsletter-input {
            background: rgba(226, 232, 240, 0.1);
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            background: rgba(226, 232, 240, 0.2);
        }
        
        .social-icon {
            transition: transform 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
        }
        
        .scroll-hidden::-webkit-scrollbar {
            display: none;
        }
        
        .scroll-hidden {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }





        /* 🌈 Tema Padrão — Estrutura Base */
:root {
  --color-bg: #0f172a;
  --color-surface: #1e293b;
  --color-border: #334155;
  --color-text: #e2e8f0;
  --color-primary: #6366f1;
  --color-primary-hover: #818cf8;
  --color-accent: #a78bfa;
}

/* 🟣 Tema Roxo */
.theme-purple {
  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-accent: #c084fc;
  --color-bg: #1e1b4b;
  --color-surface: #312e81;
  --color-border: #4338ca;
  --color-text: #ede9fe;
}

/* 🔵 Tema Azul */
.theme-blue {
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-accent: #93c5fd;
  --color-bg: #0c4a6e;
  --color-surface: #1e3a8a;
  --color-border: #2563eb;
  --color-text: #e0f2fe;
}

/* 🟢 Tema Verde */
.theme-green {
  --color-primary: #22c55e;
  --color-primary-hover: #4ade80;
  --color-accent: #86efac;
  --color-bg: #064e3b;
  --color-surface: #065f46;
  --color-border: #10b981;
  --color-text: #ecfdf5;
}

/* 🔴 Tema Vermelho */
.theme-red {
  --color-primary: #ef4444;
  --color-primary-hover: #f87171;
  --color-accent: #fca5a5;
  --color-bg: #450a0a;
  --color-surface: #7f1d1d;
  --color-border: #b91c1c;
  --color-text: #fee2e2;
}

/* 🟠 Tema Laranja */
.theme-orange {
  --color-primary: #f97316;
  --color-primary-hover: #fb923c;
  --color-accent: #fdba74;
  --color-bg: #431407;
  --color-surface: #7c2d12;
  --color-border: #c2410c;
  --color-text: #fff7ed;
}

/* 🟡 Tema Dourado (era Marrom) */
.theme-gold {
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-accent: #fde68a;
  --color-bg: #1c1400;
  --color-surface: #292000;
  --color-border: #d97706;
  --color-text: #fef9c3;
}

/* 🩵 Tema Ciano */
.theme-cyan {
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-accent: #a5f3fc;
  --color-bg: #042f2e;
  --color-surface: #0f3d3d;
  --color-border: #0891b2;
  --color-text: #ecfeff;
}

/* 🌸 Tema Rosa */
.theme-pink {
  --color-primary: #ec4899;
  --color-primary-hover: #f472b6;
  --color-accent: #fbcfe8;
  --color-bg: #2d0a18;
  --color-surface: #4a1028;
  --color-border: #be185d;
  --color-text: #fdf2f8;
}

/* 💜 Tema Violeta */
.theme-violet {
  --color-primary: #7c3aed;
  --color-primary-hover: #8b5cf6;
  --color-accent: #c4b5fd;
  --color-bg: #1e0a3c;
  --color-surface: #2d1060;
  --color-border: #6d28d9;
  --color-text: #f5f3ff;
}

/* 🩶 Tema Grafite */
.theme-grafite {
  --color-primary: #71717a;
  --color-primary-hover: #a1a1aa;
  --color-accent: #d4d4d8;
  --color-bg: #09090b;
  --color-surface: #18181b;
  --color-border: #3f3f46;
  --color-text: #f4f4f5;
}

/* 🌊 Tema Oceano */
.theme-ocean {
  --color-primary: #0d9488;
  --color-primary-hover: #14b8a6;
  --color-accent: #99f6e4;
  --color-bg: #032320;
  --color-surface: #0a3330;
  --color-border: #0f766e;
  --color-text: #f0fdfa;
}

/* 🪻 Tema Lavanda */
.theme-lavender {
  --color-primary: #a855f7;
  --color-primary-hover: #c084fc;
  --color-accent: #e9d5ff;
  --color-bg: #1a0533;
  --color-surface: #280844;
  --color-border: #9333ea;
  --color-text: #faf5ff;
}

/* 🪸 Tema Coral */
.theme-coral {
  --color-primary: #f43f5e;
  --color-primary-hover: #fb7185;
  --color-accent: #fda4af;
  --color-bg: #1f0010;
  --color-surface: #350118;
  --color-border: #e11d48;
  --color-text: #fff1f2;
}

/* 🍋 Tema Lima */
.theme-lime {
  --color-primary: #84cc16;
  --color-primary-hover: #a3e635;
  --color-accent: #d9f99d;
  --color-bg: #0f1a00;
  --color-surface: #1a2e00;
  --color-border: #65a30d;
  --color-text: #f7fee7;
}

/* 💎 Tema Esmeralda */
.theme-teal {
  --color-primary: #0d9488;
  --color-primary-hover: #14b8a6;
  --color-accent: #5eead4;
  --color-bg: #001a18;
  --color-surface: #002a26;
  --color-border: #0f766e;
  --color-text: #f0fdfa;
}

/* 🔷 Tema Safira */
.theme-sapphire {
  --color-primary: #4f46e5;
  --color-primary-hover: #6366f1;
  --color-accent: #a5b4fc;
  --color-bg: #020617;
  --color-surface: #0f172a;
  --color-border: #3730a3;
  --color-text: #e0e7ff;
}

/* 🔧 Aplicação Global */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Links, botões e gradientes */
a, button {
  color: var(--color-primary);
  transition: all 0.3s ease;
}
a:hover, button:hover {
  color: var(--color-primary-hover);
}

.bg-theme-bg { background-color: var(--color-bg); }
.bg-theme-surface { background-color: var(--color-surface); }
.border-theme { border-color: var(--color-border); }
.text-theme { color: var(--color-text); }

.btn-theme {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.btn-theme:hover {
  background-color: var(--color-primary-hover);
}