/* ========================================
   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;
}
