/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    --gold-primary: #F0CB4D; /* Dourado do logo */
    --gold-secondary: #FFD700;
    --gold-dark: #D4AF37;
    --gold-light: #F8DE7E;
    --gold-accent: #FFC107;
    
    --text-primary: #FCFDFD; /* Branco do logo */
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    
    --background-primary: #0B1020; /* Fundo escuro do site */
    --background-secondary: #121830;
    --background-card: #1A1F35;
    --background-light: #2A2F45;
    
    --success: #4CAF50;
    --error: #FF6B6B;
    --info: #2196F3;
    
    --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    --gradient-background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    --gradient-card: linear-gradient(135deg, rgba(26, 31, 53, 0.95) 0%, rgba(40, 45, 70, 0.95) 100%);
    
    --shadow-gold: 0 4px 20px rgba(240, 203, 77, 0.3);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-popup: 0 20px 60px rgba(0, 0, 0, 0.8);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 25px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--background-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMAÇÕES GLOBAIS ===== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loading {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0%); }
    100% { width: 0%; transform: translateX(100%); }
}

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

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

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

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-5px); opacity: 1; }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.loading-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
    animation: pulse 2s infinite;
}

/* IMAGEM GRANDE E CENTRALIZADA - SEM FUNDO AMARELO */
.loading-logo-img {
    width: auto;
    height: auto;
    max-width: 90vw; /* 90% da largura da tela */
    max-height: 60vh; /* 60% da altura da tela */
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(240, 203, 77, 0.5)); /* Usa a cor do logo */
    margin: 0 auto;
}

