﻿/* ========================================
   CULTURA CHUPÍSTICA - Estilo Borracho.cl
   ======================================== */

/* --- Variables y Estilos Globales --- */
:root {
    --bg-dark: #10101A;
    --bg-card: #1C1C29;
    --primary-neon: #FF00C7;
    --secondary-neon: #00E5FF;
    --accent-purple: #8A2BE2;
    --text-light: #F0F0F0;
    --text-dark: #A0A0B0;
    --font-main: 'Poppins', sans-serif;
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION (PORTADA)
   ======================================== */

.hero-section {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Patrón de fondo animado */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(69, 183, 209, 0.2) 0%, transparent 50%);
    animation: heroPattern 20s linear infinite;
    z-index: 1;
}

@keyframes heroPattern {
    0% { transform: rotate(0deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoEntrance 1.5s ease-out;
}

.main-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Emojis flotantes */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatEmoji 8s ease-in-out infinite;
    opacity: 0.7;
}

.floating-emoji:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-emoji:nth-child(2) { top: 60%; right: 10%; animation-delay: 1.5s; }
.floating-emoji:nth-child(3) { top: 30%; right: 20%; animation-delay: 3s; }
.floating-emoji:nth-child(4) { bottom: 20%; left: 20%; animation-delay: 4.5s; }

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    33% { transform: translateY(-30px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(15px) rotate(240deg); opacity: 0.5; }
}

.main-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.main-title .highlight {
    color: var(--secondary-neon);
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   BOTONES CTA
   ======================================== */

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-main);
}

.cta-button.primary {
    background-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--secondary-neon);
    border: 2px solid var(--secondary-neon);
}

.cta-button.secondary:hover {
    background-color: var(--secondary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* ========================================
   SECCIÓN DE JUEGOS
   ======================================== */

.games-section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark);
    text-align: center;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--secondary-neon);
    margin-bottom: 60px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TARJETAS DE JUEGO
   ======================================== */

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Borde neón animado */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 180deg at 50% 50%, var(--primary-neon), var(--secondary-neon), var(--primary-neon));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: spin 3s linear infinite paused;
}

.game-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.game-card:hover {
    transform: translateY(-10px);
}

/* Badge "Nuevo" */
.badge-nuevo {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: linear-gradient(135deg, #FF00C7, #8A2BE2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(255, 0, 199, 0.6);
    animation: badge-pulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 0, 199, 0.5); }
    50%       { box-shadow: 0 0 18px rgba(255, 0, 199, 0.9), 0 0 30px rgba(138, 43, 226, 0.4); }
}

.card-watermark {
    position: absolute;
    z-index: 0;
    bottom: -20px;
    right: -15px;
    width: 120px;
    opacity: 0.03;
    transform: rotate(-15deg);
    transition: opacity 0.4s ease;
}

.game-card:hover .card-watermark {
    opacity: 0.07;
}

.card-content {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    margin: 2px;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 4px);
}

.card-content h2,
.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-neon);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

.card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   BOTÓN DE LIKE / CORAZÓN
   ======================================== */

.like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.like-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.like-btn i {
    font-size: 1.2rem;
    color: #ff6b8a;
    transition: all 0.3s ease;
}

.like-btn.liked i {
    font-weight: 900;
    color: #ff2d55;
    animation: heartBeat 0.6s ease;
}

.like-btn .like-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    min-width: 20px;
    text-align: center;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive para el botón de like */
@media (max-width: 480px) {
    .like-btn {
        padding: 6px 10px;
    }

    .like-btn i {
        font-size: 1rem;
    }

    .like-btn .like-count {
        font-size: 0.8rem;
    }
}

/* ========================================
   SECCIÓN POR QUÉ ELEGIRNOS
   ======================================== */

