@charset "UTF-8";

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

:root {
    --bg-dark: #0B0B0B;
    --bg-card: #1A1A1A;
    --bg-card-light: #1A1A1A;
    --accent-blue: #0099ff;
    --accent-blue-dark: #0088ee;
    --accent-gold: #F5C542;
    --accent-gold-dark: #E6B325;
    --accent-gold-darker: #C9961A;
    --accent-red: #E53935;
    --accent-red-dark: #C62828;
    --accent-red-darker: #A31616;
    --accent-brown: #4E2A1E;
    --accent-brown-light: #6B3A26;
    --text-primary: #FFFFFF;
    --text-secondary: #F2F2F2;
    --border-color: #2A2A2A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding-bottom: 60px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header */
.header {
    background: var(--bg-card);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.header-logo-highlight {
    color: #FFD700;
    font-weight: 800;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.header-badge {
    font-size: 18px;
    margin-left: 4px;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    position: relative;
}

.balance-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.balance-value {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 700;
}

.header-deposit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}

.header-deposit-btn svg {
    width: 18px;
    height: 18px;
}

.header-deposit-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.header-deposit-btn:active {
    transform: translateY(0);
}

@media (max-width: 420px) {
    .header-deposit-btn {
        width: 32px;
        height: 32px;
    }
    .header-deposit-btn svg {
        width: 16px;
        height: 16px;
    }
}

.profile-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    margin-left: 4px;
}

.profile-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
}

.profile-icon-btn:hover {
    background: var(--bg-dark);
    color: var(--accent-gold);
}

.profile-icon-btn:hover svg {
    stroke: var(--accent-gold);
}

/* Profile Dropdown */
.dropdown__content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    min-width: 240px;
    z-index: 1001;
    overflow: hidden;
}

.dropdown__content.active {
    display: block;
}

.dropdown__content .page-nav {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.dropdown__content .page-nav li {
    margin: 0;
    padding: 0;
}

.dropdown__content .page-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.dropdown__content .page-nav li a:hover {
    background: var(--bg-card-light);
    color: var(--accent-gold);
}

.dropdown__content .page-nav li a svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.dropdown__content .page-nav hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 8px 0;
}

.btn-register {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.btn-register::before {
    content: 'PIX';
    position: absolute;
    top: -8px;
    right: 8px;
    background: var(--accent-red);
    color: var(--text-primary);
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Promo Banner */
.promo-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-card-light);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.promo-text h2 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-btn {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.promo-characters {
    font-size: 70px;
}

.banner-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px 0;
    position: relative;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

.age-restriction {
    position: absolute;
    bottom: 50px;
    left: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    z-index: 3;
    background: rgba(11, 11, 11, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Search Bar */
.search-container {
    margin-bottom: 20px;
}

.search-bar {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.search-icon {
    font-size: 20px;
    color: var(--text-secondary);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Categories */
.categories-section {
    margin-bottom: 24px;
}

.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    padding-left: 12px;
    align-items: center;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 78px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.category-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.category-card.highlight {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border-color: var(--accent-gold);
    border-width: 2px;
    box-shadow: 0 0 10px rgba(245, 197, 66, 0.3);
    transform: scale(1.05);
}

.category-label {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.category-card.highlight .category-label {
    color: var(--accent-gold);
}

/* Logos das categorias */
.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 8px;
}

.category-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    /* garante que logos "altas" (ex: TADA) não passem do card */
    transform: scale(0.92);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.category-scroll {
    align-items: center;
}

/* Game Sections */
.game-section {
    margin-bottom: 32px;
}

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

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.see-all {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Grid de jogos (compatível com Chrome Mobile) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.game-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
}

.game-image {
    width: 100%;
    position: relative;
    /* Proporção 3:5 sem depender de aspect-ratio */
    padding-bottom: 166.67%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card-light);
}

.game-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    padding: 8px 4px;
    line-height: 1.3;
    margin-top: 4px;
}


.fortune-rabbit {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.aviator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fortune-tiger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.fortune-dragon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.aviator-crash {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.sweet-bonanza {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.mines {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.fruits {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0 8px 0;
    z-index: 1000;
    height: 60px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    opacity: 1;
    color: var(--accent-gold);
    transition: opacity 0.2s;
}

.nav-item.active {
    opacity: 1;
}

.nav-item.active .nav-icon {
    color: #ffffff !important;
}

.nav-item.active .nav-icon svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    stroke: #ffffff !important;
}

.nav-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--accent-gold);
}

.nav-deposit {
    /* Mantém o layout em coluna (.nav-item) para mostrar o texto "Depósito" embaixo */
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    margin-top: -18px;
    box-shadow: none;
    opacity: 1;
}

.nav-deposit .nav-icon {
    background: #22c55e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.45);
    color: #fff;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1900;
    display: none;
    pointer-events: none;
}

.sidebar.active {
    display: block;
    pointer-events: auto;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1901;
}

.sidebar.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-card) 0%, #151515 100%);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 197, 66, 0.1) inset;
    z-index: 1902;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
    opacity: 0.3;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    opacity: 0.6;
}

.sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(245, 197, 66, 0.15);
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.05) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-toggle-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(245, 197, 66, 0.1);
}

.sidebar-toggle-icon:hover {
    background: rgba(245, 197, 66, 0.2);
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.sidebar-toggle-icon:active {
    transform: rotate(90deg) scale(0.95);
}

.sidebar-toggle-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.sidebar-menu {
    padding: 8px 0 20px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    margin: 4px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
}

.sidebar-link:hover {
    background: linear-gradient(90deg, rgba(245, 197, 66, 0.1) 0%, rgba(245, 197, 66, 0.05) 100%);
    color: var(--text-primary);
    border-left-color: var(--accent-gold);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sidebar-link:hover::before {
    transform: scaleY(1);
}

.sidebar-link:hover .sidebar-icon {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.sidebar-link:active {
    transform: translateX(2px) scale(0.98);
}

.sidebar-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 0 transparent);
    transition: filter 0.25s ease;
}

.sidebar-link:hover .sidebar-icon svg {
    filter: drop-shadow(0 0 4px rgba(245, 197, 66, 0.4));
}

/* Game Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.game-modal.active {
    display: block;
}

.modal-content {
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 20px;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Register Modal */
.register-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2500;
    /* Evita cortar conteúdo alto no mobile (scroll fica dentro do modal) */
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
}

.register-modal.active {
    display: flex;
}

.register-modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    /* Scroll interno quando o conteúdo for maior que a tela */
    max-height: calc(100dvh - 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ===== Depósito (modal) ===== */
.deposit-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

/* ===== Saque (modal) ===== */
.withdraw-modal-content{
    background: radial-gradient(120% 120% at 50% 0%, rgba(3, 106, 233, 0.18) 0%, rgba(0,0,0,0) 55%), var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.withdraw-header{
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.10);
    backdrop-filter: blur(8px);
    gap: 12px;
}

.withdraw-header h2{
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: .2px;
    flex: 1;
    text-align: center;
}

.withdraw-close-btn{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
}
.withdraw-close-btn:hover{ background: rgba(255,255,255,0.10); }

.withdraw-body{
    padding: 20px 18px 18px 18px;
    overflow: auto;
    flex: 1;
    min-height: 0;
}

.withdraw-amount{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 14px;
    margin-bottom: 18px;
}
.withdraw-amount input{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 800;
}
.withdraw-amount input::placeholder{
    color: rgba(255,255,255,0.45);
    font-weight: 700;
}

.withdraw-section-title{
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.withdraw-method-tabs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.withdraw-method-tab{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.65);
    border-radius: 12px;
    padding: 10px 8px;
    font-weight: 900;
    letter-spacing: .4px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.withdraw-method-tab.active{
    background: rgba(3, 106, 233, 0.18);
    border-color: rgba(3, 106, 233, 0.45);
    color: var(--text-primary);
}
.withdraw-method-tab:active{ transform: translateY(1px); }

.withdraw-form{
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.withdraw-field label{
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
}

.withdraw-static{
    font-size: 16px;
    font-weight: 900;
    color: var(--text-primary);
    padding: 0 2px 12px 2px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.withdraw-field input{
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.withdraw-primary-btn{
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 14px 14px;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(66, 153, 245, 0.95), rgba(3, 106, 233, 1));
    box-shadow: 0 18px 28px rgba(3, 106, 233, 0.22);
}
.withdraw-primary-btn:active{ transform: translateY(1px); }

.withdraw-message{
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
    text-align: center;
}
.withdraw-message.error{
    background: rgba(229, 57, 53, 0.15);
    border-color: rgba(229, 57, 53, 0.3);
    color: var(--accent-red);
}
.withdraw-message.success{
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.withdraw-notice{
    margin: 0 0 16px 0;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.35;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
}
.withdraw-notice.error{
    background: rgba(245, 197, 66, 0.10);
    border-color: rgba(245, 197, 66, 0.25);
    color: var(--accent-gold);
}
.withdraw-notice.info{
    background: rgba(3, 106, 233, 0.16);
    border-color: rgba(3, 106, 233, 0.35);
    color: rgba(255,255,255,0.95);
}

@media (max-width: 420px){
    .withdraw-body{ padding: 18px 14px 14px 14px; }
    .withdraw-method-tabs{ gap: 8px; }
    .withdraw-method-tab{ padding: 10px 6px; font-size: 12px; }
}

.deposit-header {
    background: var(--bg-card-light);
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}

.deposit-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    flex: 1;
    text-align: center;
}

.deposit-close-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
}

.deposit-close-btn:hover {
    background: rgba(255,255,255,0.10);
}

.deposit-body {
    padding: 18px;
    flex: 1;
    min-height: 0;
    overflow: auto;
}

/* Melhorias específicas para o modal PIX */
#pixQrModal .deposit-body {
    padding: 28px 24px;
}

#pixQrModal .deposit-header {
    padding: 20px 24px;
    border-bottom: 2px solid var(--border-color);
}

#pixQrModal .deposit-header h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-gold);
}

.deposit-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.deposit-tab {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 800;
    padding: 10px 12px;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.deposit-tab.active::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -11px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-gold);
    opacity: 0.95;
}