.loading-bar-large {
    width: 90vw; /* Mesma largura que a imagem */
    max-width: 800px;
    height: 8px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido do logo */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.loading-progress-large {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-primary), #FFED4E, var(--gold-primary));
    border-radius: 4px;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

/* ===== HEADER ===== */
.main-header {
    background: rgba(11, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    border-bottom: 1px solid rgba(240, 203, 77, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-selector select {
    background: transparent;
    border: 1px solid rgba(252, 253, 253, 0.2); /* Branco do logo */
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.currency-selector select option {
    background: var(--background-card);
    color: var(--text-primary);
}

.header-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 203, 77, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.promo-badge {
    color: var(--gold-primary);
    animation: pulse 2s infinite;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-register {
    background: var(--gradient-gold);
    color: #000;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 32px;
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    background: rgba(240, 203, 77, 0.1);
    color: var(--gold-primary);
}

.nav-link.active {
    background: rgba(240, 203, 77, 0.15);
    color: var(--gold-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.badge-hot {
    color: #FF6B6B;
    animation: pulse 1s infinite;
}

.user-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.user-balance:hover {
    background: rgba(240, 203, 77, 0.1);
    color: var(--gold-primary);
}

.balance-amount {
    font-weight: 600;
    color: var(--gold-primary);
}

.add-funds {
    color: var(--gold-primary);
    font-size: 18px;
}

.user-dropdown {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.user-avatar:hover {
    transform: scale(1.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-card);
    border: 1px solid rgba(240, 203, 77, 0.2);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 200px;
    display: none;
    box-shadow: var(--shadow-heavy);
    z-index: 1001;
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    transition: var(--transition);
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: rgba(240, 203, 77, 0.1);
    color: var(--gold-primary);
}

.dropdown-divider {
    height: 1px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    margin: 10px 0;
}

.logout-btn {
    color: #FF6B6B;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    color: var(--text-primary);
    font-size: 24px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-background);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
                rgba(240, 203, 77, 0.1) 0%, 
                transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-glow {
    display: block;
    font-size: 18px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(240, 203, 77, 0.1);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-hero {
    padding: 18px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.btn-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.hero-image {
    position: relative;
}

.hero-game-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-game-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.game-card-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.game-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.game-badge.hot {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--text-primary);
}

.game-badge.new {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: var(--text-primary);
}

.game-card-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-card-image i {
    font-size: 100px;
    color: var(--text-primary);
    opacity: 0.3;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.game-card-image:hover .game-overlay {
    opacity: 1;
}

.btn-play, .btn-demo {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-play {
    background: var(--gradient-gold);
    color: #000;
}

.btn-demo {
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    color: var(--text-primary);
    border: 1px solid rgba(252, 253, 253, 0.2);
}

.btn-play:hover, .btn-demo:hover {
    transform: translateY(-3px);
}

.game-card-footer {
    padding: 20px;
}

.game-card-footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gold-primary);
    font-weight: 600;
}

/* ===== ORIGINAIS SECTION ===== */
.originals-section {
    padding: 80px 0;
    background: var(--gradient-background);
    position: relative;
}

.originals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
}

.title-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 10px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    gap: 12px;
}

.originals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .originals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.original-card {
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(240, 203, 77, 0.1);
    position: relative;
}

.original-card.featured {
    border: 2px solid var(--gold-primary);
}

.original-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(240, 203, 77, 0.2);
    border-color: var(--gold-primary);
}

.original-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.original-badge.new {
    background: #4CAF50;
    color: var(--text-primary);
}

.original-badge.hot {
    background: #FF5252;
    color: var(--text-primary);
}

.original-card-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.original-card.featured .original-card-image {
    background: var(--gradient-gold);
}

.original-card-image i {
    font-size: 80px;
    color: var(--text-primary);
    opacity: 0.3;
    transition: var(--transition);
}

.original-card:hover .original-card-image i {
    transform: scale(1.2);
    opacity: 0.5;
}

.original-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.original-card:hover .original-overlay {
    opacity: 1;
}

.original-overlay h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.original-overlay p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.btn-play {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 203, 77, 0.4);
}

.original-card-content {
    padding: 20px;
}

.original-card-content h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.original-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.original-rating,
.original-players {
    display: flex;
    align-items: center;
    gap: 5px;
}

.original-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.originals-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== LIVE SECTION ===== */
.live-section {
    padding: 80px 0;
    background: var(--background-primary);
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 203, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.live-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(240, 203, 77, 0.2);
    transition: var(--transition);
}

.live-card.featured {
    grid-column: span 2;
}

.live-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.live-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.live-badge {
    background: rgba(255, 0, 0, 0.8);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-indicator {
    color: #FF6B6B;
    font-size: 10px;
    animation: pulse 1s infinite;
}

.live-viewers {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-card-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-card-image i {
    font-size: 80px;
    color: var(--text-primary);
    opacity: 0.3;
}

.live-card-content {
    padding: 25px;
}

.live-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.dealer-name {
    color: var(--gold-primary);
    font-weight: 600;
}

.live-limits {
    margin: 15px 0;
    padding: 10px;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    border-radius: var(--radius-sm);
    border: 1px solid rgba(240, 203, 77, 0.1);
}

.btn-live {
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-live:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===== PROMOTIONS SECTION ===== */
.promotions-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.promo-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    border: 1px solid rgba(240, 203, 77, 0.2);
    transition: var(--transition);
}

.promo-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.promo-main {
    grid-column: span 2;
    border: 2px solid var(--gold-primary);
    background: var(--gradient-card);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    background: var(--gradient-gold);
    color: #000;
}

.promo-badge.main {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--text-primary);
}

.promo-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.promo-value {
    margin-bottom: 20px;
}

.promo-percent {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.promo-prize {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.promo-up-to {
    display: block;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.promo-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.promo-features {
    list-style: none;
    margin: 20px 0;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.promo-features li i {
    color: var(--gold-primary);
}

.btn-promo {
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-promo:not(.outline) {
    background: var(--gradient-gold);
    color: #000;
}

.btn-promo.outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--background-secondary);
    border-top: 2px solid var(--gold-primary);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold-primary);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-primary);
}

.social-link:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    color: var(--text-primary);
}

.payment-icon:hover {
    background: rgba(240, 203, 77, 0.1);
    transform: translateY(-3px);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 128, 0, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 128, 0, 0.2);
}

.security-badge i {
    color: #4CAF50;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(252, 253, 253, 0.1); /* Branco translúcido */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.license-info {
    display: flex;
    gap: 20px;
}

.license-badge {
    background: var(--background-card);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== WIDGET DE SUPORTE CHATBOT ===== */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Botão Flutuante - SEM FUNDO AMARELO ATRÁS */
.support-widget-btn {
    width: 70px;
    height: 70px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    animation: pulse 2s infinite;
    position: relative;
    padding: 0;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(240, 203, 77, 0.4);
}

.support-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(240, 203, 77, 0.6);
}

/* IMAGEM DO SUPORTE SEM FUNDO AMARELO */
.support-custom-image {
    width: 70px;
    height: 70px;
    object-fit: contain; /* Mantém a proporção da imagem */
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(240, 203, 77, 0.5);
    transition: var(--transition);
    background: none; /* SEM FUNDO */
    display: block;
}

.support-widget-btn:hover .support-custom-image {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(240, 203, 77, 0.8);
}

.support-widget-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: var(--text-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* Container do Chat */
.support-chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--gradient-card);
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--gold-primary);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
    z-index: 10001;
}

.support-chat-container.show {
    display: flex;
    opacity: 1;
}

/* Cabeçalho do Chat */
.support-chat-header {
    background: linear-gradient(135deg, rgba(240, 203, 77, 0.2), rgba(255, 165, 0, 0.1));
    padding: 15px 20px;
    border-bottom: 1px solid rgba(240, 203, 77, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.support-chat-header h4 {
    color: var(--gold-primary);
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-chat-close {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.support-chat-close:hover {
    background: rgba(240, 203, 77, 0.2);
    transform: rotate(90deg);
}

/* Área de Mensagens */
.support-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 203, 77, 0.5) rgba(252, 253, 253, 0.1);
}

.support-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.support-chat-messages::-webkit-scrollbar-track {
    background: rgba(252, 253, 253, 0.1);
    border-radius: 10px;
}

.support-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(240, 203, 77, 0.5);
    border-radius: 10px;
}

.support-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 203, 77, 0.7);
}

/* Estilos para mensagens */
.chat-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
    margin-bottom: 5px;
}

.chat-message.bot {
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    border: 1px solid rgba(240, 203, 77, 0.2);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-message.user {
    background: var(--gradient-gold);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    font-weight: 500;
}

/* Área de Entrada */
.support-chat-input-area {
    padding: 15px;
    border-top: 1px solid rgba(240, 203, 77, 0.3);
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* Opções Rápidas */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.support-option-btn {
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    border: 1px solid rgba(240, 203, 77, 0.2);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-option-btn:hover {
    background: rgba(240, 203, 77, 0.15);
    border-color: var(--gold-primary);
    transform: translateX(3px);
}

.support-option-btn i {
    color: var(--gold-primary);
    font-size: 14px;
}

/* Textarea para mensagem personalizada */
.support-custom-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    border: 1px solid rgba(240, 203, 77, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: Arial, sans-serif;
    resize: none;
    min-height: 80px;
    margin-bottom: 10px;
}

.support-custom-textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(240, 203, 77, 0.2);
}

.support-custom-textarea::placeholder {
    color: rgba(252, 253, 253, 0.5); /* Branco translúcido */
}

/* Botões de ação */
.support-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.support-action-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 13px;
}

.support-action-btn.primary {
    background: var(--gradient-gold);
    color: #000;
}

.support-action-btn.secondary {
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    color: var(--text-primary);
    border: 1px solid rgba(240, 203, 77, 0.3);
}

.support-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 203, 77, 0.2);
}

/* Status do Ticket */
.ticket-status {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
}

.ticket-status h5 {
    color: #4CAF50;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.ticket-status p {
    color: rgba(252, 253, 253, 0.8);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.ticket-id {
    background: rgba(240, 203, 77, 0.1);
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: monospace;
    color: var(--gold-primary);
    font-size: 12px;
    word-break: break-all;
}

/* Indicador de Digitando */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(252, 253, 253, 0.6);
    font-size: 12px;
    margin-top: 5px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: typing 1.5s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* ===== POPUP DE REGISTO ===== */
.register-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.register-popup-overlay.show {
    display: flex;
}

.register-popup-container {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-popup);
    animation: slideUp 0.4s ease;
    position: relative;
}

.register-popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.register-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(240, 203, 77, 0.1);
    border: 1px solid rgba(240, 203, 77, 0.3);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 18px;
}

