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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0f0f1a;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* ===== INTRO ===== */
.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a3e 0%, #0a0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.intro-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.intro-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.intro-subtitle {
    font-size: 1.3rem;
    color: #a0a0b0;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-reveal {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    letter-spacing: 1px;
}

.btn-reveal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-reveal:active {
    transform: translateY(-1px);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content.visible {
    opacity: 1;
    pointer-events: all;
}

.container {
    max-width: 1400px;
    width: 95%;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ===== STATS INTRO ===== */
.stats-intro {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
    pointer-events: none;
}

.stats-intro.visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.stats-intro.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}

.stats-intro-text {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== HEADER ===== */
.main-header {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
    pointer-events: none;
}

.main-header.visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.main-header.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}

.main-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== CARDS ===== */
.cards-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    height: 100%;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.cards-grid.visible {
    display: grid;
    opacity: 1;
}

.cards-grid.fade-out {
    opacity: 0;
    pointer-events: none;
}

.cards-progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cards-progress-container.visible {
    opacity: 1;
}

.cards-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.card {
    background: linear-gradient(145deg, #1e1e2f, #16162a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(-5px) scale(1.01);
}

.card-image {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.card-body {
    padding: 20px 25px 25px;
    text-align: center;
    flex-shrink: 0;
}

.card-body h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c0c0d0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #808090;
}

/* ===== JUEGO ===== */
.game-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.game-overlay.visible {
    display: flex;
    opacity: 1;
}

.game-container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.game-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.game-subtitle {
    font-size: 1.2rem;
    color: #a0a0b0;
    margin-bottom: 40px;
}

.game-area {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elusive-btn {
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 5;
    user-select: none;
    -webkit-user-select: none;
}

.elusive-btn:hover {
    transform: scale(1.05);
}

.hint {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.hint.visible {
    opacity: 1;
}

.hint p {
    font-size: 1rem;
    color: #feca57;
    background: rgba(0,0,0,0.5);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(254, 202, 87, 0.3);
}

/* ===== MODAL REINTENTAR ===== */
.retry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.retry-modal.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.retry-content {
    background: linear-gradient(145deg, #1e1e2f, #16162a);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.retry-gif {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
}

.retry-gif img {
    width: 100%;
    height: auto;
    display: block;
}

.retry-text {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.btn-retry {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-retry:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

/* ===== HYPE OVERLAY ===== */
.hype-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hype-overlay.visible {
    display: flex;
    opacity: 1;
}

.hype-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite, pulse 2s ease-in-out infinite;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
}

.hype-sub {
    font-size: 1.5rem;
    color: #a0a0b0;
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hype-image {
    max-width: 60vw;
    max-height: 45vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 3px solid rgba(255,255,255,0.1);
    animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s both;
    z-index: 10;
}

.hype-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===== LOADING ===== */
.loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 40;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.loading-overlay.visible {
    display: flex;
    opacity: 1;
}

.loading-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.loading-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.loading-bar-bg {
    width: 100%;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    border-radius: 15px;
    transition: width 0.1s linear;
}

.loading-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RULETA ===== */
.roulette-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.roulette-overlay.visible {
    display: flex;
    opacity: 1;
}

.roulette-container {
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.roulette-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.roulette-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(145deg, #1e1e2f, #16162a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.roulette-wheel {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.roulette-item {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #c0c0d0;
    border-right: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(145deg, #1e1e2f, #16162a);
}

.roulette-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ff6b6b;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-spin {
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-spin:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

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

/* ===== RESULTADO ===== */
.result-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 60;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.result-overlay.visible {
    display: flex;
    opacity: 1;
}

.result-container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.result-gif {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
}

.result-gif img {
    width: 100%;
    height: auto;
    display: block;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.result-prize {
    font-size: 2.2rem;
    font-weight: 700;
    color: #feca57;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-repeat {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-repeat:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* ===== HYPE 2 ===== */
.hype2-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 35;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hype2-overlay.visible {
    display: flex;
    opacity: 1;
}

.hype2-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite, pulse 2s ease-in-out infinite;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
}

.hype2-sub {
    font-size: 1.5rem;
    color: #a0a0b0;
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* ===== RULETA 2 ===== */
.roulette2-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 55;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.roulette2-overlay.visible {
    display: flex;
    opacity: 1;
}

.roulette2-container {
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.roulette2-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.roulette2-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(145deg, #1e1e2f, #16162a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.roulette2-wheel {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-spin2 {
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-spin2:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.btn-spin2:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

/* ===== MAPA DE VUELO ===== */
.world-map-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 70;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.world-map-overlay.visible {
    display: flex;
    opacity: 1;
}

.world-map-container {
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.world-map-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.flight-map {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e1e2f 0%, #0d1b2a 100%);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

.flight-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 45, 90, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(45, 45, 90, 0.5) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(45, 45, 90, 0.4) 0%, transparent 30%);
}

.flight-start {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 1rem;
    color: #a0a0b0;
    font-weight: 600;
}

.flight-end {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 1rem;
    color: #ff6b6b;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flight-end.visible {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.flight-plane {
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.1s linear;
}

.flight-route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #feca57, transparent);
    border-radius: 2px;
    opacity: 0.6;
    animation: routePulse 1s ease-in-out infinite;
}

@keyframes routePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===== PREMIO FINAL ===== */
.final-prize-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 80;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.final-prize-overlay.visible {
    display: flex;
    opacity: 1;
}

.final-prize-container {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.tickets-container {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    pointer-events: none;
}

.ticket {
    position: absolute;
    font-size: 3rem;
    opacity: 0;
    animation: ticketDrop 2s ease-out forwards;
}

.ticket-1 { left: 10%; animation-delay: 0.2s; }
.ticket-2 { left: 30%; animation-delay: 0.5s; }
.ticket-3 { left: 50%; animation-delay: 0.8s; }
.ticket-4 { left: 70%; animation-delay: 1.1s; }
.ticket-5 { left: 90%; animation-delay: 1.4s; }

@keyframes ticketDrop {
    0% { opacity: 0; transform: translateY(-50px) rotate(0deg) scale(0.5); }
    30% { opacity: 1; transform: translateY(20px) rotate(10deg) scale(1.2); }
    60% { opacity: 1; transform: translateY(60px) rotate(-5deg) scale(1); }
    100% { opacity: 0; transform: translateY(150px) rotate(20deg) scale(0.8); }
}

.final-prize-card {
    background: linear-gradient(145deg, #1e1e2f, #16162a);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

.final-prize-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.final-prize-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.final-prize-sub {
    font-size: 1.3rem;
    color: #a0a0b0;
    font-style: italic;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

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

@keyframes floatDown {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .intro-content h1 { font-size: 2rem; }
    .intro-subtitle { font-size: 1rem; }
    .btn-reveal { padding: 15px 40px; font-size: 1rem; }
    .stats-intro-text { font-size: 1.5rem; }
    .main-title { font-size: 1.3rem; }
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .card { max-height: none; }
    .card-image { height: 200px; flex: none; }
    .counter-number { font-size: 2rem; }
    .card-body h2 { font-size: 1rem; }
    .game-title { font-size: 1.3rem; }
    .game-subtitle { font-size: 1rem; }
    .game-area { height: 250px; }
    .elusive-btn { padding: 15px 30px; font-size: 1rem; }
    .hype-text { font-size: 2rem; }
    .hype-sub { font-size: 1.1rem; }
    .hype-image { max-width: 80vw; }
    .loading-title { font-size: 1.3rem; }
    .roulette-title { font-size: 1.5rem; }
    .roulette-item { width: 150px; font-size: 0.85rem; }
    .result-title { font-size: 1.8rem; }
    .result-prize { font-size: 1.2rem; }
}