.deposit-tab.active {
    border-color: rgba(245, 197, 66, 0.45);
    background: rgba(245, 197, 66, 0.10);
    color: var(--accent-gold);
}

.deposit-tab:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.07);
}

.deposit-panel {
    display: none;
}

.deposit-panel.active {
    display: block;
}

.crypto-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(245, 197, 66, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.crypto-warning svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.crypto-warning span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.deposit-form-grid {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.deposit-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
}

.deposit-field input,
.deposit-field select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.deposit-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.deposit-amount-input.compact {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
}

.deposit-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
}

.deposit-address-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 13px;
}

.deposit-methods {
    padding: 8px 0 14px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 14px;
}

.deposit-method {
    background: var(--accent-gold);
    border: none;
    color: var(--bg-dark);
    font-weight: 900;
    border-radius: 12px;
    padding: 12px 18px;
    min-width: 110px;
    cursor: default;
    box-shadow: 0 10px 22px rgba(245, 197, 66, 0.25);
}

.deposit-amount-input {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 12px 0;
    padding: 12px 12px;
    border-radius: 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
}

.deposit-amount-prefix {
    color: var(--text-secondary);
    font-weight: 900;
}

#depositAmountInput {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 900;
}

#depositAmountInput::placeholder {
    color: rgba(242,242,242,0.55);
    font-weight: 700;
}

.deposit-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.deposit-amount-btn {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 10px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    min-width: 0;
}

.deposit-amount-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.06);
}

.deposit-amount-btn.active {
    border-color: rgba(245, 197, 66, 0.6);
    background: rgba(245, 197, 66, 0.12);
}

.deposit-amount-text {
    font-weight: 900;
    display: block;
    width: 100%;
    text-align: center;
}

/* removido: badge de bônus (+25%) */

.deposit-primary-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 16px 14px;
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.95), rgba(230, 179, 37, 1));
    box-shadow: 0 18px 28px rgba(245, 197, 66, 0.22);
}

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

.deposit-message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.deposit-message.error {
    background: rgba(229, 57, 53, 0.15);
    color: var(--accent-red);
    border-color: rgba(229, 57, 53, 0.3);
}

.deposit-pix-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.deposit-pix-qr {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.05) 0%, rgba(245, 197, 66, 0.02) 100%);
    border-radius: 16px;
    border: 2px solid rgba(245, 197, 66, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.deposit-pix-qr:hover {
    border-color: rgba(245, 197, 66, 0.4);
    box-shadow: 0 6px 30px rgba(245, 197, 66, 0.15);
}

.deposit-pix-qr img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.deposit-pix-code {
    margin-bottom: 16px;
}

.deposit-pix-code label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deposit-pix-code-wrapper {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.deposit-pix-code-wrapper textarea {
    flex: 1;
    min-height: 80px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    resize: none;
    line-height: 1.5;
    overflow: hidden;
}

.deposit-pix-copy-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--accent-gold);
    cursor: pointer;
    transition: all 0.2s ease;
}

.deposit-pix-copy-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.deposit-pix-copy-btn:active {
    transform: scale(0.95);
}