.register-popup-close:hover {
    background: rgba(240, 203, 77, 0.2);
    transform: rotate(90deg);
}

.register-popup-hero {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9) 0%, rgba(45, 27, 105, 0.9) 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.register-popup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f0cb4d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.register-popup-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.register-popup-logo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    box-shadow: 0 0 30px rgba(240, 203, 77, 0.4);
}

.register-popup-logo-text {
    display: flex;
    flex-direction: column;
}

.register-popup-logo-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.register-popup-logo-text span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 3px;
    margin-top: 5px;
}

.register-popup-title {
    margin-bottom: 30px;
}

.register-popup-title h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.register-popup-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-popup-features {
    margin-bottom: 40px;
}

.register-popup-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.register-popup-feature i {
    color: var(--gold-primary);
    font-size: 20px;
    width: 30px;
}

.register-popup-feature span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.register-popup-bonus {
    background: rgba(240, 203, 77, 0.1);
    border: 1px solid rgba(240, 203, 77, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.register-popup-bonus h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.register-popup-bonus-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.register-popup-bonus-amount .amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-popup-bonus-amount .plus {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.register-popup-bonus-amount .spins {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.register-popup-bonus p {
    color: rgba(252, 253, 253, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.register-popup-form-section {
    padding: 60px 40px;
    overflow-y: auto;
}

/* ===== FORMULÁRIO DO POPUP ===== */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    border: 2px solid rgba(252, 253, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--gradient-gold);
    border-color: var(--gold-primary);
    color: #000;
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--text-primary);
}

.step-text {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-text {
    color: var(--gold-primary);
    font-weight: 600;
}

.step-line {
    width: 50px;
    height: 2px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    transition: var(--transition);
}

.step-line.active {
    background: var(--gradient-gold);
}

.message-container {
    margin-bottom: 20px;
}

.message {
    padding: 15px 20px;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    animation: fadeIn 0.3s ease;
}

.message.show {
    display: flex;
}

.message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.message-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-label i {
    color: var(--gold-primary);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(252, 253, 253, 0.08); /* Branco translúcido */
    border: 1px solid rgba(252, 253, 253, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(240, 203, 77, 0.2);
    background: rgba(252, 253, 253, 0.12);
}

.input-focus-line {
    height: 2px;
    background: var(--gradient-gold);
    width: 0;
    transition: var(--transition);
    margin-top: -2px;
}

.form-input:focus ~ .input-focus-line {
    width: 100%;
}

.input-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
}

.password-strength {
    margin-top: 10px;
}

.strength-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    border-radius: 2px;
    transition: var(--transition);
}

.strength-bar.active {
    background: var(--gold-primary);
}

.strength-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.password-match {
    display: none;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 0.8rem;
}

.password-match.show {
    display: flex;
}

.password-match.valid {
    color: var(--success);
}

.password-match:not(.valid) {
    color: var(--error);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(252, 253, 253, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-item input[type="checkbox"]:checked ~ label .checkbox-custom {
    background: var(--gradient-gold);
    border-color: var(--gold-primary);
}

.checkbox-item input[type="checkbox"]:checked ~ label .checkbox-custom::after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.required {
    color: var(--error);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-next, .btn-complete, .btn-back {
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-next, .btn-complete {
    background: var(--gradient-gold);
    color: #000;
    flex: 1;
}

.btn-back {
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
    color: var(--text-primary);
    border: 1px solid rgba(252, 253, 253, 0.2);
}

.btn-next:hover, .btn-complete:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-back:hover {
    background: rgba(252, 253, 253, 0.2);
}

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(252, 253, 253, 0.1); /* Branco translúcido */
}

.divider span {
    padding: 0 15px;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.btn-social {
    padding: 12px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.85rem;
    border: 1px solid rgba(252, 253, 253, 0.1);
    color: var(--text-primary);
}

.btn-social.google {
    background: rgba(219, 68, 55, 0.1);
}

.btn-social.facebook {
    background: rgba(59, 89, 152, 0.1);
}

.btn-social.apple {
    background: rgba(0, 0, 0, 0.1);
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.date-input {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.date-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(252, 253, 253, 0.08); /* Branco translúcido */
    border: 1px solid rgba(252, 253, 253, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F0CB4D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.date-select option {
    background: var(--background-card);
    color: var(--text-primary);
}

.select-container {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px;
    background: rgba(252, 253, 253, 0.08); /* Branco translúcido */
    border: 1px solid rgba(252, 253, 253, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(252, 253, 253, 0.1);
}

.form-footer p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.login-link {
    color: var(--gold-primary);
    font-weight: 600;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 128, 0, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 128, 0, 0.2);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.security-badge i {
    color: #4CAF50;
}

/* ===== NOTIFICAÇÕES GLOBAIS ===== */
.global-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(11, 16, 32, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 203, 77, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.global-notification.show {
    transform: translateX(0);
}

.global-notification.success {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.global-notification.error {
    background: rgba(244, 67, 54, 0.2);
    border-color: #f44336;
}

.global-notification.info {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.global-notification i {
    font-size: 20px;
}

.global-notification.success i {
    color: #4CAF50;
}

.global-notification.error i {
    color: #f44336;
}

.global-notification.info i {
    color: #2196F3;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}

/* ===== MODAIS ===== */
.modal-overlay, .support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-overlay.show, .support-modal.active {
    display: flex;
}

.modal, .support-modal-content {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease;
}

.modal-header, .support-modal-header {
    background: var(--gradient-gold);
    padding: 25px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3, .support-modal-header h3 {
    color: #000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.modal-close, .support-modal-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: var(--transition);
    font-size: 20px;
}

.modal-close:hover, .support-modal-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.modal-body, .support-modal-body {
    padding: 30px;
}

.deposit-methods {
    display: grid;
    gap: 15px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(252, 253, 253, 0.05); /* Branco translúcido */
    border-radius: var(--radius);
    border: 1px solid rgba(252, 253, 253, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.method-card:hover {
    background: rgba(240, 203, 77, 0.1);
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.method-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.method-fee {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ===== BOTÕES GLOBAIS ===== */
.open-register-popup {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.open-register-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 203, 77, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .promo-main {
        grid-column: span 1;
    }
    
    .live-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .register-popup-container {
        grid-template-columns: 1fr;
        height: 95vh;
        max-height: none;
        width: 95%;
    }

    .register-popup-hero {
        display: none;
    }

    .register-popup-form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-card);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--gold-primary);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-main {
        font-size: 36px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .support-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .support-widget-btn {
        width: 60px;
        height: 60px;
    }
    
    .support-custom-image {
        width: 60px;
        height: 60px;
    }
    
    .support-chat-container {
        width: 320px;
        height: 450px;
        bottom: 70px;
    }
    
    .support-chat-header h4 {
        font-size: 15px;
    }
    
    .global-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
    
    .register-popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .date-input {
        grid-template-columns: 1fr;
    }
    
    .loading-logo-img {
        max-width: 85vw;
        max-height: 50vh;
    }
    
    .loading-bar-large {
        width: 85vw;
    }
}

@media (max-width: 480px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-main {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .support-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .support-widget-btn {
        width: 50px;
        height: 50px;
    }
    
    .support-custom-image {
        width: 50px;
        height: 50px;
    }
    
    .support-chat-container {
        width: 300px;
        height: 400px;
        right: -10px;
    }
    
    .register-popup-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        border: none;
    }
    
    .register-popup-form-section {
        padding: 25px 15px;
    }
    
    .form-input {
        padding: 12px 14px;
    }
    
    .btn-next, .btn-complete {
        padding: 14px 20px;
    }
    
    .support-options {
        gap: 5px;
    }
    
    .support-option-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== ESTILOS ADICIONAIS PARA FORMULÁRIOS ===== */
.field-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-input.invalid {
    border-color: var(--error);
}

.form-input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.age-hint {
    font-size: 0.8rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== ANIMAÇÕES ADICIONAIS ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, 
        rgba(252, 253, 253, 0.1) 25%, 
        rgba(252, 253, 253, 0.2) 50%, 
        rgba(252, 253, 253, 0.1) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

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

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}