.why-choose-section {
    padding: 100px 20px;
    text-align: center;
    background-image: url('../img/fondo.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 26, 0.85);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.why-choose-section .section-title,
.why-choose-section .benefits-grid {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: rgba(28, 28, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-neon);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 0, 199, 0.5);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer-section {
    background: linear-gradient(180deg, #0d0d14 0%, #080810 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    padding: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px 40px;
}

.footer-column h4 {
    color: var(--primary-neon);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list li i {
    color: var(--secondary-neon);
    font-size: 0.8rem;
}

.footer-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-list a:hover {
    color: var(--primary-neon);
    padding-left: 5px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-media a {
    color: var(--text-light);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-media a:hover {
    color: var(--bg-dark);
    background: var(--primary-neon);
    transform: translateY(-3px);
}

.footer-warning {
    background: rgba(255, 193, 7, 0.1);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding: 20px 30px;
    text-align: center;
}

.footer-warning p {
    color: #ffc107;
    font-size: 0.9rem;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.footer-warning i {
    margin-right: 8px;
}

.footer-bottom {
    padding: 25px 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.copyright a {
    color: var(--primary-neon);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px 30px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-list li {
        justify-content: center;
    }

    .social-media {
        justify-content: center;
    }

    .footer-warning {
        padding: 15px 20px;
    }

    .footer-warning p {
        font-size: 0.85rem;
    }
}

/* ========================================
   MODAL DE JUEGO
   ======================================== */

.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.game-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid rgba(255, 0, 199, 0.3);
    box-shadow: 0 0 40px rgba(255, 0, 199, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-neon);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-neon);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
    overflow: visible;
}

.modal-actions {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-actions .btn {
    width: 100%;
}

/* Botones del modal */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* ========================================
   CATEGORY SELECTOR
   ======================================== */

.category-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-selector h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--secondary-neon);
    transform: translateX(5px);
}

.category-btn i {
    font-size: 1.25rem;
    color: var(--secondary-neon);
}

/* Categorías especiales */
.category-btn.hot {
    border-color: rgba(255, 0, 199, 0.3);
}

.category-btn.hot:hover {
    background: rgba(255, 0, 199, 0.1);
    border-color: var(--primary-neon);
}

.category-btn.hot i {
    color: var(--primary-neon);
}

.category-btn.series i { color: #a855f7; }
.category-btn.series:hover { border-color: #a855f7; background: rgba(168, 85, 247, 0.1); }

.category-btn.animales i { color: #10b981; }
.category-btn.animales:hover { border-color: #10b981; background: rgba(16, 185, 129, 0.1); }

.category-btn.fiesta i { color: #f59e0b; }
.category-btn.fiesta:hover { border-color: #f59e0b; background: rgba(245, 158, 11, 0.1); }

.category-btn.confesiones i { color: #ec4899; }
.category-btn.confesiones:hover { border-color: #ec4899; background: rgba(236, 72, 153, 0.1); }

/* ========================================
   GAME TEXT / CARDS
   ======================================== */

.game-text {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.game-text.truth {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.game-text.dare {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.05);
}

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.game-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Cultura Chupística Card */
.cultura-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.pregunta-label {
    font-size: 0.9rem;
    color: var(--secondary-neon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pregunta-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ejemplo-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.ejemplo-text span {
    color: var(--primary-neon);
    font-weight: 600;
}

/* Drink Counter */
.drink-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.drink-counter i {
    color: var(--primary-neon);
}

/* Back to categories button */
.btn-back-categories {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.btn-back-categories:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-neon);
    color: var(--secondary-neon);
}

/* ========================================
   VERDAD O RETO
   ======================================== */

.choice-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.choice-btn {
    flex: 1;
    min-width: 140px;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    font-size: 1.1rem;
}

.choice-btn.truth {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.choice-btn.truth:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
}

.choice-btn.dare {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    border: none;
}

.choice-btn.dare:hover {
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
    transform: translateY(-3px);
}

/* ========================================
   RULETA
   ======================================== */

.roulette-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.roulette-wheel {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(
        #FF00C7 0deg 45deg,
        #00E5FF 45deg 90deg,
        #f59e0b 90deg 135deg,
        #10b981 135deg 180deg,
        #8b5cf6 180deg 225deg,
        #ef4444 225deg 270deg,
        #667eea 270deg 315deg,
        #ec4899 315deg 360deg
    );
    border: 4px solid var(--text-light);
    box-shadow: 0 0 30px rgba(255, 0, 199, 0.3);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.roulette-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--secondary-neon);
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.spin-btn {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: var(--bg-dark);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.spin-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 199, 0.5);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.roulette-result {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.roulette-result p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   QUIÉN ES MÁS PROBABLE
   ======================================== */

.probable-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.probable-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pointBounce 1s ease-in-out infinite;
}

@keyframes pointBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.probable-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.probable-instruction {
    font-size: 0.95rem;
    color: var(--primary-neon);
    font-weight: 600;
}

/* ========================================
   REY DE LA COPA (KING'S CUP)
   ======================================== */

.reycopa-intro {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.copa-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.reycopa-intro h3 {
    color: var(--secondary-neon);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.reycopa-intro p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.warning-text {
    color: var(--primary-neon) !important;
    font-weight: 600;
    margin-top: 1rem !important;
}

.carta-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.playing-card {
    width: 140px;
    height: 200px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: cardFlip 0.5s ease-out;
}

@keyframes cardFlip {
    0% { transform: rotateY(90deg) scale(0.8); }
    100% { transform: rotateY(0) scale(1); }
}

.playing-card.red { color: #dc2626; }
.playing-card.black { color: #1f2937; }

.card-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
}

.card-corner.top-left {
    top: 8px;
    left: 10px;
}

.card-corner.bottom-right {
    bottom: 8px;
    right: 10px;
    transform: rotate(180deg);
}

.card-value {
    font-size: 1.5rem;
    line-height: 1;
}

.card-suit {
    font-size: 1rem;
}

.card-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-suit-big {
    font-size: 3.5rem;
}

.carta-regla {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.carta-regla h4 {
    color: var(--secondary-neon);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.carta-regla h4 i {
    margin-right: 0.5rem;
}

.carta-regla p {
    color: var(--text-light);
    line-height: 1.5;
}

.rey-count {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 600;
    text-align: center;
}

.rey-alert {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    animation: alertPulse 0.5s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes cardShake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-5deg); }
    20% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    40% { transform: rotate(5deg); }
    50% { transform: rotate(-3deg); }
    60% { transform: rotate(3deg); }
    70% { transform: rotate(-2deg); }
    80% { transform: rotate(2deg); }
    90% { transform: rotate(-1deg); }
}

/* Reglas Extra del Rey de la Copa */
.regla-extra-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.regla-extra-card {
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.95));
    border: 3px solid var(--primary-neon);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.regla-extra-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.regla-extra-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.regla-extra-nombre {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.regla-extra-texto {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ========================================
   TRIVIA BORRACHA
   ======================================== */

.trivia-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.trivia-question {
    text-align: center;
    margin-bottom: 1.5rem;
}

.trivia-question i {
    font-size: 2.5rem;
    color: var(--secondary-neon);
    margin-bottom: 1rem;
    display: block;
}

.trivia-question p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.trivia-answer {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trivia-answer.hidden {
    display: none;
}

.trivia-answer.show {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.trivia-answer i {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: block;
}

.trivia-answer p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
}

.trivia-instruction {
    text-align: center;
    margin-bottom: 1rem;
}

.trivia-instruction p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ========================================
   BOMBA
   ======================================== */

.bomba-intro {
    text-align: center;
    padding: 1rem;
}

.bomba-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bombaFloat 2s ease-in-out infinite;
}

@keyframes bombaFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.bomba-intro h3 {
    color: var(--secondary-neon);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bomba-intro p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bomba-intro strong {
    color: var(--primary-neon);
}

.bomba-game {
    text-align: center;
}

.bomba-categoria {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.categoria-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bomba-categoria h3 {
    color: #f59e0b;
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.categoria-ejemplos {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-style: italic;
}

.bomba-visual {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.bomba-emoji {
    font-size: 5rem;
    animation: bombaShake 0.5s ease-in-out infinite;
}

@keyframes bombaShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    75% { transform: translateX(5px) rotate(5deg); }
}

.bomba-timer {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.timer-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
    border-radius: 6px;
    transition: width 0.1s linear;
}

.bomba-warning {
    color: var(--primary-neon);
    font-weight: 600;
    font-size: 1.1rem;
    animation: blink 0.5s ease-in-out infinite;
}

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

.bomba-explosion {
    text-align: center;
    padding: 2rem;
}

.explosion-emoji {
    font-size: 6rem;
    animation: explode 0.5s ease-out;
}

@keyframes explode {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

.bomba-explosion h3 {
    color: #ef4444;
    font-size: 2.5rem;
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.bomba-explosion p {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ========================================
   MEDUSA
   ======================================== */

.medusa-game {
    text-align: center;
    padding: 1rem;
}

.medusa-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.medusa-game h3 {
    color: var(--secondary-neon);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.medusa-rules {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.medusa-rules p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.medusa-rules strong {
    color: var(--text-light);
}

.medusa-drink {
    color: var(--primary-neon) !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem !important;
}

.medusa-start-btn {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.medusa-countdown {
    text-align: center;
    padding: 2rem;
}

.countdown-instruction {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.countdown-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--secondary-neon);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    animation: countdownPulse 0.5s ease-out;
}

@keyframes countdownPulse {
    0% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.medusa-look {
    text-align: center;
    padding: 2rem;
}

.look-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: eyesLook 0.3s ease-out;
}

@keyframes eyesLook {
    0% { transform: scale(2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes medusaReveal {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.medusa-look h2 {
    color: var(--primary-neon);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 199, 0.5);
    animation: lookPulse 0.5s ease-in-out infinite;
}

@keyframes lookPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.look-result {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.medusa-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-drink {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-drink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.btn-safe {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-safe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.medusa-drink-result {
    text-align: center;
    padding: 2rem;
}

.drink-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.medusa-drink-result h2 {
    color: var(--secondary-neon);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.medusa-drink-result p {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ========================================
   PARANOIA
   ======================================== */

.paranoia-intro {
    text-align: center;
    padding: 1rem;
}

.paranoia-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.paranoia-intro h3 {
    color: var(--secondary-neon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.paranoia-rules {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
}

.paranoia-rules p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.paranoia-rules strong {
    color: var(--secondary-neon);
}

.paranoia-question {
    text-align: center;
}

.secret-label {
    color: var(--primary-neon);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.secret-label i {
    margin-right: 0.5rem;
}

.secret-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.secret-box p {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.paranoia-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.paranoia-instructions p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.paranoia-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.paranoia-reveal {
    text-align: center;
    padding: 2rem;
}

.reveal-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.paranoia-reveal h3 {
    color: var(--primary-neon);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reveal-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   21 (VEINTIUNO)
   ======================================== */

.veintiuno-game {
    text-align: center;
}

.veintiuno-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.veintiuno-game h3 {
    color: var(--secondary-neon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.veintiuno-rules {
    margin-bottom: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    text-align: left;
}

.rule-item.base {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.rule-item.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rule-item.custom {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.rule-number {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-weight: 700;
    color: var(--text-light);
    min-width: 40px;
    text-align: center;
}

.rule-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    flex: 1;
}

.veintiuno-custom {
    margin-bottom: 1.5rem;
}

.veintiuno-custom h4 {
    color: var(--primary-neon);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.veintiuno-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.veintiuno-winner, .veintiuno-mistake {
    text-align: center;
    padding: 1.5rem;
}

.winner-emoji, .mistake-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.veintiuno-winner h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.veintiuno-mistake h3 {
    color: #ef4444;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.winner-text, .mistake-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mistake-subtext {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.rule-suggestion {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.rule-suggestion p:first-child {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.suggestion-text {
    color: var(--secondary-neon);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   BATALLA DE SHOTS
   ======================================== */

.batalla-select {
    text-align: center;
}

.batalla-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.batalla-select h3 {
    color: var(--secondary-neon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.batalla-modes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.batalla-mode-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: var(--font-main);
}

.batalla-mode-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--secondary-neon);
    transform: translateX(5px);
}

.mode-name {
    display: block;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.mode-desc {
    display: block;
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.mode-shots {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: var(--bg-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.batalla-game {
    text-align: center;
}

.batalla-header {
    margin-bottom: 1.5rem;
}

.batalla-mode-name {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.batalla-arena {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.batalla-player {
    text-align: center;
}

.player-label {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.player-emoji {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 50%;
}

.batalla-vs {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(255, 0, 199, 0.5);
}

.batalla-countdown {
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.batalla-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-neon);
}

.batalla-shoot {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(255, 0, 199, 0.5);
    animation: lookPulse 0.3s ease-in-out infinite;
}

.batalla-start {
    font-size: 1.1rem;
}

.batalla-result {
    text-align: center;
    padding: 1.5rem;
}

.result-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.batalla-result h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-shots {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.shots-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.shots-text {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.result-instruction {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.batalla-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   LA FLECHA
   ======================================== */

.flecha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.flecha-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #FF00C7 0deg 30deg,
        #00E5FF 30deg 60deg,
        #f59e0b 60deg 90deg,
        #10b981 90deg 120deg,
        #8b5cf6 120deg 150deg,
        #ef4444 150deg 180deg,
        #3b82f6 180deg 210deg,
        #ec4899 210deg 240deg,
        #14b8a6 240deg 270deg,
        #f97316 270deg 300deg,
        #6366f1 300deg 330deg,
        #84cc16 330deg 360deg
    );
    border: 4px solid var(--text-light);
    box-shadow: 0 0 30px rgba(255, 0, 199, 0.3);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flecha-arrow {
    font-size: 3rem;
    color: var(--bg-dark);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    filter: drop-shadow(0 0 5px white);
}

.flecha-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   PROHIBIDO
   ======================================== */

.prohibido-palabra-btn:hover {
    border-color: var(--secondary-neon) !important;
    transform: translateX(5px);
}

.prohibido-palabra-btn.selected {
    border-color: var(--primary-neon) !important;
    background: rgba(255, 0, 199, 0.1) !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .main-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-actions {
        padding: 1rem 1.5rem 1.5rem;
    }

    .choice-buttons {
        flex-direction: column;
    }

    .choice-btn {
        width: 100%;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .main-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .pregunta-text {
        font-size: 1.2rem;
    }

    .game-text p {
        font-size: 1.1rem;
    }

    .roulette-wheel {
        width: 200px;
        height: 200px;
    }

    .card-content h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SCROLLBAR PERSONALIZADO
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}

/* ========================================
   VOLTEA Y TOMA
   ======================================== */

.vt-container {
    width: 100%;
    user-select: none;
    overflow: visible;
}

/* Header: contador + botón reiniciar */
.vt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.vt-counter {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.vt-counter-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--secondary-neon);
}

.vt-counter-sep {
    font-weight: 700;
    color: var(--text-light);
}

.vt-restart-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: var(--font-main);
    font-weight: 600;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.vt-restart-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--secondary-neon);
    color: var(--secondary-neon);
    transform: scale(1.04);
}

/* Barra de progreso */
.vt-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.vt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-neon), var(--primary-neon));
    border-radius: 99px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--secondary-neon);
}

/* Grid de cartas */
.vt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    overflow: visible;
}

@media (max-width: 500px) {
    .vt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem;
    }
}

/* Cada carta y su lógica 3D */
.vt-card {
    perspective: 900px;
    height: 120px;
    cursor: pointer;
    border-radius: 12px;
}

@media (max-width: 500px) {
    .vt-card {
        height: 130px;
    }
}

.vt-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 12px;
}

.vt-card.flipped .vt-card-inner {
    transform: rotateY(180deg);
}

/* Cara delantera */
.vt-card-front,
.vt-card-back {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vt-card-front {
    background: linear-gradient(145deg, #1e1e2e, #2a2a40);
    border: 2px solid rgba(0, 229, 255, 0.25);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Decoración de esquinas tipo carta */
.vt-card-front-deco {
    position: absolute;
    inset: 5px;
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.12);
    pointer-events: none;
}

/* Efecto shimmer en cara delantera */
.vt-card-front::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg, transparent, rgba(0, 229, 255, 0.06), transparent);
    animation: vt-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vt-shimmer {
    0%   { transform: translateX(-20%); }
    50%  { transform: translateX(280%); }
    100% { transform: translateX(280%); }
}

/* Hover en cara delantera */
.vt-card:not(.flipped):hover .vt-card-front {
    border-color: rgba(0, 229, 255, 0.7);
    box-shadow:
        0 0 20px rgba(0, 229, 255, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.vt-card:not(.flipped):hover .vt-card-inner {
    transform: translateY(-3px) rotateY(8deg);
}

/* Signo de interrogación */
.vt-question-mark {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-neon);
    text-shadow:
        0 0 15px var(--secondary-neon),
        0 0 30px rgba(0, 229, 255, 0.3);
    line-height: 1;
    animation: vt-pulse-q 2.5s ease-in-out infinite;
}

@keyframes vt-pulse-q {
    0%, 100% { opacity: 1; text-shadow: 0 0 15px var(--secondary-neon); }
    50%       { opacity: 0.65; text-shadow: 0 0 30px var(--secondary-neon), 0 0 50px rgba(0, 229, 255, 0.5); }
}

.vt-hint {
    font-size: 0.55rem;
    color: rgba(160, 160, 176, 0.7);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Cara trasera - base */
.vt-card-back {
    transform: rotateY(180deg);
    padding: 0.6rem 0.4rem;
    gap: 0.2rem;
    text-align: center;
}

/* Partículas decorativas (pseudo-elemento) */
.vt-back-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
}

/* Colores de las caras traseras */
.vt-card-back.vt-drink {
    background: linear-gradient(145deg, #7f1d1d, #c0392b);
    border: 2px solid #e74c3c;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.35);
}

.vt-card-back.vt-drink-hard {
    background: linear-gradient(145deg, #431407, #ea580c);
    border: 2px solid #f97316;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.vt-card-back.vt-extreme {
    background: linear-gradient(145deg, #2e1065, #7c3aed);
    border: 2px solid #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 4px 20px rgba(0,0,0,0.4);
    animation: vt-glow-extreme 2s ease-in-out infinite;
}

@keyframes vt-glow-extreme {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }
    50%       { box-shadow: 0 0 35px rgba(168, 85, 247, 0.8), 0 0 60px rgba(168, 85, 247, 0.3); }
}

.vt-card-back.vt-give {
    background: linear-gradient(145deg, #14532d, #16a34a);
    border: 2px solid #22c55e;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.vt-card-back.vt-give-hard {
    background: linear-gradient(145deg, #052e16, #15803d);
    border: 2px solid #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.vt-card-back.vt-all {
    background: linear-gradient(145deg, #1e3a5f, #1d4ed8);
    border: 2px solid #60a5fa;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.35);
}

.vt-card-back.vt-special {
    background: linear-gradient(145deg, #451a03, #b45309);
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.vt-card-back.vt-gender {
    background: linear-gradient(145deg, #500724, #be185d);
    border: 2px solid #f472b6;
    box-shadow: 0 4px 20px rgba(244, 114, 182, 0.35);
}

/* Contenido de cara trasera */
.vt-card-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.vt-card-titulo {
    font-size: 0.62rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.vt-card-texto {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.vt-card-subtexto {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.2;
}

/* Zoom: la carta se acerca a la pantalla y vuelve */
.vt-card.vt-zoomed {
    position: relative;
    z-index: 30;
    animation: vt-zoom-pop 1s cubic-bezier(0.34, 1.25, 0.64, 1) forwards;
}

@keyframes vt-zoom-pop {
    0%   {
        transform: scale(1) translateY(0);
        filter: none;
    }
    40%  {
        transform: scale(1.3) translateY(-6px);
        filter: brightness(1.2) drop-shadow(0 10px 24px rgba(0,0,0,0.65));
    }
    100% {
        transform: scale(1) translateY(0);
        filter: none;
    }
}

/* Pantalla final */
.vt-end {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.vt-end-confetti {
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    animation: vt-confetti-bounce 0.8s ease-out;
}

@keyframes vt-confetti-bounce {
    0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
    60%  { transform: scale(1.15) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

.vt-end-icon {
    font-size: 4rem;
    margin-bottom: 0.8rem;
    animation: vt-icon-pop 0.7s ease-out 0.15s both;
    display: block;
}

@keyframes vt-icon-pop {
    0%   { transform: scale(0); }
    65%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.vt-end-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondary-neon);
    text-shadow: 0 0 20px var(--secondary-neon);
    margin-bottom: 0.4rem;
}

.vt-end-sub {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.vt-end-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================================
   MULTIPAGE SITE CHROME (Borracho.cl v3)
   ======================================== */
:root {
  --header-h: 68px;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--primary-neon); color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(16,16,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header__inner {
  max-width: 1180px; margin: 0 auto; padding: .75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.site-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--text-light); }
.site-logo img { border-radius: 50%; box-shadow: 0 0 0 2px rgba(0,229,255,.35); }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo__text strong { font-weight: 900; font-size: 1.1rem; }
.site-logo__text span { color: var(--secondary-neon); }
.site-logo__text small { color: var(--text-dark); font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.site-nav ul { list-style: none; display: flex; gap: .25rem 1.25rem; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: .92rem;
  padding: .4rem 0; border-bottom: 2px solid transparent; transition: .2s;
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; border-color: var(--primary-neon); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: #151522;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .25s;
  }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; padding: 1rem 1.25rem 1.25rem; gap: 0; }
  .site-nav a { display: block; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
}

.site-footer {
  background: #0a0a12; border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 1.25rem 1.5rem; margin-top: 4rem;
}
.site-footer__grid {
  max-width: 1180px; margin: 0 auto 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
}
.site-footer h3 { font-size: 1rem; margin-bottom: .85rem; color: #fff; }
.site-footer p, .site-footer li { color: var(--text-dark); font-size: .9rem; line-height: 1.55; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: #cfcfe0; text-decoration: none; }
.site-footer a:hover { color: var(--secondary-neon); }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: #1c1c29; color: #fff; font-size: 1.1rem;
}
.site-footer__warning {
  max-width: 1180px; margin: 0 auto 1.25rem; padding: 1rem 1.25rem;
  background: rgba(255,0,199,.08); border: 1px solid rgba(255,0,199,.25); border-radius: 12px;
  color: #f0d0ea; font-size: .88rem;
}
.site-footer__bottom { max-width: 1180px; margin: 0 auto; text-align: center; color: var(--text-dark); font-size: .85rem; }
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 10000; background: rgba(8,8,14,.92);
  display: flex; align-items: center; justify-content: center; padding: 1.25rem;
}
.age-gate[hidden] { display: none !important; }
.age-gate__card {
  max-width: 440px; width: 100%; background: #1c1c29; border-radius: 20px;
  padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.age-gate__logo { border-radius: 50%; margin-bottom: 1rem; }
.age-gate__card h2 { margin-bottom: .75rem; font-size: 1.4rem; }
.age-gate__card p { color: var(--text-dark); font-size: .95rem; margin-bottom: .75rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: .65rem; margin: 1.25rem 0; }
.age-gate__legal { font-size: .8rem; }
.age-gate__legal a { color: var(--secondary-neon); }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 950;
  max-width: 720px; margin: 0 auto;
  background: #1c1c29; border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; box-shadow: var(--shadow); padding: 1rem 1.15rem;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cookie-banner p { flex: 1; margin: 0; font-size: .88rem; color: #d0d0e0; min-width: 220px; }
.cookie-banner a { color: var(--secondary-neon); }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.btn-sm { padding: .55rem 1rem !important; font-size: .85rem !important; }

/* Ad slots */
.ad-slot {
  margin: 1.5rem auto; max-width: 1180px; padding: 0 1.25rem;
  text-align: center;
}
.ad-slot__label {
  display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-dark); margin-bottom: .4rem;
}
.ad-slot__placeholder {
  background: #161622; border: 1px dashed rgba(255,255,255,.12); border-radius: 12px;
  min-height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-dark); font-size: .85rem; padding: 1rem;
}
.ad-slot--in-article .ad-slot__placeholder { min-height: 250px; }

/* Layout helpers */
.page-wrap { max-width: 1180px; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.page-wrap--narrow { max-width: 800px; }
.page-hero {
  text-align: center; padding: 3rem 1.25rem 2rem;
  background: linear-gradient(160deg, #2a1f4a 0%, #10101a 55%, #10101a 100%);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: .75rem; line-height: 1.2; }
.page-hero .lead { color: #c8c8d8; max-width: 680px; margin: 0 auto 1.25rem; font-size: 1.05rem; line-height: 1.55; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem .5rem; justify-content: center;
  font-size: .85rem; color: var(--text-dark); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--secondary-neon); text-decoration: none; }
.breadcrumb span[aria-hidden] { opacity: .5; }

.prose { color: #d8d8e8; line-height: 1.7; font-size: 1.02rem; }
.prose h2 { color: #fff; margin: 2rem 0 .85rem; font-size: 1.4rem; }
.prose h3 { color: #fff; margin: 1.5rem 0 .65rem; font-size: 1.15rem; }
.prose p, .prose li { margin-bottom: .85rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose a { color: var(--secondary-neon); }
.prose strong { color: #fff; }

.meta-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 1rem 0; }
.meta-pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px; padding: .35rem .85rem; font-size: .82rem; color: #ddd;
}
.meta-pill i { margin-right: .35rem; color: var(--secondary-neon); }

.games-grid-page {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.game-card-link {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); transition: transform .2s, border-color .2s, box-shadow .2s;
  min-height: 100%; position: relative;
}
.game-card-link:hover {
  transform: translateY(-4px); border-color: rgba(0,229,255,.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.game-card-link__emoji {
  font-size: 2.4rem; padding: 1.25rem 1.25rem 0;
}
.game-card-link__body { padding: 0 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.game-card-link h2, .game-card-link h3 { font-size: 1.15rem; margin: .5rem 0 .5rem; color: #fff; }
.game-card-link p { color: var(--text-dark); font-size: .92rem; line-height: 1.5; flex: 1; }
.game-card-link__cta {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem;
  color: var(--secondary-neon); font-weight: 700; font-size: .9rem;
}
.like-btn {
  position: absolute; top: .75rem; right: .75rem; z-index: 2;
  border: 0; background: rgba(0,0,0,.45); color: #fff; border-radius: 999px;
  padding: .4rem .7rem; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; backdrop-filter: blur(6px);
}
.like-btn.liked { color: #ff4d8d; }
.like-btn:hover { background: rgba(0,0,0,.65); }

/* Home hero compact under header */
.home-hero {
  position: relative; text-align: center; padding: 4.5rem 1.25rem 3.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 55%, #5b2d8e 100%);
  overflow: hidden;
}
.home-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.home-hero .main-logo { width: 110px; height: 110px; border-radius: 50%; object-fit: contain; box-shadow: 0 10px 30px rgba(0,0,0,.3); margin-bottom: 1.25rem; }
.home-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.home-hero .highlight { color: var(--secondary-neon); }
.home-hero .subtitle { font-size: 1.1rem; opacity: .95; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-button, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 0; cursor: pointer; font-family: inherit; font-size: .95rem; transition: .2s;
}
.cta-button.primary, .btn-primary {
  background: linear-gradient(135deg, var(--primary-neon), #ff5a9e);
  color: #fff; box-shadow: 0 8px 24px rgba(255,0,199,.3);
}
.cta-button.secondary, .btn-secondary {
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2);
}
.cta-button:hover, .btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.section-block { padding: 3rem 1.25rem; }
.section-block__inner { max-width: 1180px; margin: 0 auto; }
.section-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.section-sub { text-align: center; color: var(--text-dark); max-width: 640px; margin: 0 auto 2rem; }

.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.benefit-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.05);
}
.benefit-card i { font-size: 1.6rem; color: var(--secondary-neon); margin-bottom: .75rem; }
.benefit-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.benefit-card p { color: var(--text-dark); font-size: .92rem; line-height: 1.5; }

/* Game page play panel */
.game-page-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 1180px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem;
}
@media (min-width: 960px) {
  .game-page-layout { grid-template-columns: 1.15fr .85fr; align-items: start; }
}
.game-play-panel {
  background: var(--bg-card); border-radius: 20px; border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 1rem);
}
.game-play-panel .modal-header { text-align: center; margin-bottom: 1rem; }
.game-play-panel .modal-header h2 { font-size: 1.35rem; }
.game-play-panel .modal-header p { color: var(--text-dark); font-size: .92rem; }
.game-play-panel .modal-body { min-height: 220px; }
.game-play-panel .modal-actions {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-top: 1.25rem;
}
.game-play-panel .modal-close { display: none; }
body.game-page .game-modal {
  position: static; inset: auto; background: transparent; display: block !important;
  opacity: 1; pointer-events: auto; z-index: auto; padding: 0;
}
body.game-page .game-modal .modal-content {
  max-width: none; width: 100%; margin: 0; background: transparent; box-shadow: none;
  border: 0; max-height: none; overflow: visible;
}
body.game-page .game-modal.active { /* always visible */ }

.game-side-content .faq-item {
  background: rgba(255,255,255,.03); border-radius: 12px; padding: 1rem 1.1rem; margin-bottom: .75rem;
  border: 1px solid rgba(255,255,255,.05);
}
.game-side-content .faq-item h3 { font-size: 1rem; margin-bottom: .4rem; }
.game-side-content .faq-item p { color: var(--text-dark); font-size: .92rem; margin: 0; line-height: 1.5; }

.related-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; margin-top: 1rem; }
.related-games a {
  display: block; padding: .9rem 1rem; background: var(--bg-card); border-radius: 12px;
  text-decoration: none; color: #fff; border: 1px solid rgba(255,255,255,.06); font-weight: 600; font-size: .92rem;
}
.related-games a:hover { border-color: var(--secondary-neon); }

.legal-list { margin: 1rem 0 1.5rem; }
.contact-card {
  background: var(--bg-card); border-radius: 16px; padding: 1.5rem; border: 1px solid rgba(255,255,255,.06);
}
.contact-card a { color: var(--secondary-neon); }

.guides-list { display: grid; gap: .85rem; }
.guides-list a {
  display: block; padding: 1.1rem 1.25rem; background: var(--bg-card); border-radius: 14px;
  text-decoration: none; color: inherit; border: 1px solid rgba(255,255,255,.06);
}
.guides-list a:hover { border-color: rgba(0,229,255,.35); }
.guides-list strong { display: block; color: #fff; margin-bottom: .25rem; }
.guides-list span { color: var(--text-dark); font-size: .9rem; }

.home-hero .floating-emoji { position: absolute; font-size: 1.8rem; opacity: .55; animation: floatEmoji 8s ease-in-out infinite; pointer-events: none; }
.home-hero .floating-emoji:nth-child(1) { top: 18%; left: 8%; }
.home-hero .floating-emoji:nth-child(2) { top: 30%; right: 12%; animation-delay: 1.5s; }
.home-hero .floating-emoji:nth-child(3) { bottom: 20%; left: 18%; animation-delay: 3s; }
.home-hero .floating-emoji:nth-child(4) { bottom: 25%; right: 10%; animation-delay: 4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