.deposit-pix-status {
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.deposit-pix-status-loading {
    background: rgba(245, 197, 66, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 197, 66, 0.3);
}

.deposit-pix-status-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.deposit-pix-status-error {
    background: rgba(229, 57, 53, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.pix-qr-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
}

.pix-qr-content .deposit-pix-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.05) 0%, rgba(245, 197, 66, 0.02) 100%);
    border-radius: 16px;
    border: 2px solid rgba(245, 197, 66, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pix-qr-content .deposit-pix-qr:hover {
    border-color: rgba(245, 197, 66, 0.4);
    box-shadow: 0 6px 30px rgba(245, 197, 66, 0.15);
}

.pix-qr-content .deposit-pix-qr img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pix-qr-content .deposit-pix-code {
    margin-bottom: 0;
}

.pix-qr-content .deposit-pix-code label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pix-qr-content .deposit-pix-code-wrapper {
    gap: 10px;
}

.pix-qr-content .deposit-pix-code-wrapper textarea {
    min-height: 100px;
    font-size: 12px;
    line-height: 1.6;
    word-break: break-all;
}

.pix-qr-content .deposit-pix-status {
    margin-top: 0;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
}

/* Responsividade para o modal PIX */
@media (max-width: 480px) {
    .pix-qr-content {
        gap: 18px;
        padding: 16px 0;
    }
    
    .pix-qr-content .deposit-pix-qr {
        padding: 20px;
    }
    
    .pix-qr-content .deposit-pix-qr img {
        max-width: 250px;
    }
    
    .pix-qr-content .deposit-pix-code-wrapper {
        flex-direction: column;
    }
    
    .pix-qr-content .deposit-pix-copy-btn {
        width: 100%;
        height: 40px;
    }
    
    .pix-qr-content .deposit-pix-code-wrapper textarea {
        min-height: 90px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .deposit-body { padding: 16px; }
    .deposit-amount-btn { padding: 13px 8px; border-radius: 13px; }
    .deposit-primary-btn { border-radius: 16px; }
    
    #pixQrModal .deposit-body {
        padding: 20px 16px;
    }
    
    #pixQrModal .deposit-header {
        padding: 16px 18px;
    }
    
    .pix-qr-content {
        gap: 16px;
    }
}

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

.register-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}

.register-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: center;
}

.register-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.register-close-btn:hover {
    background: var(--bg-card-light);
    color: var(--text-primary);
}

.register-form {
    padding: 24px;
    /* Permite scroll dentro do modal sem cortar */
    flex: 1;
    min-height: 0;
    overflow: auto;
}

/* Modal de convite usa .referral-content/.referral-body em vez de .register-form */
.register-modal-content > .referral-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0;
}

.referral-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 0;
    padding-bottom: 8px;
}

@media (max-width: 420px) {
    .register-modal {
        padding: max(12px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
    }
    .register-modal-content {
        width: 100%;
        max-height: calc(100dvh - 24px);
        border-radius: 14px;
    }
    .register-modal-header {
        padding: 18px 18px 14px 18px;
    }
    .register-form {
        padding: 18px;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-group input.readonly-input {
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-group small.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Balance Modal Styles */
.balance-info-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.balance-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.balance-info-item:last-child {
    border-bottom: none;
}

.balance-info-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.balance-info-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
}

.balance-info-value.bonus {
    color: var(--accent-blue);
}

.balance-info-value.sacavel {
    color: #4CAF50;
}

/* Referral Modal Styles - Simplificado */
.referral-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.referral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}

.referral-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.referral-header h2 svg {
    color: var(--accent-gold);
    width: 20px;
    height: 20px;
}

.referral-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
}

.referral-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.referral-close-btn svg {
    width: 18px;
    height: 18px;
}

.referral-body {
    padding: 20px;
    flex: 1;
    min-height: 0;
    overflow: auto;
    max-width: 100%;
}

.referral-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

/* Link de Convite - Simplificado */
.referral-my-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
}

.referral-my-link-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.referral-my-link-value {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 700;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.referral-copy-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.referral-copy-icon-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

/* Compartilhamento - Simplificado */
.referral-share {
    margin-bottom: 20px;
}

.referral-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: left;
}

#referralShareRow.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#referralShareRow .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.2s;
}

#referralShareRow .social-icon:hover {
    transform: translateY(-2px);
}

#referralShareRow .social-icon svg {
    width: 20px;
    height: 20px;
}

#referralShareRow .social-icon.telegram {
    background: #229ED9;
}

#referralShareRow .social-icon.whatsapp {
    background: #25D366;
}

#referralShareRow .social-icon.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

#referralShareRow .social-icon.tiktok {
    background: #000;
}

