/* CSS do Funil Fortune Tiger - Estilo Premium */

:root {
    --primary-red: #c61e2b;
    --primary-red-hover: #b11622;
    --gold: #ffb700;
    --gold-hover: #e0a100;
    --jade-green: #00a86b;
    --glow-green: #39ff14;
    --dark-bg: #121214;
    --card-bg: rgba(26, 26, 30, 0.9);
    --border-color: rgba(255, 215, 0, 0.15);
    --text-light: #ffffff;
    --text-muted: #a1a1aa;
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

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

body {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: var(--font-inter);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;  /* Centralizado verticalmente e horizontalmente */
}

/* Base App Wrapper */
#app {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;         /* cresce conforme o conteúdo */
    height: auto;
    background: transparent;   /* transparente para mostrar a imagem de fundo total */
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

#app::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Screens System */
.screen {
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin: auto;
}

.screen.active {
    display: flex !important;
    opacity: 1;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Typography & Glows */
.glow-text {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 183, 0, 0.3);
}

.glow-green {
    color: var(--glow-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.glow-yellow {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 183, 0, 0.6);
}

.subtitle {
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-top: -10px;
}

/* Forms & Inputs */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.phone-input-wrapper {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: border-color 0.3s;
}

.phone-input-wrapper:focus-within {
    border-color: var(--gold);
}

.country-prefix {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

input[type="tel"],
input[type="password"],
.input-text-dark {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-inter);
}

.input-text-dark {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s;
}

.input-text-dark:focus {
    border-color: var(--gold);
}

.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
}

.terms-group input {
    margin-top: 2px;
    accent-color: var(--gold);
}

/* Alert Box */
.alert-box {
    background: rgba(198, 30, 43, 0.15);
    border: 1px dashed var(--primary-red);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #ffd2d5;
    text-align: center;
}

/* Brand Logo Area */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Logo em círculo dourado */
.brand-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 18px rgba(255, 183, 0, 0.55), 0 4px 16px rgba(0,0,0,0.5);
    overflow: hidden;
    flex-shrink: 0;
    background: #1a0900;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Buttons */
.btn-gold {
    background: linear-gradient(180deg, #ffe066 0%, var(--gold) 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-outfit);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-gold:active {
    transform: scale(0.98);
}

.btn-gold-modal {
    background: #ffb700;
    color: #000000;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-outfit);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-gold-modal:active {
    transform: scale(0.96);
}

.full-width {
    width: 100%;
    margin-top: 15px;
}

/* Pulsing Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 4px 25px rgba(255, 183, 0, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* --- TELA 2: ROLETA --- */
.subtitle-wheel {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -10px;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 20px auto;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--gold);
    z-index: 10;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 183, 0, 0.5), inset 0 0 15px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    background: #222;
    transition: transform 6s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.wheel-inner {
    width: 100%;
    height: 100%;
    position: absolute;
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0% 0%;
    /* Create triangular segments */
    transform: rotate(calc(60deg * var(--i))) skewY(30deg);
    background-color: var(--bg);
    border-right: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.wheel-segment span {
    position: absolute;
    left: 20px;
    top: 30px;
    transform: skewY(-30deg) rotate(30deg);
    font-weight: 800;
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    width: 80px;
    white-space: wrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    transform-origin: center;
}

/* Modais de Popups Geral */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
}

.glass-modal-content {
    background: rgba(30, 30, 35, 0.95);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tiger-emoji {
    font-size: 5rem;
    animation: bounce 1.5s infinite alternate;
}

.tiger-emoji-small {
    font-size: 3rem;
    margin-bottom: 10px;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

.bonus-highlight {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.3;
}

/* --- TELA 3: CARREGAMENTO --- */
.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 80%;
}

.loading-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(255,183,0,0.5);
    animation: rotateTiger 3s infinite linear;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes rotateTiger {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    box-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
    transition: width 0.1s linear;
}

.loading-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- TELA 4: PAINEL DE JOGO --- */
#screen-game {
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.game-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.game-top-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.badge-free-spins, .badge-balance {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.font-red {
    color: #ff3b30 !important;
}

.font-gold {
    color: var(--gold) !important;
}

.game-top-bar .label {
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.game-top-bar .value {
    font-family: var(--font-outfit);
    font-size: 1rem;
    font-weight: 800;
}

/* Slot Board Styling */
.slot-machine-wrapper {
    background: linear-gradient(180deg, #c71f28 0%, #7d1016 100%);
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.8), inset 0 2px 10px rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.slot-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
    line-height: 1;
}

.slot-header .header-sub {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 900;
}

.slot-header .header-main {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.slot-frame {
    background: #ffecb3;
    border: 4px solid #b58d3d;
    border-radius: 12px;
    padding: 6px;
    width: 100%;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.6);
}

.slot-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: #500e12;
    padding: 4px;
    border-radius: 8px;
    overflow: hidden;
}

.slot-col {
    background: #2a0507;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.9);
}

.slot-reel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}

.slot-symbol-card {
    height: 66.6px; /* Exactly 1/3 of slot-col height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 1.8rem;
    position: relative;
    background: linear-gradient(180deg, #440b0f 0%, #200407 100%);
    transition: filter 0.1s;
}

.slot-symbol-card.blur {
    filter: blur(3px);
}

.symbol-name {
    font-size: 0.5rem;
    color: var(--gold);
    font-weight: bold;
    margin-top: 3px;
    text-transform: uppercase;
}

.slot-footer-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 6px;
    font-size: 0.75rem;
    color: #ffcccc;
    font-weight: bold;
}

/* Stats dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 5px;
}

.stat-box {
    background: rgba(18, 1, 1, 0.85);
    border: 1.5px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 2px;
}

.stat-val {
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

#bottom-win {
    color: var(--glow-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

/* Controls Dashboard */
.dashboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 8px;
    padding: 5px 0;
}

.ctrl-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s, background-color 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.ctrl-btn:active {
    transform: scale(0.9);
}

.btn-turbo {
    background: #f1a80a;
    color: #000;
}

.btn-turbo.active {
    background: #ffea00;
    box-shadow: 0 0 12px #ffea00;
}

.btn-minus, .btn-plus {
    background: #1c1c1e;
    color: #fff;
    font-weight: bold;
}

.btn-auto {
    background: #007aff;
    color: #fff;
}

.btn-auto.active {
    background: #00c6ff;
    box-shadow: 0 0 12px #00c6ff;
}

.btn-play {
    flex-grow: 1;
    height: 52px;
    background: radial-gradient(circle, #28a745 0%, #1e7e34 100%);
    border: 2px solid #34ce57;
    border-radius: 26px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-outfit);
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(40,167,69,0.4), inset 0 2px 5px rgba(255,255,255,0.5);
    transition: transform 0.1s, filter 0.2s;
}

.btn-play:active {
    transform: scale(0.96);
}

.btn-play.disabled {
    filter: grayscale(1);
    pointer-events: none;
}

/* Modais Sobre o Jogo (Fundo Transparente sem camada escura) */
.modal-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: none;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 20px;
}

.modal-card {
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px 20px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-card h3 {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
}

.modal-description, .modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}

.modal-lbl-total, .modal-lbl-avail {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-total-value {
    font-family: var(--font-outfit);
    font-size: 2.2rem;
    font-weight: 900;
    color: #34c759;
    margin: 4px 0 20px 0;
    text-shadow: 0 0 10px rgba(52, 199, 89, 0.2);
}

.font-large {
    font-size: 2.5rem;
    margin: 5px 0;
}

/* Opções de Levantamento (IBAN/Express) */
.withdraw-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}

.withdraw-opt-btn {
    background: #2c2c2e;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s, border-color 0.2s;
}

.withdraw-opt-btn:hover, .withdraw-opt-btn:active {
    background: #3a3a3c;
    border-color: rgba(255, 215, 0, 0.3);
}

.opt-icon {
    font-size: 1.8rem;
}

.opt-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.opt-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.opt-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Back Link buttons inside modals */
.btn-back {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-back:hover {
    color: #fff;
}

/* --- TELA 5: VERIFICAÇÃO --- */
#screen-verification {
    background: transparent;
    justify-content: center;
}

.verification-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.spinner-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#screen-verification h2 {
    font-family: var(--font-outfit);
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 10px;
}