/* Estatísticas de Convidados - Simplificado */
.referral-direct {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.referral-direct-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.referral-direct-line {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.referral-direct-count {
    color: var(--accent-gold);
    font-weight: 800;
}

.referral-direct-earn {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.referral-direct-earn-money {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 16px;
}

/* Estatísticas de Convite */
.referral-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.15);
}

.stat-item .stat-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 66, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.stat-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Link de Convite */
.referral-link-section {
    margin-bottom: 28px;
    text-align: center;
}

.referral-link-section label {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.referral-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    max-width: 100%;
}

.referral-link-container input {
    flex: 1;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
}

.btn-copy-link {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a53f 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.btn-copy-link svg {
    width: 18px;
    height: 18px;
}

.btn-copy-link:hover {
    background: linear-gradient(135deg, #d4a53f 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
}

.btn-copy-link:active {
    transform: translateY(0);
}

.referral-note {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    padding: 0 8px;
}

.referral-message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.referral-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.referral-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsividade para Referral Modal */
@media (max-width: 420px) {
    .referral-body {
        padding: 16px;
    }
    
    .referral-header {
        padding: 16px;
    }
    
    .referral-header h2 {
        font-size: 18px;
    }
    
    .referral-my-link {
        padding: 12px;
        flex-wrap: wrap;
    }
    
    .referral-my-link-value {
        font-size: 12px;
        word-break: break-all;
        white-space: normal;
    }
    
    .referral-direct {
        padding: 14px;
    }
    
    .referral-direct-title {
        font-size: 14px;
    }
    
    .referral-direct-line {
        font-size: 12px;
    }
    
    .referral-direct-earn {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .referral-direct-earn-money {
        font-size: 15px;
    }
    
    #referralShareRow .social-icon {
        width: 36px;
        height: 36px;
    }
    
    #referralShareRow .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Baús de Recompensa - Simplificado */
.chests-section {
    margin-top: 20px;
}

.chests-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chests-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.chests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    max-width: 100%;
}

.chest-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chest-item:hover {
    border-color: rgba(245, 197, 66, 0.4);
    transform: translateY(-2px);
}

.chest-item.completed {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
}

.chest-amount {
    background: #E11D48;
    color: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    display: block;
    width: 100%;
}

.chest-item.completed .chest-amount {
    background: #22c55e;
}

.chest-item.completed {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.15) !important;
}

.chest-meta {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 6px;
}

.chest-item.completed .chest-meta {
    color: #22c55e;
    font-weight: 700;
}

.chest-promo {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.chest-item.completed .chest-promo {
    color: #22c55e;
    font-weight: 700;
}

.chest-item.completed::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 420px) {
    .chests-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 6px;
    }
    
    .chest-item {
        padding: 10px 6px;
        min-height: 70px;
    }
    
    .chest-amount {
        font-size: 10px;
        padding: 3px 6px;
    }
}

.register-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.register-submit-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.register-submit-btn:active {
    transform: translateY(0);
}

.register-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.register-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.register-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.register-message.error {
    display: block;
    background: rgba(229, 57, 53, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

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

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.close-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Game Containers */
.game-container {
    padding: 20px 0;
}

.balance-display {
    background: var(--bg-card);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
}

.balance-display span {
    color: var(--accent-gold);
}

/* Slots Machine */
.slots-machine {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 24px;
}

.slots-window {
    background: #000;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}

.reel-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.reel {
    width: 100px;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    border-radius: 10px;
    border: 3px solid #333;
}

.reel .symbol {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: absolute;
}

.reel.spinning {
    animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

/* Aviator */
.aviator-canvas {
    background: var(--bg-card);
    border-radius: 16px;
    height: 400px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aviator-plane {
    font-size: 80px;
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
    transition: bottom 0.1s linear;
}

.aviator-multiplier {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.8);
}

/* Mines */
.mines-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
}

.mine-cell {
    aspect-ratio: 1;
    background: var(--bg-card-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.mine-cell:hover:not(.revealed) {
    background: var(--border-color);
    transform: scale(1.05);
}

.mine-cell.revealed.diamond {
    background: var(--accent-gold);
}

.mine-cell.revealed.mine {
    background: var(--accent-red);
}

/* Game Controls */
.game-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bet-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 12px;
}

.bet-btn-small {
    width: 40px;
    height: 40px;
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.bet-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    outline: none;
}

.spin-btn-large {
    width: 100%;
    padding: 18px;
    background: var(--accent-red);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
}

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

.result-message {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
}

.result-message.win {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 2px solid #00ff88;
}

.result-message.lose {
    background: rgba(255, 51, 102, 0.2);
    color: #ff3366;
    border: 2px solid #ff3366;
}

/* Social Media Section */
.social-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 24px 16px;
    margin-top: 30px;
}

.social-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Payment Partners Section */
.payment-partners-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px 16px;
}

.payment-partners-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
}

.payment-partners-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-partners-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Legal Footer */
.legal-footer {
    background: var(--bg-card);
    border-top: 2px solid var(--border-color);
    padding: 20px 16px;
    margin-top: 30px;
}

.legal-content {
    max-width: 500px;
    margin: 0 auto;
}

.legal-company {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.legal-company p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
}

.legal-company strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.legal-links-useful {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.legal-links-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.legal-links-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-link-item {
    display: block;
}

.legal-link {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
    cursor: pointer;
}

.legal-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.legal-good-luck {
    margin-bottom: 20px;
    text-align: center;
    padding: 16px 0;
}

.good-luck-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFD700 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(245, 197, 66, 0.3);
    margin: 0;
}

.legal-notices {
    margin-bottom: 20px;
}

.legal-notice-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    align-items: flex-start;
    padding-left: 0;
}

.legal-notice-item:last-child {
    margin-bottom: 0;
}

.notice-number {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1.6;
    min-width: 20px;
}

.notice-text {
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}

.legal-copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.legal-copyright p {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.3px;
}

.legal-copyright strong {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 12px;
}

/* Profile Dashboard Modal */
/* Profile Dashboard Modal - Especificidade maior */
#profileDashboardModal .register-modal-content.profile-dashboard-content,
.register-modal-content.profile-dashboard-content {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%) !important;
    max-height: calc(100dvh - 32px) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    width: 95% !important;
    max-width: 500px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 197, 66, 0.1) !important;
}

#profileDashboardModal .profile-dashboard-header,
.profile-dashboard-header {
    padding: 20px 20px 16px !important;
    border-bottom: 1px solid var(--border-color) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.3) !important;
}

#profileDashboardModal .profile-dashboard-header h2,
.profile-dashboard-header h2 {
    margin: 0 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
}

#profileDashboardModal .profile-dashboard-body,
.profile-dashboard-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 20px !important;
    background: transparent !important;
}

/* User Info Section */
.profile-user-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.2) 0%, rgba(245, 197, 66, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 197, 66, 0.3);
    flex-shrink: 0;
}

.profile-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--accent-gold);
}

.profile-user-info {
    flex: 1;
    min-width: 0;
}

.profile-user-id {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.profile-user-id > span:first-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.profile-vip-badge {
    background: rgba(245, 197, 66, 0.15);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(245, 197, 66, 0.3);
}

.profile-vip-badge::before {
    content: '👑';
    font-size: 10px;
}

.profile-account-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.profile-copy-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.profile-copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

/* Balance Section */
.profile-balance-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.profile-balance-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.profile-balance-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.profile-balance-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-balance-value > span {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
}

.profile-refresh-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.profile-refresh-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    transform: rotate(180deg);
}

.profile-bonus-info {
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.profile-bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-bonus-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.profile-bonus-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Action Buttons */
.profile-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-action-btn.deposit-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.profile-action-btn.deposit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-darker) 100%);
}

.profile-action-btn.withdraw-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.profile-action-btn.withdraw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold-darker) 100%);
}

.profile-action-btn svg {
    width: 20px;
    height: 20px;
}

/* VIP Section */
.profile-vip-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.profile-vip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.profile-vip-current {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-vip-badge-large {
    background: rgba(245, 197, 66, 0.15);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    border: 1px solid rgba(245, 197, 66, 0.3);
}

.profile-vip-badge-large::before {
    content: '👑';
    font-size: 14px;
}

.profile-vip-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.profile-vip-details-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.profile-vip-details-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.profile-vip-criteria {
    margin-top: 16px;
}

.profile-vip-criteria-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.profile-vip-progress {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.profile-vip-progress-current {
    color: var(--accent-gold);
    font-weight: 800;
}

.profile-vip-levels {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-vip-level-marker {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.profile-vip-level-marker svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.profile-vip-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.profile-vip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Navigation Menu */
.profile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
}

.profile-nav-item:hover {
    background: rgba(245, 197, 66, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(4px);
    color: var(--accent-gold);
}

.profile-nav-item svg:first-child {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.profile-nav-item > span:first-of-type {
    flex: 1;
}

.profile-nav-item svg:last-child {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.profile-nav-item:hover svg:last-child {
    color: var(--accent-gold);
}

.profile-nav-item-logout {
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.profile-nav-item-logout svg:first-child {
    color: #dc2626;
}

.profile-nav-item-logout:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
    color: #dc2626;
}

.profile-nav-item-logout:hover svg:first-child {
    color: #dc2626;
}

.profile-nav-badge {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-left: auto;
    margin-right: 8px;
}

@media (max-width: 420px) {
    .profile-dashboard-body {
        padding: 16px;
    }
    
    .profile-user-section {
        padding: 12px;
    }
    
    .profile-avatar {
        width: 50px;
        height: 50px;
    }
    
    .profile-avatar svg {
        width: 30px;
        height: 30px;
    }
    
    .profile-balance-value > span {
        font-size: 24px;
    }
    
    .profile-action-buttons {
        gap: 10px;
    }
    
    .profile-action-btn {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* Security Center Modal */
.security-center-content {
    background: var(--bg-card);
    max-height: calc(100dvh - 32px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.security-center-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: var(--bg-card);
}

.security-center-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.security-center-back-btn,
.modal-back-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    z-index: 1;
    flex-shrink: 0;
}

.security-center-back-btn:hover,
.modal-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

.security-center-back-btn svg,
.modal-back-btn svg {
    width: 24px;
    height: 24px;
}

.security-center-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

/* Reports Modal */
.reports-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 8px;
}

.report-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.report-stat-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.15);
    transform: translateY(-2px);
}

.report-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.15) 0%, rgba(245, 197, 66, 0.05) 100%);
    border-radius: 12px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.report-stat-icon svg {
    width: 28px;
    height: 28px;
}

.report-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.report-stat-value {
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 480px) {
    .reports-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reports Tabs */
.reports-tabs {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.report-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -14px;
    position: relative;
}

.report-tab:hover {
    color: var(--accent-gold);
}

.report-tab.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Reports List */
.reports-list {
    margin-top: 20px;
}

.reports-loading,
.reports-error,
.reports-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.reports-error {
    color: var(--accent-red);
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.15);
    transform: translateY(-2px);
}

.transaction-item.transaction-deposit {
    border-left: 4px solid #4CAF50;
}

.transaction-item.transaction-withdraw {
    border-left: 4px solid var(--accent-red);
}

.transaction-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-type {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.transaction-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.transaction-method {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.transaction-amount {
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.transaction-amount.amount-positive {
    color: #4CAF50;
}

.transaction-amount.amount-negative {
    color: var(--accent-red);
}

.transaction-status {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

.transaction-status.status-pending {
    background: rgba(245, 197, 66, 0.2);
    color: var(--accent-gold);
}

.transaction-status.status-error {
    background: rgba(229, 57, 53, 0.2);
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .reports-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .report-tab {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .transaction-item {
        flex-wrap: wrap;
        padding: 12px;
    }
    
    .transaction-amount {
        font-size: 16px;
        width: 100%;
        text-align: right;
    }
    
    .transaction-status {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Need Deposit Modal */
.need-deposit-content {
    text-align: center;
    padding: 20px;
}

.need-deposit-icon {
    margin-bottom: 20px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.need-deposit-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.need-deposit-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Documents Modal */
.documents-content {
    padding: 20px;
}

.documents-info {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(245, 197, 66, 0.1);
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
}

.documents-info p {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.documents-info p:last-child {
    margin-bottom: 0;
}

.documents-deadline {
    color: var(--accent-gold) !important;
    font-size: 16px;
}

.document-upload-group {
    margin-bottom: 24px;
}

.document-label {
    display: block;
    margin-bottom: 8px;
}

.document-label-text {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.document-label-hint {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

.document-upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 12px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-upload-area:hover {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.05);
}

.document-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.document-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-secondary);
    pointer-events: none;
}

.document-upload-placeholder svg {
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
}

.document-upload-placeholder span {
    font-size: 12px;
    font-weight: 600;
}

.document-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
}

.document-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    transition: all 0.2s;
}

.document-remove-btn:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.documents-message {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.documents-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid #10b981;
    display: block;
}

.documents-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid #dc2626;
    display: block;
}

/* Payment Loading Modal */
.payment-loading-content {
    padding: 40px 20px;
    text-align: center;
}

.payment-loading-spinner {
    margin-bottom: 24px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-loading-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.payment-loading-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Payment Rejected Modal */
.payment-rejected-content {
    text-align: center;
    padding: 20px;
}

.payment-rejected-icon {
    margin-bottom: 20px;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-rejected-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.payment-rejected-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.payment-rejected-suggestion {
    color: var(--accent-gold) !important;
    font-weight: 600;
    margin-bottom: 24px !important;
}

/* First Visit Banner Modal */
.first-visit-banner-content {
    padding: 20px;
    max-width: 90%;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.first-visit-banner-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.first-visit-banner-image:hover {
    transform: scale(1.02);
}

.first-visit-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.first-visit-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.first-visit-banner-actions .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.first-visit-banner-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
}

.first-visit-banner-actions .btn-primary:active {
    transform: translateY(0);
}

.first-visit-banner-actions .btn-secondary {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.first-visit-banner-actions .btn-secondary:hover {
    background: var(--bg-card-light);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.first-visit-banner-actions .btn-secondary:active {
    transform: scale(0.98);
}

.first-visit-btn-claim {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

.first-visit-btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
}

.first-visit-btn-skip {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.first-visit-btn-skip:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Promoções Modal */
.promocoes-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

.promocoes-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.promocoes-banner-item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promocoes-banner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.2);
    border-color: var(--accent-gold);
}

.promocoes-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promocoes-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.promocoes-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Daily Bonus Modal */
.daily-bonus-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

.daily-bonus-content {
    max-width: 600px;
    margin: 0 auto;
}

.daily-bonus-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.15) 0%, rgba(245, 197, 66, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
}

.daily-bonus-hero-icon {
    margin-bottom: 12px;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.daily-bonus-hero-icon svg {
    width: 64px;
    height: 64px;
}

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

.daily-bonus-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
    line-height: 1.2;
}

.daily-bonus-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.daily-bonus-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.daily-bonus-highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.daily-bonus-highlight-item .highlight-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-bonus-highlight-item .highlight-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
}

.daily-bonus-highlight-item .highlight-value.today {
    color: var(--accent-gold);
    font-size: 28px;
}

.daily-bonus-features {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.daily-bonus-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.daily-bonus-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.daily-bonus-feature .feature-icon svg {
    width: 24px;
    height: 24px;
}

.daily-bonus-feature span:last-child {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.daily-bonus-requirements {
    margin-bottom: 24px;
}

.daily-bonus-requirement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
}

.daily-bonus-requirement.met {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.daily-bonus-requirement.not-met {
    border-color: var(--accent-red);
    background: rgba(229, 57, 53, 0.1);
}

.daily-bonus-requirement svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.daily-bonus-requirement.not-met svg {
    color: var(--accent-red);
}

.daily-bonus-requirement span:first-of-type {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.requirement-status {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
}

.daily-bonus-requirement.not-met .requirement-status {
    color: var(--accent-red);
}

.daily-bonus-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.daily-bonus-day {
    position: relative;
    padding: 12px 8px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.daily-bonus-day.active {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.15);
    transform: scale(1.05);
}

.daily-bonus-day.completed {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.daily-bonus-day.locked {
    opacity: 0.5;
    background: var(--bg-dark);
}

.daily-bonus-day-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.daily-bonus-day.active .daily-bonus-day-number {
    color: var(--accent-gold);
}

.daily-bonus-day-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
}

.daily-bonus-day.active .daily-bonus-day-value {
    color: var(--accent-gold);
    font-size: 16px;
}

.daily-bonus-day-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 8px;
}

.daily-bonus-day-check {
    position: absolute;
    top: 4px;
    right: 4px;
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 800;
}

.daily-bonus-claim-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-bonus-claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.daily-bonus-claim-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.daily-bonus-claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.claim-btn-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-btn-icon svg {
    width: 28px;
    height: 28px;
}

.claim-btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.claim-btn-text strong {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.claim-btn-text small {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.claim-btn-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-btn-arrow svg {
    width: 24px;
    height: 24px;
}

.daily-bonus-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
}

.daily-bonus-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.daily-bonus-message.success svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.daily-bonus-message.success div {
    flex: 1;
}

.daily-bonus-message.success strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.daily-bonus-message.success p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.daily-bonus-message.error {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
}

.daily-bonus-warning {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.daily-bonus-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
}

.daily-bonus-warning-header svg {
    flex-shrink: 0;
}

.daily-bonus-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daily-bonus-warning-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.daily-bonus-warning-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-gold);
    font-weight: 800;
}

.daily-bonus-loading,
.daily-bonus-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.daily-bonus-error {
    color: var(--accent-red);
}

@media (max-width: 600px) {
    .daily-bonus-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .daily-bonus-day {
        padding: 10px 6px;
    }
    
    .daily-bonus-day-value {
        font-size: 12px;
    }
    
    .daily-bonus-day.active .daily-bonus-day-value {
        font-size: 14px;
    }
}

/* Day 5 Bonus Modal */
.day5-bonus-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

.day5-bonus-content {
    max-width: 600px;
    margin: 0 auto;
}

.day5-bonus-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.15) 0%, rgba(245, 197, 66, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
}

.day5-bonus-hero-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.day5-bonus-hero-icon svg {
    width: 64px;
    height: 64px;
}

.day5-bonus-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
    line-height: 1.2;
}

.day5-bonus-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.day5-bonus-info {
    margin-bottom: 24px;
}

.day5-bonus-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.day5-bonus-info-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.day5-bonus-info-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.day5-bonus-info-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.day5-bonus-status {
    margin-bottom: 24px;
}

.day5-bonus-status-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.day5-bonus-status-item.active {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.day5-bonus-status-item svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
}

.day5-bonus-status-item strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.day5-bonus-status-item p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.day5-bonus-requirements {
    margin-bottom: 24px;
}

.day5-bonus-requirement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.day5-bonus-requirement.met {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.day5-bonus-requirement.not-met {
    border-color: var(--accent-red);
    background: rgba(229, 57, 53, 0.1);
}

.day5-bonus-requirement svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.day5-bonus-requirement.not-met svg {
    color: var(--accent-red);
}

.day5-bonus-requirement span:first-of-type {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.day5-bonus-claim-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day5-bonus-claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.day5-bonus-claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.day5-bonus-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.day5-bonus-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.day5-bonus-message.info {
    background: rgba(245, 197, 66, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.day5-bonus-message svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.day5-bonus-message div {
    flex: 1;
}

.day5-bonus-message strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.day5-bonus-message p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.day5-bonus-warning {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.day5-bonus-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
}

.day5-bonus-warning-header svg {
    flex-shrink: 0;
}

.day5-bonus-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day5-bonus-warning-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.day5-bonus-warning-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-gold);
    font-weight: 800;
}

.day5-bonus-loading,
.day5-bonus-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.day5-bonus-error {
    color: var(--accent-red);
}

/* Cashback Losses Modal */
.cashback-losses-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

.cashback-losses-content {
    max-width: 600px;
    margin: 0 auto;
}

.cashback-losses-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.15) 0%, rgba(245, 197, 66, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
}

.cashback-losses-hero-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.cashback-losses-hero-icon svg {
    width: 64px;
    height: 64px;
}

.cashback-losses-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
    line-height: 1.2;
}

.cashback-losses-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cashback-losses-info {
    margin-bottom: 24px;
}

.cashback-losses-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.cashback-losses-info-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cashback-losses-info-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.cashback-losses-info-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.cashback-losses-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.cashback-losses-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.cashback-losses-stat-item.highlight {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stat-icon.loss {
    background: rgba(229, 57, 53, 0.2);
    color: var(--accent-red);
}

.stat-icon.cashback {
    background: rgba(245, 197, 66, 0.2);
    color: var(--accent-gold);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 20px;
    font-weight: 900;
}

.stat-value.loss {
    color: var(--accent-red);
}

.stat-value.cashback {
    color: var(--accent-gold);
}

.cashback-losses-claim-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cashback-losses-claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.cashback-losses-claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cashback-losses-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cashback-losses-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.cashback-losses-message.info {
    background: rgba(245, 197, 66, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.cashback-losses-message svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cashback-losses-message div {
    flex: 1;
}

.cashback-losses-message strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cashback-losses-message p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.cashback-losses-warning {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.cashback-losses-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
}

.cashback-losses-warning-header svg {
    flex-shrink: 0;
}

.cashback-losses-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cashback-losses-warning-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cashback-losses-warning-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-gold);
    font-weight: 800;
}

.cashback-losses-loading,
.cashback-losses-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.cashback-losses-error {
    color: var(--accent-red);
}

@media (max-width: 600px) {
    .cashback-losses-stats {
        grid-template-columns: 1fr;
    }
    
    .cashback-losses-title {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 18px;
    }
}

/* Cashback Weekly Modal */
.cashback-weekly-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-dark);
}

.cashback-weekly-content {
    max-width: 600px;
    margin: 0 auto;
}

.cashback-weekly-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.15) 0%, rgba(245, 197, 66, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
}

.cashback-weekly-hero-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.cashback-weekly-hero-icon svg {
    width: 64px;
    height: 64px;
}

.cashback-weekly-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(245, 197, 66, 0.3);
    line-height: 1.2;
}

.cashback-weekly-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cashback-weekly-info {
    margin-bottom: 24px;
}

.cashback-weekly-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.cashback-weekly-info-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cashback-weekly-info-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.cashback-weekly-info-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.cashback-weekly-period {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.cashback-weekly-period-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cashback-weekly-period-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.cashback-weekly-period-dates span:nth-child(2) {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
}

.cashback-weekly-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.cashback-weekly-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.cashback-weekly-stat-item.highlight {
    border-color: var(--accent-gold);
    background: rgba(245, 197, 66, 0.1);
}

.cashback-weekly-claim-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cashback-weekly-claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.cashback-weekly-claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cashback-weekly-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cashback-weekly-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.cashback-weekly-message.info {
    background: rgba(245, 197, 66, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.cashback-weekly-message svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cashback-weekly-message div {
    flex: 1;
}

.cashback-weekly-message strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cashback-weekly-message p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.cashback-weekly-warning {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.cashback-weekly-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
}

.cashback-weekly-warning-header svg {
    flex-shrink: 0;
}

.cashback-weekly-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cashback-weekly-warning-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cashback-weekly-warning-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-gold);
    font-weight: 800;
}

.cashback-weekly-loading,
.cashback-weekly-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.cashback-weekly-error {
    color: var(--accent-red);
}

@media (max-width: 600px) {
    .cashback-weekly-stats {
        grid-template-columns: 1fr;
    }
    
    .cashback-weekly-title {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .cashback-weekly-period-dates {
        flex-direction: column;
        gap: 4px;
    }
}

.security-section {
    margin-bottom: 24px;
}

.security-section:last-child {
    margin-bottom: 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.security-item:last-child {
    margin-bottom: 0;
}

.security-item-clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.security-item-clickable:hover {
    background: var(--bg-card-light);
    border-color: var(--accent-gold);
}

.security-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 66, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.security-item-icon svg {
    width: 20px;
    height: 20px;
}

.security-item-content {
    flex: 1;
    min-width: 0;
}

.security-item-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.security-item-value {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.security-item-status {
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.security-item-status.status-defined {
    color: var(--accent-gold);
}

.security-item-clickable:hover .security-item-icon {
    background: rgba(245, 197, 66, 0.2);
}

.security-item-status.status-not-defined {
    color: var(--text-secondary);
}

.security-unlink-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.security-unlink-btn:hover {
    background: rgba(245, 197, 66, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.security-item-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.security-item-clickable:hover .security-item-arrow {
    color: var(--accent-gold);
}

@media (max-width: 420px) {
    .security-center-body {
        padding: 16px;
    }
    
    .security-center-header {
        padding: 14px 16px;
    }
    
    .security-center-header h2 {
        font-size: 18px;
    }
    
    .security-item {
        padding: 14px;
    }
    
    .security-item-icon {
        width: 36px;
        height: 36px;
    }
    
    .security-item-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive */
@media (min-width: 768px) {
    body {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .banner-slides {
        height: 200px;
    }
    
    .promo-banner {
        min-height: 200px;
    }
    
    
    .reel {
        width: 120px;
        height: 360px;
    }
    
    .reel .symbol {
        font-size: 70px;
        height: 120px;
    }
    
    .bottom-nav {
        max-width: 500px;
    }
    
    .social-section {
        padding: 40px 20px;
    }
    
    .social-icons {
        gap: 32px;
    }
    
    .payment-partners-section {
        padding: 40px 20px;
    }
    
    .legal-footer {
        padding: 40px 30px;
    }
    
    .legal-content {
        max-width: 700px;
    }
    
    .legal-company p {
        font-size: 12px;
    }
    
    .notice-text {
        font-size: 12px;
    }
    
    .legal-copyright p {
        font-size: 12px;
    }
    
    .section-header h3 {
        font-size: 18px;
    }
    
    .good-luck-text {
        font-size: 32px;
    }
}

/* Estilos para Banner Promocional */
.promo-banner-content {
    max-width: 95%;
    width: 100%;
    max-height: 90vh;
    padding: 0;
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border: 4px solid var(--accent-gold);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(245, 197, 66, 0.4), 0 0 60px rgba(245, 197, 66, 0.2);
    overflow: hidden;
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(245, 197, 66, 0.4), 0 0 60px rgba(245, 197, 66, 0.2);
    }
    50% {
        box-shadow: 0 15px 50px rgba(245, 197, 66, 0.6), 0 0 80px rgba(245, 197, 66, 0.4);
    }
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 2px solid var(--accent-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.promo-close-btn:hover {
    background: rgba(230, 35, 35, 0.9);
    border-color: #E62323;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(230, 35, 35, 0.6);
}

.promo-banner-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px 20px 0;
    position: relative;
}

.promo-banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-banner-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    animation: imageFloat 4s ease-in-out infinite;
}

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

.promo-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 25px 25px;
}

.promo-claim-btn {
    background: linear-gradient(135deg, #F5C542 0%, #FFD700 50%, #F5C542 100%);
    background-size: 200% 200%;
    color: #000;
    font-weight: 900;
    font-size: 22px;
    padding: 20px 40px;
    border: 3px solid #FFD700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(245, 197, 66, 0.6), 0 0 40px rgba(245, 197, 66, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonShine 3s linear infinite;
}

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

.promo-claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.promo-claim-btn:hover::before {
    left: 100%;
}

.promo-claim-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(245, 197, 66, 0.8), 0 0 60px rgba(245, 197, 66, 0.5);
    border-color: #FFF;
}

.promo-claim-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.promo-skip-btn {
    background: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-skip-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Estilos para Modal de Sorteio */
.prize-draw-content {
    max-width: 550px;
    width: 90%;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(245, 197, 66, 0.3);
}

.prize-draw-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.prize-draw-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5C542 0%, #FFD700 50%, #F5C542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(245, 197, 66, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.prize-draw-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.prize-display {
    width: 100%;
    padding: 40px;
    background: linear-gradient(135deg, #0B0B0B 0%, #1A1A1A 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    margin: 20px 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.2), inset 0 0 30px rgba(245, 197, 66, 0.1);
    position: relative;
    overflow: hidden;
}

.prize-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
    animation: rotateGlow 4s linear infinite;
}

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

.prize-amount {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5C542 0%, #FFD700 50%, #F5C542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(245, 197, 66, 0.8);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.prize-amount.animate {
    animation: prizePulse 0.8s ease-in-out;
}

@keyframes prizePulse {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3) rotate(5deg);
    }
    50% {
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(3deg);
    }
}

.prize-category {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.prize-category.nada {
    color: var(--accent-red);
}

.prize-category.medio {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
}

.prize-category.alto {
    color: #00FF88;
}

.prize-draw-btn {
    background: linear-gradient(135deg, #0099ff 0%, #0088ee 50%, #0077dd 100%);
    color: white;
    font-weight: 800;
    font-size: 22px;
    padding: 20px 60px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(0, 153, 255, 0.5), 0 0 30px rgba(0, 153, 255, 0.3);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.prize-draw-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.prize-draw-btn:hover:not(:disabled)::before {
    left: 100%;
}

.prize-draw-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.7), 0 0 40px rgba(0, 153, 255, 0.4);
}

.prize-draw-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(1.02);
}

.prize-draw-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.prize-draw-message {
    font-size: 16px;
    color: var(--text-secondary);
    min-height: 24px;
    margin-top: 15px;
    font-weight: 500;
}

.prize-draw-message.success {
    color: #00FF88;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.prize-draw-message.error {
    color: var(--accent-red);
    font-weight: 600;
}

/* Seção de depósito após ganhar prêmio */
.prize-deposit-section {
    width: 100%;
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1) 0%, rgba(245, 197, 66, 0.05) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    animation: slideInUp 0.5s ease-out;
}

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

.prize-deposit-info {
    margin-bottom: 20px;
}

.prize-deposit-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 0 0 10px 0;
}

.prize-deposit-amount {
    font-size: 24px;
    font-weight: 800;
    color: #00FF88;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.prize-deposit-btn {
    background: linear-gradient(135deg, #F5C542 0%, #E6B325 100%);
    color: #000;
    font-weight: 800;
    font-size: 20px;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(245, 197, 66, 0.5), 0 0 30px rgba(245, 197, 66, 0.3);
    width: 100%;
    max-width: 300px;
}

.prize-deposit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 197, 66, 0.7), 0 0 40px rgba(245, 197, 66, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #F5C542 100%);
}

.prize-deposit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsividade para modais promocionais */
@media (max-width: 768px) {
    .promo-banner-content {
        max-width: 95%;
    }
    
    .promo-banner-image img {
        max-height: 60vh;
    }
    
    .prize-draw-content {
        padding: 20px;
    }
    
    .prize-draw-title {
        font-size: 24px;
    }
    
    .prize-amount {
        font-size: 36px;
    }
    
    .prize-draw-btn {
        font-size: 18px;
        padding: 16px 40px;
    }
}

/* ============================================
   MODAL APERTA E JOGA - ESTILO SLOT MACHINE
   ============================================ */

.aperta-e-joga-content {
    max-width: 450px;
    width: 90%;
    padding: 0;
    background: var(--bg-card);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    box-shadow: 
        0 0 30px rgba(245, 197, 66, 0.3),
        0 0 60px rgba(245, 197, 66, 0.15),
        inset 0 0 20px rgba(245, 197, 66, 0.05);
    position: relative;
    overflow: hidden;
}

.aperta-e-joga-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.aperta-e-joga-close-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.aperta-e-joga-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg-dark);
}

.aperta-e-joga-banner img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}


.aperta-e-joga-body {
    padding: 15px 25px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.aperta-e-joga-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0 25px;
    padding: 15px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(245, 197, 66, 0.2);
}

.slot-reel {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(245, 197, 66, 0.3);
    animation: reelFloat 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.slot-reel:nth-child(1) {
    animation-delay: 0s;
}

.slot-reel:nth-child(2) {
    animation-delay: 0.3s;
}

.slot-reel:nth-child(3) {
    animation-delay: 0.6s;
}

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

.slot-reel.spinning {
    animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.aperta-e-joga-btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 25px rgba(245, 197, 66, 0.4),
        0 0 40px rgba(245, 197, 66, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.aperta-e-joga-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.aperta-e-joga-btn:hover::before {
    left: 100%;
}

.aperta-e-joga-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(245, 197, 66, 0.5),
        0 0 50px rgba(245, 197, 66, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, var(--accent-gold) 100%);
}

.aperta-e-joga-btn:active {
    transform: scale(1.02) translateY(-1px);
}

.aperta-e-joga-footer {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 20px 0 0 0;
    font-weight: 400;
}

/* Modal de Resultado */
.aperta-e-joga-result-content {
    max-width: 450px;
    width: 90%;
    padding: 0;
    background: var(--bg-card);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    box-shadow: 
        0 0 30px rgba(245, 197, 66, 0.3),
        0 0 60px rgba(245, 197, 66, 0.15);
}

.aperta-e-joga-result-body {
    padding: 40px 30px;
    text-align: center;
}

.result-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    text-shadow: 0 0 15px rgba(245, 197, 66, 0.5);
}

.result-slot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(245, 197, 66, 0.2);
}

.result-display {
    margin: 30px 0;
    animation: fadeInUp 0.5s ease-out;
}

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

.result-message {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.result-bonus {
    padding: 25px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    margin: 20px 0;
}

.result-bonus-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
    margin-bottom: 15px;
    animation: bonusPulse 1s ease-in-out infinite;
}

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

.result-bonus-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0 20px 0;
}

.result-no-bonus {
    padding: 25px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin: 20px 0;
}

.result-no-bonus-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 10px 0;
}

.result-btn {
    margin-top: 30px;
    background: linear-gradient(135deg, #f5c542 0%, #e6b325 100%);
    border-color: #f5c542;
    color: #000;
}

.result-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #f5c542 100%);
    box-shadow: 
        0 15px 50px rgba(245, 197, 66, 0.7),
        0 0 80px rgba(245, 197, 66, 0.4);
}

.result-deposit-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #f5c542 0%, #e6b325 100%);
    border-color: #f5c542;
    color: #000;
    width: 100%;
    max-width: 300px;
}

.result-deposit-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #f5c542 100%);
    box-shadow: 
        0 15px 50px rgba(245, 197, 66, 0.7),
        0 0 80px rgba(245, 197, 66, 0.4);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .aperta-e-joga-content,
    .aperta-e-joga-result-content {
        max-width: 98%;
        margin: 10px;
    }
    
    .aperta-e-joga-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .aperta-e-joga-subtitle {
        font-size: 16px;
    }
    
    .slot-reel {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }
    
    .aperta-e-joga-btn {
        font-size: 24px;
        padding: 20px 30px;
        letter-spacing: 2px;
    }
    
    .result-bonus-amount {
        font-size: 36px;
    }
}

/* ============================================
   MODAL VIP PROMO
   ============================================ */

.vip-promo-content {
    max-width: 500px;
    width: 90%;
    padding: 0;
    background: var(--bg-card);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    box-shadow: 
        0 0 30px rgba(245, 197, 66, 0.3),
        0 0 60px rgba(245, 197, 66, 0.15);
    position: relative;
    overflow: hidden;
}

.vip-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vip-close-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.vip-promo-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg-dark);
}