#screen-verification p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.verifying-bar {
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.verifying-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: barFill 3.5s forwards linear;
}

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

/* --- TELA 6: CHECKOUT --- */
.checkout-card {
    padding: 20px;
    gap: 15px;
}

.checkout-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}

.warning-badge {
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid #ff3b30;
    color: #ff3b30;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.checkout-header h2 {
    font-family: var(--font-outfit);
    font-size: 1.25rem;
    color: #fff;
}

.amount-pending {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checkout-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-alert {
    background: rgba(0, 168, 107, 0.08);
    border: 1px solid rgba(0, 168, 107, 0.2);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.8rem;
    line-height: 1.45;
}

.checkout-alert p strong {
    color: var(--jade-green);
}

.checkout-alert .highlight {
    margin-top: 6px;
    color: #fff;
    font-weight: bold;
}

.payment-details-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-details-box h3 {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
    text-transform: uppercase;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    align-items: center;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.cursor-copy {
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.2s;
}

.cursor-copy:hover {
    background: rgba(255, 215, 0, 0.15);
}

.countdown-timer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.countdown-timer strong {
    color: #ff3b30;
    font-family: monospace;
    font-size: 1rem;
}

/* Social Proof Live feed */
.social-proof-feed {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-header {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-muted);
}

.feed-container {
    height: 70px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-item {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.feed-user {
    color: #fff;
    font-weight: bold;
}

.feed-status {
    color: var(--jade-green);
    font-weight: bold;
}

/* Win notification popup overlays */
.win-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: radial-gradient(circle, rgba(230,22,35,0.95) 0%, rgba(120,4,8,0.98) 100%);
    border: 3px solid var(--gold);
    padding: 20px 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-weight: 800;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 30px rgba(255,183,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.win-overlay.active {
    animation: popAndFade 2.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popAndFade {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
    15% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
    30% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
}

.win-overlay-title {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.win-overlay-amount {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- TELA DE PARABÉNS (CONGRATS) --- */
#screen-congrats {
    background: transparent;
    justify-content: center;
}

.congrats-modal-card {
    background: rgba(22, 22, 24, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 20px;
    padding: 30px 22px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 12px 45px rgba(0,0,0,0.8), 0 0 20px rgba(16, 185, 129, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.congrats-logo-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.congrats-title {
    color: #10b981;
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 1.85rem;
    letter-spacing: 1px;
    margin-top: 4px;
    margin-bottom: 2px;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.congrats-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.congrats-desc {
    font-size: 0.88rem;
    color: #a1a1aa;
    margin-bottom: 18px;
}

.txt-green {
    color: #10b981;
    font-weight: 700;
}

.badge-people-win {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
}

.green-dot {
    color: #10b981;
    font-size: 0.9rem;
    animation: blink 1.2s infinite;
}

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

.badge-text {
    color: #ffffff;
}

.badge-text strong {
    color: #10b981;
}

.jogadas-gratis-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.slot-emoji {
    font-size: 2.3rem;
}

.jogadas-gratis-details h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 3px;
}

.jogadas-gratis-details p {
    font-size: 0.75rem;
    color: #a1a1aa;
}

.jogadas-gratis-details strong {
    color: #ffffff;
}

.checkmark-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding-left: 6px;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}

.checkmark-list .check-icon {
    font-size: 1.05rem;
}

.btn-gold-congrats {
    background: linear-gradient(180deg, #ffc800 0%, #ff9800 100%);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 16px 20px;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-outfit);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 22px rgba(255, 160, 0, 0.45);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gold-congrats:active {
    transform: scale(0.98);
}

.btn-gold-congrats:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 26px rgba(255, 160, 0, 0.65);
}

.congrats-footer-warning {
    font-size: 0.72rem;
    color: #a1a1aa;
    margin-top: 16px;
}

/* --- ESTILOS DE VSL (VIDEO SALES LETTER) --- */
.vsl-card {
    gap: 15px;
}

.vsl-video-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #000;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 215, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.vsl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 10px;
}

.vsl-video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.vsl-video-overlay .play-icon {
    font-size: 2rem;
    color: #000;
    background: var(--gold);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    box-shadow: 0 0 15px var(--gold);
    transition: transform 0.2s;
}

.vsl-video-overlay:hover .play-icon {
    transform: scale(1.1);
}

.click-to-watch {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vsl-mock-screen {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1f0305 0%, #0d0102 100%);
    overflow: hidden;
}

.mock-video-signal {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(230, 22, 35, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.mock-tiger-graphic {
    font-size: 4rem;
    opacity: 0.45;
}

.vsl-subtitles {
    position: absolute;
    bottom: 12px;
    width: 90%;
    text-align: center;
    color: #ffeb3b;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    text-shadow: 
        1.5px 1.5px 0 #000, 
        -1.5px -1.5px 0 #000, 
        1.5px -1.5px 0 #000, 
        -1.5px 1.5px 0 #000,
        0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 5;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 6px;
}

.vsl-controls-bar {
    width: 100%;
    height: 38px;
    background: #121214;
    border-top: 1.5px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    z-index: 6;
}

.play-pause-btn {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
}

.progress-bar-vsl {
    flex-grow: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-vsl-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, #ffea00 100%);
    transition: width 0.1s linear;
}

.time-display-vsl {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
}

.vsl-alert {
    background: rgba(255, 183, 0, 0.06);
    border: 1px dashed rgba(255, 183, 0, 0.2);
    border-radius: 10px;
    padding: 12px;
    font-size: 0.75rem;
    color: #ffd27f;
    text-align: center;
    line-height: 1.4;
}

.vsl-alert-green {
    background: rgba(16, 185, 129, 0.06);
    border: 1px dashed rgba(16, 185, 129, 0.25);
    color: #a7f3d0;
}

.vsl-button-holder {
    width: 100%;
    animation: slideInUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.d-none {
    display: none !important;
}

/* ====================================================
   TELA VSL 1 — FULLSCREEN (idêntica ao print)
   ==================================================== */

/* A tela VSL 1 não usa o #app centrado — ela ocupa o ecrã todo */
#screen-vsl1.vsl1-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;        /* ocupa pelo menos a tela toda */
    max-width: none;
    padding: 24px 16px;
    margin: auto;
    justify-content: center;  /* Totalmente centralizado */
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: transparent;  /* transparente para exibir a imagem do body de ponta a ponta */
    z-index: 9999;
    overflow: visible;
}

/* Headline — texto grande e legível no mobile */
.vsl1-headline {
    background: rgba(25, 22, 10, 0.85);
    border: 1px solid rgba(255, 200, 30, 0.2);
    border-radius: 30px;
    padding: 16px 22px;
    font-family: var(--font-inter);
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    width: 100%;
    max-width: 560px;
    line-height: 1.55;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Row: só o player, sem mascotes */
.vsl1-video-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
}

/* Container do player — largo e bem visível */
.vsl1-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 11;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

/* Overlay de som mudo */
.vsl1-muted-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

.vsl1-muted-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl1-sound-icon {
    font-size: 3.5rem;
    animation: sonicPulse 1.5s infinite ease-in-out;
}

@keyframes sonicPulse {
    0%   { transform: scale(1);    opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.75; }
    100% { transform: scale(1);    opacity: 1; }
}

.vsl1-muted-title {
    font-family: var(--font-outfit);
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.vsl1-muted-cta {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.35);
    padding: 8px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Botão dourado CTA — grande e clicável no mobile */
.vsl1-cta-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 560px;
}

.btn-vsl1-jogar {
    background: linear-gradient(180deg, #ffe340 0%, #e8a200 100%);
    color: #1a0900;
    border: none;
    border-radius: 40px;
    padding: 18px 0;
    width: 100%;
    font-family: var(--font-outfit);
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    font-weight: 900;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(230, 160, 0, 0.55);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-vsl1-jogar:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(230, 160, 0, 0.7);
}

.btn-vsl1-jogar:active {
    transform: scale(0.97);
}


/* Camada de escurecimento sobre o fundo */
#screen-vsl1.vsl1-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 8, 0, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

/* Todos os filhos ficam acima do overlay escuro */
#screen-vsl1.vsl1-fullscreen > * {
    position: relative;
    z-index: 1;
}

/* Pill/headline no topo */
.vsl1-headline {
    background: rgba(25, 22, 10, 0.78);
    border: 1px solid rgba(255, 200, 30, 0.15);
    border-radius: 30px;
    padding: 12px 24px;
    font-family: var(--font-inter);
    font-size: clamp(0.78rem, 2vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    max-width: 680px;
    line-height: 1.4;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Row: mascote | vídeo | mascote */
.vsl1-video-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 680px;
}

/* Mascotes laterais */
.vsl1-mascot {
    flex: 0 0 auto;
    width: clamp(80px, 12vw, 140px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.mascot-emoji {
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
    /* Slight downward crop so only the body shows, like the print */
    transform: translateY(8px);
}

.vsl1-mascot-left  { transform: scaleX(1);  }
.vsl1-mascot-right { transform: scaleX(-1); }

/* Container do player */
.vsl1-player-wrap {
    position: relative;
    flex: 1 1 auto;
    max-width: 380px;
    aspect-ratio: 9 / 14;   /* portrait like the print */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}

/* Overlay de som mudo */
.vsl1-muted-overlay {
    position: absolute;
    inset: 0;
    background: rgba(160, 16, 16, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

.vsl1-muted-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl1-sound-icon {
    font-size: 2.4rem;
    animation: sonicPulse 1.5s infinite ease-in-out;
}

@keyframes sonicPulse {
    0%   { transform: scale(1);    opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.75; }
    100% { transform: scale(1);    opacity: 1; }
}

.vsl1-muted-title {
    font-family: var(--font-outfit);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.vsl1-muted-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.3);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
}

/* Botão dourado CTA */
.vsl1-cta-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-vsl1-jogar {
    background: linear-gradient(180deg, #ffe340 0%, #e8a200 100%);
    color: #1a0900;
    border: none;
    border-radius: 40px;
    padding: 16px 52px;
    font-family: var(--font-outfit);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 900;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(230, 160, 0, 0.5);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-vsl1-jogar:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(230, 160, 0, 0.7);
}


.btn-vsl1-jogar:active {
    transform: scale(0.97);
}

/* ---- Ícone da logo no botão de Parabéns ---- */
.btn-tiger-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,0.25);
    vertical-align: middle;
    margin-right: 4px;
}

/* ---- Logo no footer da Slot Machine ---- */
.slot-footer-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    border: 1px solid var(--gold);
    margin-right: 5px;
}

/* ---- Melhora a renderização de emojis 3D nos símbolos do slot ---- */
.slot-symbol {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.slot-symbol-name {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ====================================================
   MÁSCARAS YOUTUBE — Cobrem branding do iframe
   ==================================================== */

/* Base comum */
.yt-mask {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9;
    pointer-events: none; /* cliques passam para o vídeo */
    background: #0d0d0d;  /* cor igual ao fundo do vídeo */
}

/* Topo: cobre título + nome do canal (~60px) */
.yt-mask-top {
    top: 0;
    height: 62px;
}

/* Fundo: cobre logo YouTube + botão partilha (~52px) */
.yt-mask-bottom {
    bottom: 0;
    height: 54px;
}

/* ====================================================
   TELA DE CADASTRO V2 — IDENTICA AO PRINT
   ==================================================== */
.register-card-v2 {
    width: 100%;
    max-width: 400px;
    background: rgba(22, 22, 24, 0.94);
    border: 1px solid rgba(230, 160, 0, 0.35);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    margin: auto;
}

.register-logo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.register-title-v2 {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 900;
    font-style: italic;
    color: #10b981;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.register-subtitle-v2 {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: #a1a1aa;
    text-align: center;
    margin-bottom: 24px;
}

.register-card-v2 form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field-v2 {
    width: 100%;
}

.input-field-v2 input {
    width: 100%;
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: var(--font-inter);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field-v2 input::placeholder {
    color: #71717a;
}

.input-field-v2 input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 183, 0, 0.2);
}

.btn-register-v2 {
    background: linear-gradient(180deg, #ffc800 0%, #ff9800 100%);
    color: #111;
    border: none;
    border-radius: 30px;
    padding: 16px 0;
    width: 100%;
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255, 160, 0, 0.4);
    transition: transform 0.18s, box-shadow 0.18s;
    margin-top: 4px;
}

.btn-register-v2:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 160, 0, 0.6);
}

.btn-register-v2:active {
    transform: scale(0.98);
}

.register-footer-v2 {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #a1a1aa;
    text-align: center;
}

.register-footer-v2 a {
    color: #10b981;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

/* ====================================================
   TELA DO JOGO V2 — IDENTICA AO PRINT 2
   ==================================================== */
.game-container-v2 {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: auto;
    padding: 10px 0;
}

/* Floating Logo Header */
.game-floating-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2px;
}

.logo-floating-circle {
    width: 54px !important;
    height: 54px !important;
    border-width: 2px !important;
}

.logo-floating-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.logo-floating-text .sub {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-floating-text .main {
    font-family: var(--font-outfit);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    background: linear-gradient(to bottom, #ffffff, #ffc800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slot Machine Grid & Side Numbers */
.slot-machine-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.side-numbers {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 1.15rem;
    color: #ffc800;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
    height: 250px;
    padding: 0 2px;
}

.slot-frame-v2 {
    border: 4px solid #ffc800;
    outline: 2px solid #b8860b;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffe066 0%, #d4ac0d 100%);
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.85), 0 0 24px rgba(255, 200, 0, 0.4);
    flex: 1;
    max-width: 340px;
}

.slot-columns {
    display: flex;
    gap: 6px;
    background: #1a0507;
    border-radius: 14px;
    padding: 6px;
}

.slot-col {
    flex: 1;
    height: 246px;
    overflow: hidden;
    background: #2b060a;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

.slot-symbol-card-v2 {
    height: 78px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #4a0d14 0%, #200407 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 200, 50, 0.2);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
    margin-bottom: 4px;
}

.symbol-icon-v2 {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* Gold Footer Banner */
.slot-footer-banner {
    background: linear-gradient(90deg, #900c14 0%, #60070d 50%, #900c14 100%);
    border: 1px solid #d4ac0d;
    border-radius: 20px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.banner-tiger-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
}

/* Dashboard Stats V2 */
.dashboard-stats-v2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 360px;
    background: rgba(20, 5, 7, 0.92);
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: 14px;
    padding: 10px 12px;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.stat-box-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.stat-box-v2 .stat-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffc800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-box-v2 .stat-val {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-outfit);
}

/* Dashboard Controls V2 (Circular Buttons) */
.dashboard-controls-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    gap: 10px;
    margin-top: 4px;
}

.circle-btn {
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s;
    outline: none;
}

.circle-btn:active {
    transform: scale(0.92);
}

.btn-action-v2 {
    width: 48px;
    height: 48px;
    background: #2b2b30;
    border: 2px solid #44444a;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.btn-turbo-v2 {
    width: 58px;
    height: 58px;
    background: linear-gradient(180deg, #ff9800 0%, #e65100 100%);
    border: 2px solid #ffe082;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 152, 0, 0.5);
}

.btn-turbo-v2 .icon {
    font-size: 1.3rem;
}

.btn-auto-v2 {
    width: 58px;
    height: 58px;
    background: linear-gradient(180deg, #00c6ff 0%, #0072ff 100%);
    border: 2px solid #b3e5fc;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 198, 255, 0.5);
}

.btn-auto-v2 .icon {
    font-size: 1.2rem;
}

.btn-lbl {
    font-size: 0.55rem;
    font-weight: 800;
    margin-top: 1px;
    color: #ffffff;
}

.btn-play-v2 {
    width: 76px;
    height: 76px;
    background: linear-gradient(180deg, #00e676 0%, #00a152 100%);
    border: 3px solid #ffea00;
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.6);
}

.btn-play-v2:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(0, 230, 118, 0.75);
}

/* 3D Emoji Symbol Styling */
.symbol-img-3d {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
    animation: floatSymbol 3s infinite ease-in-out;
}

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

/* Top Badges V2: Rodadas & Saldo */
.game-top-bar-v2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 360px;
    gap: 12px;
    margin-bottom: 2px;
}

.top-badge-box {
    flex: 1;
    background: rgba(18, 5, 7, 0.92);
    border: 1px solid rgba(255, 200, 0, 0.35);
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

.top-badge-box .lbl {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.top-badge-box .val {
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-outfit);
}

/* ====================================================
   MODAL RODADAS ESGOTADAS — IDENTICO AO PRINT
   ==================================================== */
.modal-card-gold-border {
    background: rgba(22, 22, 24, 0.96) !important;
    border: 1.5px solid #ffb700 !important;
    border-radius: 20px !important;
    padding: 30px 22px !important;
    max-width: 380px !important;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 183, 0, 0.25) !important;
}

.modal-warning-icon {
    font-size: 3.2rem;
    margin-bottom: 6px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.modal-warning-title {
    font-family: var(--font-outfit);
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    color: #ffb700 !important;
    margin-bottom: 8px !important;
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.3);
}

.modal-description-v2 {
    font-size: 0.88rem;
    color: #a1a1aa;
    line-height: 1.45;
    margin-bottom: 16px;
}

.modal-value-box {
    background: rgba(35, 30, 20, 0.95);
    border: 1px solid rgba(255, 183, 0, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.6);
}

.modal-total-value-v2 {
    font-family: var(--font-outfit);
    font-size: 1.85rem;
    font-weight: 900;
    color: #ffb700;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255, 183, 0, 0.35);
    margin: 0;
}

.btn-gold-modal-v2 {
    background: linear-gradient(180deg, #ffc800 0%, #ff9800 100%);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 16px 20px;
    font-size: 1.15rem;
    font-weight: 900;
    font-family: var(--font-outfit);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 22px rgba(255, 160, 0, 0.5);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-gold-modal-v2:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 26px rgba(255, 160, 0, 0.7);
}

.btn-gold-modal-v2:active {
    transform: scale(0.98);
}

/* ====================================================
   MODAL DADOS VERIFICADOS COM SUCESSO — IDENTICO AO PRINT
   ==================================================== */
.modal-card-verified-v2 {
    background: rgba(22, 22, 28, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 28px 22px !important;
    max-width: 380px !important;
    box-shadow: 0 14px 50px rgba(0,0,0,0.85) !important;
}

.verified-success-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00e676 0%, #00a152 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.verified-success-badge .check-icon {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.verified-title {
    font-family: var(--font-outfit);
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #00e676 !important;
    margin-bottom: 4px !important;
    text-align: center;
}

.verified-subtitle {
    font-size: 0.82rem;
    color: #a1a1aa;
    margin-bottom: 16px;
    text-align: center;
}

.verified-lbl {
    font-size: 0.72rem;
    color: #71717a;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
}

.verified-amount {
    font-family: var(--font-outfit);
    font-size: 1.85rem;
    font-weight: 900;
    color: #00e676;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
    margin-bottom: 18px;
    text-align: center;
}

.verified-account-box {
    background: #12121a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.verified-account-box .acc-icon {
    font-size: 1.2rem;
}

.verified-account-box .lbl {
    color: #a1a1aa;
    font-weight: 600;
}

.verified-account-box .val {
    color: #ffffff;
    font-weight: 800;
    font-family: var(--font-outfit);
    letter-spacing: 0.5px;
}

.btn-gold-verified-v2 {
    background: linear-gradient(180deg, #ffc800 0%, #ff9800 100%);
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-outfit);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 22px rgba(255, 160, 0, 0.5);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gold-verified-v2:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 26px rgba(255, 160, 0, 0.7);
}

.btn-gold-verified-v2:active {
    transform: scale(0.98);
}

/* ====================================================
   YOUTUBE LIVE ENGINE (VSL 2) — IDENTICO AOS PRINTS (LIGHT THEME)
   ==================================================== */
/* YouTube Live Fullscreen Overlay (Coobre 100% da tela no Desktop e Mobile, em Fundo Branco) */
.vsl2-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    color: #0f0f0f;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    max-width: none !important;
    z-index: 999999 !important;
    overflow-y: auto !important;
}

.yt-live-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    min-height: 100vh;
    /* Tipografia Roboto — idêntica ao YouTube */
    font-family: "Roboto", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* YouTube Header Bar */
.yt-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.yt-left-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.yt-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0f0f0f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yt-svg-icon {
    width: 24px;
    height: 24px;
    fill: #0f0f0f;
}

/* Logo box como link sem decoração */
.yt-logo-box {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

/* SVG do ícone vermelho do YouTube */
.yt-logo-icon-svg {
    flex-shrink: 0;
    display: block;
}

/* Wordmark "YouTube" em texto escuro */
.yt-wordmark {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f0f0f;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

/* "AO" país no canto superior direito do wordmark */
.yt-logo-country {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: #606060;
    letter-spacing: 0.02em;
    margin-top: -10px;
    align-self: flex-start;
    white-space: nowrap;
}

/* Barra de pesquisa centralizada — não pode ultrapassar os limites */
.yt-center-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 500px;
    margin: 0 16px;
}

.yt-search-box {
    display: flex;
    flex: 1;
    min-width: 0;
    border: 1px solid #ccc;
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    background: #ffffff;
}

.yt-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 16px;
    height: 40px;
    color: #0f0f0f;
    font-size: 0.9rem;
}

.yt-search-btn {
    width: 60px;
    height: 40px;
    flex-shrink: 0;
    background: #f8f8f8;
    border: none;
    border-left: 1px solid #ccc;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botão microfone — círculo cinza com borda, separado do campo */
.yt-mic-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-right-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.yt-notif-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #cc0000;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 10px;
}

.yt-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 6px;
    border: 1px solid rgba(0,0,0,0.15);
}

.yt-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Player Container & Live Badges */
.yt-player-section {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
}

.yt-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.yt-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.yt-live-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 12;
    background: rgba(0,0,0,0.85);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.yt-live-badge-top .red-dot {
    font-size: 0.7rem;
    animation: pulse 1.5s infinite;
}

.yt-video-title {
    font-size: clamp(1.15rem, 4vw, 1.4rem);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.35;
    margin: 4px 0;
}

/* Channel Info & Buttons */
.yt-channel-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 12px;
    overflow: hidden;
}

.yt-channel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* Bloco de texto: nome + subscritores empilhados */
.yt-channel-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    overflow: hidden;
}

.yt-channel-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.yt-channel-name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f0f0f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yt-verified-check {
    font-size: 0.65rem;
    background: #606060;
    color: #ffffff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.yt-channel-subs {
    font-size: 0.76rem;
    color: #606060;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yt-subscribe-btn {
    background: #0f0f0f;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.yt-subscribe-btn.subscribed {
    background: #f2f2f2;
    color: #0f0f0f;
}

/* Pílulas de Reação — sempre em linha, nunca quebram no desktop */
.yt-reaction-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.yt-like-dislike-pill {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 20px;
    overflow: hidden;
    height: 36px;
}

.yt-pill-sub-btn {
    background: transparent;
    border: none;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f0f0f;
    cursor: pointer;
    transition: background 0.15s;
}

.yt-pill-sub-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.yt-pill-sub-btn.active {
    color: #065fd4;
}

.yt-pill-separator {
    width: 1px;
    height: 20px;
    background: #d9d9d9;
}

.yt-action-pill {
    background: #f2f2f2;
    border: none;
    border-radius: 20px;
    padding: 0 14px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f0f0f;
    cursor: pointer;
    transition: background 0.15s;
}

.yt-action-pill:hover {
    background: rgba(0, 0, 0, 0.08);
}

.yt-action-pill-circle {
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    cursor: pointer;
    transition: background 0.15s;
}

.yt-action-pill-circle:hover {
    background: rgba(0, 0, 0, 0.08);
}

.yt-pill-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Notice Box (Light Theme) */
.yt-live-notice-box {
    background: #f2f2f2;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 4px 0;
    font-size: 0.88rem;
    color: #0f0f0f;
    line-height: 1.45;
}

.notice-live-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: #0f0f0f;
}

.notice-desc {
    font-size: 0.88rem;
    color: #333333;
}

/* CTA Checkout Button (Red Pill with Delay) */
.yt-cta-container {
    margin: 12px 0;
    text-align: center;
}

.btn-red-yt-checkout {
    background: linear-gradient(180deg, #e50914 0%, #b80710 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px 24px;
    font-size: 1.15rem;
    font-weight: 900;
    font-family: var(--font-outfit);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 22px rgba(229, 9, 20, 0.5);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-red-yt-checkout:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 26px rgba(229, 9, 20, 0.7);
}

.btn-red-yt-checkout:active {
    transform: scale(0.98);
}

/* Live Chat Section (Light Theme) */
.yt-live-chat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    margin-top: 10px;
}

.yt-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f0f0f;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
}

.yt-chat-count {
    font-size: 0.82rem;
    color: #606060;
}

.yt-chat-messages-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 4px;
    scroll-behavior: smooth;
}

.yt-chat-item {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.35;
    animation: chatFadeIn 0.3s ease-out;
}

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

.yt-chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #ffffff;
    flex-shrink: 0;
}

.yt-chat-user-line {
    display: flex;
    align-items: center;
    gap: 4px;
}

.yt-chat-user-name {
    font-weight: 700;
    color: #606060;
    font-size: 0.82rem;
}

.yt-chat-user-name.verified-name {
    color: #cc0000;
}

.yt-badge-v {
    font-size: 0.65rem;
    background: #cc0000;
    color: #ffffff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.yt-chat-time {
    font-size: 0.72rem;
    color: #909090;
    margin-left: 2px;
}

.yt-chat-text {
    color: #0f0f0f;
    margin-top: 2px;
    font-size: 0.86rem;
    word-break: break-word;
}

/* Toast Notifications (Light Mode) */
.yt-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f0f;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: opacity 0.3s;
    opacity: 1;
}

/* Avatar Img in Chat */
.yt-chat-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Chat Input Row (Light Mode) */
.yt-chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.yt-chat-input {
    flex: 1;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 14px;
    color: #0f0f0f;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.yt-chat-input:focus {
    border-color: #065fd4;
}

.yt-send-btn {
    background: #065fd4;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
    flex-shrink: 0;
}

.yt-send-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.yt-send-svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .yt-center-search {
        display: none;
    }
    .yt-player-section {
        padding: 8px;
    }
    /* Canal + Pílulas empilhados verticalmente no mobile */
    .yt-channel-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .yt-reaction-buttons {
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
    }
    .yt-channel-info {
        width: 100%;
        justify-content: space-between;
    }
}