.vip-promo-banner img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.vip-promo-body {
    padding: 20px 25px 25px;
    text-align: center;
}

.vip-promo-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    text-shadow: 0 0 15px rgba(245, 197, 66, 0.5);
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
}

.vip-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
}

.vip-icon {
    font-size: 28px;
    width: 40px;
    text-align: center;
}

.vip-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    flex: 1;
}

.vip-requirement {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(245, 197, 66, 0.5);
}

.vip-deposit-btn {
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .vip-promo-content {
        max-width: 95%;
    }
    
    .vip-promo-banner img {
        max-height: 200px;
    }
    
    .vip-promo-title {
        font-size: 24px;
    }
    
    .vip-benefit-item {
        padding: 10px;
    }
    
    .vip-icon {
        font-size: 24px;
        width: 35px;
    }
    
    .vip-text {
        font-size: 14px;
    }
}

/* Botão Flutuante VIP */
.vip-float-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 
        0 8px 25px rgba(245, 197, 66, 0.5),
        0 0 30px rgba(245, 197, 66, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    animation: vipFloatPulse 2s infinite alternate;
}

@keyframes vipFloatPulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(245, 197, 66, 0.5),
            0 0 30px rgba(245, 197, 66, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 
            0 12px 35px rgba(245, 197, 66, 0.7),
            0 0 50px rgba(245, 197, 66, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.vip-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(245, 197, 66, 0.7),
        0 0 60px rgba(245, 197, 66, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, var(--accent-gold) 100%);
}

.vip-float-btn:active {
    transform: scale(1.05) translateY(-2px);
}

.vip-float-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vip-float-text {
    font-size: 12px;
    font-weight: 900;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .vip-float-btn {
        width: 60px;
        height: 60px;
        bottom: 80px;
        right: 15px;
    }
    
    .vip-float-icon {
        font-size: 24px;
    }
    
    .vip-float-text {
        font-size: 10px;
    }
}

