/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-hover: #334155;
    
    --color-primary: #22c55e;
    --color-primary-hover: #16a34a;
    --color-secondary: #3b82f6;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #06b6d4;
    
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    
    --sidebar-width: 280px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===================================
   AUTH PAGES (LOGIN/CADASTRO)
   =================================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0f172a;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: #1e293b;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(51, 65, 85, 0.5);
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-icon svg {
    width: 64px;
    height: 64px;
}

.auth-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 400;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--color-danger);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--color-success);
    color: #6ee7b7;
}

/* Form Styles */
.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    background: #1e293b;
}

.form-group input::placeholder {
    color: #64748b;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #22c55e;
    color: #ffffff;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(34, 197, 94, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* ===================================
   DASHBOARD LAYOUT
   =================================== */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: #0f172a;
}

/* Sidebar Esquerda */
.sidebar-left {
    width: 320px;
    background: #1e293b;
    border-right: 1px solid #334155;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    padding: 0;
}

.sidebar-menu {
    background: #0f172a;
    padding: 0;
    border-bottom: 1px solid #334155;
}

.sidebar-menu-item {
    display: block;
    padding: 16px 20px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-menu-item:hover {
    background: #1e293b;
    color: #ffffff;
}

.sidebar-menu-item.active {
    background: #1e293b;
    color: #22c55e;
    border-left-color: #22c55e;
    font-weight: 600;
}

.sidebar-left .sidebar-section {
    padding: 24px 20px;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.account-toggle {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #334155;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #22c55e;
    color: #000;
}

.toggle-btn:hover:not(.active) {
    background: #475569;
}

.stat-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 20px;
}

.stat-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 12px;
}

.stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.stat-card-acerto {
    background: #1e293b;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-header h4 {
    margin: 0;
}

.stat-icon {
    font-size: 24px;
}

.stat-value.green {
    color: #22c55e;
    font-size: 36px;
    margin-bottom: 4px;
}

.stat-value.yellow {
    color: #facc15;
    font-size: 36px;
    margin-bottom: 4px;
}

.stat-value.red {
    color: #ef4444;
    font-size: 36px;
    margin-bottom: 4px;
}

.stat-change.green {
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
}

.stat-change.red {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
}

.sidebar-config {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.config-field-sidebar {
    margin-bottom: 20px;
}

.config-field-sidebar label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.config-field-sidebar input[type="text"] {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.config-field-sidebar input[type="text"]:focus {
    outline: none;
    border-color: #22c55e;
}

.mercados-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mercado-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mercado-item:hover {
    border-color: #22c55e;
    background: #1e293b;
}

.mercado-item .checkbox-label {
    margin: 0;
    flex: 1;
    cursor: pointer;
}

.mercado-badge {
    padding: 4px 12px;
    background: #22c55e;
    color: #000;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

.mercado-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mercado-selector input {
    flex: 1;
}

.mercado-value {
    padding: 12px 16px;
    background: #22c55e;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #cbd5e1;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #22c55e;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.logout-link {
    display: block;
    text-align: center;
    color: #ef4444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-left-color: var(--color-primary);
}

.nav-item.active {
    background: var(--bg-hover);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

.nav-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--color-danger);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: var(--color-danger);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 320px;
    padding: 30px;
    background: #0f172a;
    min-height: 100vh;
}

/* Balance Header */
.balance-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #334155;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.balance-value {
    font-size: 42px;
    font-weight: 700;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.balance-icon {
    font-size: 48px;
    line-height: 1;
}

.recharge-link {
    font-size: 13px;
    color: #94a3b8;
    margin-left: 4px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.dashboard-col {
    display: flex;
    flex-direction: column;
}

.stat-card-main {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
}

.stat-card-main h4 {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 12px;
}

.stat-value-large {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.profit-card {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 10px 25px -5px rgba(250, 204, 21, 0.3);
}

.profit-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    opacity: 0.8;
    margin-bottom: 8px;
}

.profit-value {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

/* Config Section Large */
.config-section-large {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.config-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.bot-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bot-status.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid #ef4444;
}

.bot-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #6ee7b7;
    border: 1px solid #22c55e;
}

.config-grid-advanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.config-field-advanced {
    display: flex;
    flex-direction: column;
}

.config-field-advanced label {
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.config-field-advanced input[type="number"],
.config-field-advanced input[type="text"] {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.config-field-advanced input[type="number"]:focus,
.config-field-advanced input[type="text"]:focus {
    outline: none;
    border-color: #22c55e;
}

.config-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    color: #cbd5e1;
    padding: 8px 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: #22c55e;
    background: #1e293b;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #22c55e;
}

.checkbox-option input[type="checkbox"]:checked + span {
    color: #22c55e;
    font-weight: 600;
}

.option-text {
    flex: 1;
}

.option-tag {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    background: #22c55e;
    animation: tagPulse 2s ease-in-out infinite;
}

.tag-safe {
    background: #22c55e;
}

.tag-moderate {
    background: #f59e0b;
}

.tag-progressive {
    background: #3b82f6;
}

.tag-dynamic {
    background: #a855f7;
}

.tag-extreme {
    background: #ef4444;
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

.btn-activate-bot {
    width: 100%;
    padding: 18px;
    background: #22c55e;
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px -2px rgba(34, 197, 94, 0.4);
}

.btn-activate-bot:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -2px rgba(34, 197, 94, 0.5);
}

.btn-activate-bot:active {
    transform: translateY(0);
}

.btn-activate-bot.active {
    background: #ef4444;
    color: #ffffff;
}

.btn-activate-bot.active:hover {
    background: #dc2626;
}

/* History Section */
.history-section {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.history-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.history-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.btn-edit {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background: #334155;
    border-color: #22c55e;
    color: #22c55e;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table thead {
    background: #0f172a;
    border-bottom: 2px solid #334155;
}

.history-table th {
    padding: 14px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-table tbody tr {
    border-bottom: 1px solid #334155;
    transition: background 0.2s ease;
}

.history-table tbody tr:hover {
    background: #0f172a;
}

.history-table td {
    padding: 16px 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
}

.status-icon.status-win {
    background: #22c55e;
    color: #000;
    border-color: #22c55e;
}

.status-icon.status-lose {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

.status-icon.status-pending {
    background: #f97316;
    color: #ffffff;
    border-color: #f97316;
}

.result-win {
    color: #22c55e;
    font-weight: 600;
}

.result-lose {
    color: #ef4444;
    font-weight: 600;
}

.result-pending {
    color: #94a3b8;
    font-weight: 500;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Nav Tabs */
.nav-tabs {
    display: flex;
    gap: 0;
    margin-top: 24px;
    border-bottom: 2px solid #334155;
}

.nav-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    position: relative;
}

.nav-tab:hover {
    color: #ffffff;
    background: rgba(51, 65, 85, 0.3);
}

.nav-tab.active {
    color: #22c55e;
    border-bottom-color: #22c55e;
}

.nav-tab.active:hover {
    color: #22c55e;
    background: transparent;
}

/* Análise de Jogos */
.analise-section {
    padding: 0;
}

.analise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #334155;
}

.analise-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 16px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    width: 300px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

.jogos-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jogo-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.jogo-card:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 12px -2px rgba(34, 197, 94, 0.2);
}

.jogo-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #334155;
}

.jogo-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.jogo-info {
    font-size: 14px;
    color: #94a3b8;
}

.predicoes-lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.predicao-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.predicao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.predicao-nome {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}

.predicao-percent {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #0f172a;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Nav Links (mantido para compatibilidade) */
.nav-links {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.nav-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Connect House Button */
.btn-connect-house {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-connect-house:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.4);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #334155;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #334155;
    color: #ffffff;
}

.modal-body {
    padding: 24px;
}

.modal-description {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modal label {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group-modal input {
    width: 100%;
    padding: 12px 16px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group-modal input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group-modal input::placeholder {
    color: #64748b;
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}

.select-input {
    cursor: pointer;
    padding-right: 40px !important;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-select.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.custom-select.active .select-dropdown {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-option {
    padding: 12px 16px;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #1e293b;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: #1e293b;
    color: #ffffff;
}

.select-option.selected {
    background: #3b82f6;
    color: #ffffff;
}

.btn-modal-submit {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-modal-submit:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(34, 197, 94, 0.4);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.header-left h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.header-left p {
    color: var(--text-muted);
    font-size: 15px;
}

.header-left strong {
    color: var(--color-primary);
}

.header-right {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.user-email {
    color: var(--text-secondary);
    font-size: 14px;
}

.user-badge {
    background: var(--color-primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    font-size: 24px;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-label {
    font-size: 13px;
    color: var(--text-muted);
}

.card-primary .card-value {
    color: var(--color-primary);
}

.card-success .card-value {
    color: var(--color-success);
}

.card-info .card-value {
    color: var(--color-info);
}

.card-warning .card-value {
    color: var(--color-warning);
}

/* Content Section */
.content-section {
    margin-top: 30px;
}

.section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.section-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 8px;
}

.empty-state small {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   MOBILE MENU BUTTON
   =================================== */
.mobile-menu-btn {
    display: none; /* Oculto por padrão (desktop) */
    position: relative;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mobile-menu-btn:hover {
    background: #334155;
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    /* Garantir que overlay só apareça quando ativo */
    .mobile-overlay {
        display: none !important;
        pointer-events: none;
    }

    .mobile-overlay.active {
        display: block !important;
        pointer-events: auto;
    }
    
    /* Garantir que elementos sejam clicáveis no mobile */
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    button, a, input, select, textarea {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    /* Sidebar */
    .sidebar-left {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
        z-index: 1000;
    }

    .sidebar-left.open {
        transform: translateX(0);
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    /* Main Content */
    .main-content {
        margin-left: 0;
        padding: 80px 16px 20px 16px;
    }

    /* Balance Header */
    .balance-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .balance-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .balance-info .mobile-menu-btn {
        order: -1;
        margin-right: auto;
    }

    .balance-value {
        font-size: 28px;
        flex: 1;
        min-width: 0;
    }

    .balance-icon {
        font-size: 32px;
    }

    .recharge-link {
        font-size: 11px;
        margin-left: 0;
        width: 100%;
        order: 2;
    }

    /* Dashboard Grid */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .stat-card-main {
        padding: 20px;
    }

    .stat-card-main h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .stat-value-large {
        font-size: 36px;
    }

    .profit-card {
        padding: 24px 20px;
    }

    .profit-value {
        font-size: 32px;
    }

    /* Config Grid */
    .config-grid-advanced {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .config-section-large {
        padding: 20px;
        margin-bottom: 20px;
    }

    .config-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Stat Cards */
    .stat-card {
        padding: 20px;
    }

    .stat-card h4 {
        font-size: 13px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-value-large {
        font-size: 32px;
    }

    /* Sidebar Sections */
    .sidebar-section {
        padding: 16px;
    }

    .sidebar-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .account-toggle {
        gap: 8px;
        margin-bottom: 12px;
    }

    .toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-connect-house {
        padding: 12px;
        font-size: 14px;
    }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 10px 8px;
    }

    /* Buttons */
    .btn-activate-bot {
        padding: 14px;
        font-size: 14px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vip-lock-card {
        padding: 20px;
    }

    .vip-card-header {
        font-size: 14px;
        padding: 12px 16px;
    }

    /* Dashboard Header */
    .dashboard-header {
        flex-direction: column;
        gap: 16px;
    }

    .user-info {
        align-items: flex-start;
    }

    /* Auth Box */
    .auth-box {
        padding: 30px 20px;
    }

    /* Modals */
    .modal-content {
        width: 95%;
        max-width: 500px;
        padding: 24px 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    /* Forms */
    .config-form input,
    .config-form select {
        font-size: 14px;
        padding: 12px;
    }

    .config-field label {
        font-size: 13px;
    }

    /* History Table */
    .history-table {
        font-size: 12px;
    }

    .history-table th,
    .history-table td {
        padding: 10px 6px;
    }

    /* Stat Cards Grid */
    .stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Config Options */
    .config-options {
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-option {
        padding: 10px;
        font-size: 13px;
    }

    /* Account Toggle */
    .account-toggle {
        flex-wrap: wrap;
    }

    /* Sidebar Menu */
    .sidebar-menu-item {
        padding: 14px 16px;
        font-size: 13px;
    }

    /* Section Cards */
    .section-card {
        padding: 20px;
    }

    .section-card h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* Bot Status */
    .bot-status {
        font-size: 11px;
        padding: 4px 12px;
    }

    /* VIP Lock Card */
    .vip-btn-unlock {
        padding: 14px;
        font-size: 14px;
    }

    /* Form Fields */
    .config-field {
        margin-bottom: 16px;
    }

    .config-field input,
    .config-field select {
        font-size: 14px;
        padding: 12px;
    }

    /* Modal */
    .modal-overlay {
        padding: 20px 10px;
    }

    .modal-container,
    .modal-content {
        width: 95%;
        max-width: 500px;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-header {
        margin-bottom: 16px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-close {
        font-size: 28px;
        width: 32px;
        height: 32px;
    }

    .modal-body {
        padding: 0;
    }

    .modal-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .form-group-modal {
        margin-bottom: 16px;
    }

    .form-group-modal label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .form-group-modal input,
    .form-group-modal select {
        font-size: 14px;
        padding: 12px;
    }

    .btn-modal-submit {
        padding: 14px;
        font-size: 14px;
    }

    /* Select Dropdown */
    .select-dropdown {
        font-size: 14px;
    }

    .select-option {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .main-content {
        padding: 70px 12px 16px 12px;
    }

    .balance-value {
        font-size: 28px;
    }

    .balance-icon {
        font-size: 32px;
    }

    .stat-value-large {
        font-size: 28px;
    }

    .profit-value {
        font-size: 28px;
    }

    .stat-card-main,
    .config-section-large,
    .vip-lock-card {
        padding: 16px;
    }

    .mobile-menu-btn {
        padding: 8px 10px;
        font-size: 18px;
        min-width: 40px;
        height: 40px;
    }

    .balance-info {
        gap: 10px;
    }

    .balance-value {
        font-size: 24px;
    }

    .balance-icon {
        font-size: 28px;
    }

    .recharge-link {
        font-size: 10px;
    }

    .sidebar-left {
        width: 260px;
    }

    table {
        font-size: 11px;
    }

    table th,
    table td {
        padding: 8px 6px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* ===================================
   TERMOS DE USO PAGE
   =================================== */

.termos-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.termos-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.termos-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.termos-warning-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.warning-icon-bg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.warning-icon {
    font-size: 36px;
}

.termos-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.termos-subtitle {
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
    margin: 0 0 32px 0;
}

.termos-content {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 32px;
    padding-right: 8px;
}

.termos-content::-webkit-scrollbar {
    width: 6px;
}

.termos-content::-webkit-scrollbar-track {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 3px;
}

.termos-content::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.5);
    border-radius: 3px;
}

.termos-content::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.7);
}

.termos-section {
    margin-bottom: 24px;
}

.termos-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.termos-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.termos-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.termos-list li {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
}

.termos-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #22c55e;
    font-weight: bold;
    font-size: 18px;
}

.termos-highlight {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
}

.termos-highlight-text {
    font-size: 14px;
    color: #ef4444;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.termos-form {
    margin-top: 32px;
}

.termos-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    cursor: pointer;
    padding: 16px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.termos-checkbox-label:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
}

.termos-checkbox {
    display: none;
}

.termos-checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #22c55e;
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.termos-checkbox:checked + .termos-checkbox-custom {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-color: #22c55e;
}

.termos-checkbox:checked + .termos-checkbox-custom::after {
    content: '✓';
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.termos-checkbox-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    flex: 1;
}

.termos-btn-continue {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.termos-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
}

.termos-btn-continue:active {
    transform: translateY(0);
}

.termos-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .termos-card {
        padding: 24px;
        border-radius: 16px;
    }

    .termos-title {
        font-size: 24px;
    }

    .termos-content {
        max-height: 300px;
    }
}

/* ===================================
   VIP LOCK SCREEN - BETS DO DIA
   =================================== */

.vip-lock-screen {
    padding: 20px;
    max-width: 100%;
}

.vip-banner {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: pulse-banner 2s ease-in-out infinite;
}

@keyframes pulse-banner {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.vip-banner-icon {
    font-size: 20px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.vip-banner-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.vip-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.vip-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-header-icon {
    font-size: 20px;
}

.vip-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.vip-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-filter-icon {
    font-size: 18px;
    color: #22c55e;
    cursor: pointer;
}

.vip-filter-btn {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 20px;
    padding: 8px 16px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-filter-btn:hover {
    background: rgba(51, 65, 85, 0.7);
    border-color: #22c55e;
}

.vip-lock-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vip-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vip-sport-name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-sport-futebol {
    color: #22c55e;
}

.vip-sport-nba {
    color: #f97316;
}

.vip-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-status-pending {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #c084fc;
}

.vip-card-info {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.vip-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vip-info-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.vip-odd-value {
    color: #22c55e;
}

.vip-lock-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.vip-lock-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    animation: lock-shake 2s ease-in-out infinite;
}

@keyframes lock-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.vip-lock-text {
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.vip-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-btn-unlock,
.vip-btn-ticket {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vip-btn-unlock {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #000000;
}

.vip-btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
}

.vip-btn-ticket {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #ffffff;
}

.vip-btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
}

.vip-btn-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .vip-lock-screen {
        padding: 16px;
    }

    .vip-banner {
        padding: 12px 16px;
        gap: 8px;
    }

    .vip-banner-text {
        font-size: 14px;
    }

    .vip-card-info {
        flex-direction: column;
        gap: 12px;
    }

    .vip-action-buttons {
        gap: 10px;
    }
}

/* ===================================
   MODAL PAGAMENTO VIP
   =================================== */

.modal-pagamento {
    max-width: 500px;
}

.valor-opcoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.valor-opcao {
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.valor-opcao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.valor-opcao:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.valor-opcao:hover::before {
    background: linear-gradient(90deg, #22c55e, #10b981);
}

.valor-opcao.selected {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-color: #22c55e;
    color: #22c55e;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.valor-opcao.selected::before {
    background: linear-gradient(90deg, #22c55e, #10b981);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

/* Planos Específicos */
.plano-bronze {
    border-color: rgba(217, 119, 6, 0.5);
}

.plano-bronze:hover {
    border-color: rgba(217, 119, 6, 0.7);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.plano-bronze.selected {
    border-color: #d97706;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.plano-bronze.selected::before {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.plano-diamante {
    border-color: rgba(147, 51, 234, 0.5);
}

.plano-diamante:hover {
    border-color: rgba(147, 51, 234, 0.7);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.plano-diamante.selected {
    border-color: #9333ea;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.plano-diamante.selected::before {
    background: linear-gradient(90deg, #9333ea, #a855f7);
}

.plano-ouro {
    border-color: rgba(234, 179, 8, 0.5);
}

.plano-ouro:hover {
    border-color: rgba(234, 179, 8, 0.7);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.plano-ouro.selected {
    border-color: #eab308;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
}

.plano-ouro.selected::before {
    background: linear-gradient(90deg, #eab308, #fbbf24);
}

.plano-icon {
    font-size: 36px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.valor-opcao:hover .plano-icon,
.valor-opcao.selected .plano-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.15) rotate(-5deg); }
}

.plano-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.plano-nome {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.valor-opcao:hover .plano-nome,
.valor-opcao.selected .plano-nome {
    color: #ffffff;
}

.plano-valor {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.plano-bronze.selected .plano-valor {
    color: #fbbf24;
}

.plano-diamante.selected .plano-valor {
    color: #c084fc;
}

.plano-ouro.selected .plano-valor {
    color: #fbbf24;
}

.qrcode-container {
    padding: 20px;
}

.pix-code-container {
    margin-top: 24px;
}

.pix-code-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.pix-code-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-family: monospace;
    word-break: break-all;
}

.pix-code-input:focus {
    outline: none;
    border-color: #22c55e;
}

.btn-copiar {
    padding: 12px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copiar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pagamento-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

@media (max-width: 768px) {
    .modal-pagamento {
        max-width: 90%;
        margin: 20px;
    }

    .valor-opcoes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .valor-opcao {
        padding: 16px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
    }

    .plano-icon {
        font-size: 32px;
    }

    .plano-content {
        align-items: flex-start;
        text-align: left;
    }

    .pix-code-wrapper {
        flex-direction: column;
    }

    .btn-copiar {
        width: 100%;
    }
}

/* ===================================
   ADMIN LUXURY STYLES
   =================================== */

/* Admin Sidebar Luxury */
.admin-sidebar-lux {
    width: 280px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-right: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-lux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #10b981, #22c55e);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sidebar-header-lux {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    flex-shrink: 0;
}

.admin-logo-lux {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-icon-lux {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.6); }
}

.logo-text-wrapper {
    flex: 1;
}

.logo-text-lux {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.admin-greeting-lux {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
}

.greeting-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.greeting-text {
    flex: 1;
}

.greeting-label {
    font-size: 11px;
    color: #94a3b8;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.greeting-name {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

/* Admin Navigation Luxury */
.admin-nav-lux {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
}

.nav-item-lux {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 14px;
}

.nav-item-lux::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #22c55e, #10b981);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-item-lux:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #ffffff;
    transform: translateX(4px);
}

.nav-item-lux:hover .nav-icon-lux {
    transform: scale(1.1);
}

.nav-item-lux.active {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.nav-item-lux.active::before {
    transform: scaleY(1);
}

.nav-icon-lux {
    font-size: 20px;
    transition: transform 0.3s ease;
    width: 24px;
    text-align: center;
}

.nav-text-lux {
    flex: 1;
}

.nav-indicator {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Admin Footer Luxury */
.admin-footer-lux {
    padding: 24px 16px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    margin-top: auto;
}

.logout-link-lux {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #ef4444;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.logout-link-lux:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.logout-icon-lux {
    font-size: 18px;
}

/* Admin Main Content Luxury */
.admin-main-lux {
    margin-left: 280px;
    padding: 20px 24px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    width: calc(100% - 280px);
    box-sizing: border-box;
}

.admin-header-lux {
    margin-bottom: 20px;
    padding: 0;
}

.admin-header-lux h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-header-lux p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Admin Cards Luxury */
.admin-card-lux {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.admin-card-lux:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Admin Table Luxury */
.admin-table-lux {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.admin-table-lux thead {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.admin-table-lux th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.admin-table-lux td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    color: #cbd5e1;
}

.admin-table-lux tbody tr {
    transition: all 0.3s ease;
}

.admin-table-lux tbody tr:hover {
    background: rgba(34, 197, 94, 0.05);
}

/* Admin Buttons Luxury */
.admin-btn-lux {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.admin-btn-lux:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.admin-btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #000000;
}

.admin-btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
}

.admin-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.admin-btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Admin Alert Luxury */
.alert-lux {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.alert-lux.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-lux.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Admin Stats Cards */
.admin-stats-lux {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card-lux {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-stat-card-lux:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon-lux {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 12px;
}

.stat-content-lux {
    flex: 1;
}

.stat-value-lux {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label-lux {
    font-size: 14px;
    color: #94a3b8;
}

/* Admin Modal Styles */
.modal-lux {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content-lux {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-lux {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-lux h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.close-lux {
    color: #94a3b8;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-lux:hover {
    color: #ffffff;
}

.modal-form-lux {
    padding: 30px;
}

.form-group-lux {
    margin-bottom: 24px;
}

.form-group-lux label {
    display: block;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group-lux input[type="text"],
.form-group-lux input[type="number"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group-lux input[type="text"]:focus,
.form-group-lux input[type="number"]:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group-lux input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-actions-lux {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-primary-lux,
.btn-cancel-lux {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-lux {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #000000;
}

.btn-primary-lux:hover {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-cancel-lux {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

.btn-cancel-lux:hover {
    background: rgba(148, 163, 184, 0.3);
    color: #ffffff;
}

/* Admin Table Container */
.admin-table-container-lux {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.admin-table-lux {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.4);
}

.admin-table-lux thead {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.admin-table-lux th {
    padding: 16px;
    text-align: left;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid rgba(148, 163, 184, 0.2);
}

.admin-table-lux td {
    padding: 16px;
    color: #cbd5e1;
    font-size: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.admin-table-lux tbody tr:hover {
    background: rgba(30, 41, 59, 0.5);
}

.admin-table-lux tbody tr:last-child td {
    border-bottom: none;
}

.btn-edit-lux,
.btn-delete-lux {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-edit-lux {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-edit-lux:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.4) 100%);
    transform: translateY(-2px);
}

.btn-delete-lux {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.3) 100%);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-delete-lux:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.4) 100%);
    transform: translateY(-2px);
}

code {
    background: rgba(15, 23, 42, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===================================
   ADMIN RESPONSIVE - MOBILE
   =================================== */

/* Mobile Menu Button para Admin */
.admin-mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.admin-mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.admin-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.admin-mobile-overlay.active {
    display: block;
}

/* Responsive Admin - Tablet e Mobile */
@media (max-width: 1024px) {
    .admin-main-lux {
        margin-left: 0;
        width: 100%;
        padding: 20px 16px;
    }
    
    .admin-sidebar-lux {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .admin-sidebar-lux.open {
        transform: translateX(0);
    }
    
    .admin-mobile-menu-btn {
        display: block;
    }
    
    .admin-stats-lux {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .admin-table-container-lux {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table-lux {
        min-width: 600px;
    }
    
    .admin-table-lux th,
    .admin-table-lux td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .modal-content-lux {
        width: 95%;
        max-width: 95%;
        margin: 20px;
    }
    
    .admin-header-lux h1 {
        font-size: 24px;
    }
    
    .admin-header-lux p {
        font-size: 13px;
    }
}

/* Responsive Admin - Mobile Pequeno */
@media (max-width: 768px) {
    .admin-main-lux {
        padding: 16px 12px;
    }
    
    .admin-sidebar-lux {
        width: 100%;
        max-width: 280px;
    }
    
    .admin-stats-lux {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .admin-stat-card-lux {
        padding: 20px;
    }
    
    .stat-icon-lux {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }
    
    .stat-value-lux {
        font-size: 28px;
    }
    
    .admin-header-lux h1 {
        font-size: 22px;
    }
    
    .admin-card-lux {
        padding: 20px 16px;
    }
    
    .admin-table-lux {
        min-width: 800px;
        font-size: 12px;
    }
    
    .admin-table-lux th,
    .admin-table-lux td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .btn-edit-lux,
    .btn-delete-lux {
        padding: 6px 12px;
        font-size: 12px;
        margin-right: 4px;
    }
    
    .modal-content-lux {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .modal-header-lux {
        padding: 20px;
    }
    
    .modal-header-lux h2 {
        font-size: 20px;
    }
    
    .modal-form-lux {
        padding: 20px;
    }
    
    .form-group-lux {
        margin-bottom: 20px;
    }
    
    .modal-actions-lux {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary-lux,
    .btn-cancel-lux {
        width: 100%;
        padding: 14px;
    }
    
    .admin-logo-lux {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .logo-text-lux {
        font-size: 18px;
    }
    
    .admin-greeting-lux {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .greeting-avatar {
        margin: 0 auto;
    }
    
    .nav-item-lux {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .nav-icon-lux {
        font-size: 18px;
        width: 20px;
    }
    
    .content-section {
        margin-top: 20px;
    }
    
    .section-card {
        padding: 16px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card {
        padding: 20px;
    }
}

/* Responsive Admin - Mobile Muito Pequeno */
@media (max-width: 480px) {
    .admin-main-lux {
        padding: 12px 8px;
    }
    
    .admin-header-lux {
        margin-bottom: 16px;
    }
    
    .admin-header-lux h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .admin-header-lux p {
        font-size: 12px;
    }
    
    .admin-card-lux {
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .admin-stats-lux {
        gap: 10px;
    }
    
    .admin-stat-card-lux {
        padding: 16px;
        gap: 16px;
    }
    
    .stat-icon-lux {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    
    .stat-value-lux {
        font-size: 24px;
    }
    
    .stat-label-lux {
        font-size: 12px;
    }
    
    .admin-table-lux {
        min-width: 700px;
        font-size: 11px;
    }
    
    .admin-table-lux th,
    .admin-table-lux td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .btn-edit-lux,
    .btn-delete-lux {
        padding: 5px 10px;
        font-size: 11px;
        margin-right: 2px;
    }
    
    .modal-header-lux {
        padding: 16px;
    }
    
    .modal-header-lux h2 {
        font-size: 18px;
    }
    
    .modal-form-lux {
        padding: 16px;
    }
    
    .form-group-lux label {
        font-size: 13px;
    }
    
    .form-group-lux input[type="text"],
    .form-group-lux input[type="number"] {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .admin-mobile-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 15px;
        left: 15px;
    }
    
    .sidebar-header-lux {
        padding: 20px 16px;
    }
    
    .admin-nav-lux {
        padding: 16px 12px;
    }
    
    .admin-footer-lux {
        padding: 20px 12px;
    }
    
    .logout-link-lux {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Ajustes para tabelas responsivas no admin */
@media (max-width: 768px) {
    .admin-table-container-lux {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .admin-table-container-lux::-webkit-scrollbar {
        height: 8px;
    }
    
    .admin-table-container-lux::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.5);
        border-radius: 4px;
    }
    
    .admin-table-container-lux::-webkit-scrollbar-thumb {
        background: rgba(34, 197, 94, 0.3);
        border-radius: 4px;
    }
    
    .admin-table-container-lux::-webkit-scrollbar-thumb:hover {
        background: rgba(34, 197, 94, 0.5);
    }
}

/* Ajustes para cards de ações rápidas */
@media (max-width: 768px) {
    .content-section .section-card > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .content-section .section-card h2 {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }
    
    .content-section .section-card > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .content-section .section-card button {
        width: 100% !important;
    }
}

/* Ajustes para modais no mobile */
@media (max-width: 768px) {
    .modal-lux {
        padding: 10px;
    }
    
    .modal-content-lux {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }
    
    .close-lux {
        font-size: 28px;
    }
}

/* Ajustes para formulários no mobile */
@media (max-width: 480px) {
    .form-group-lux small {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .valor-opcoes {
        grid-template-columns: 1fr !important;
    }
    
    .valor-opcao {
        width: 100% !important;
    }
}

/* ===================================
   DASHBOARD RESPONSIVE - MOBILE ENHANCED
   =================================== */

/* Melhorias para tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .sidebar-left {
        width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
        transform: none;
        border-right: none;
        border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Melhorias para mobile grande (481px - 768px) */
@media (max-width: 768px) {
    /* Sidebar melhorada */
    .sidebar-left {
        width: 100%;
        max-width: 320px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar-left.open {
        transform: translateX(0);
    }
    
    /* Mobile Menu Button melhorado */
    .mobile-menu-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        border: none;
        border-radius: 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.6);
    }
    
    .mobile-overlay {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    
    /* Main Content melhorado */
    .main-content {
        padding: 80px 16px 20px 16px;
        width: 100%;
    }
    
    /* Balance Header melhorado */
    .balance-header {
        margin-bottom: 24px;
        padding: 16px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
        border-radius: 16px;
        border: 1px solid rgba(51, 65, 85, 0.3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .balance-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .balance-value {
        font-size: 32px;
        width: 100%;
        text-align: center;
        padding: 12px;
        background: rgba(15, 23, 42, 0.6);
        border-radius: 12px;
    }
    
    .balance-icon {
        font-size: 36px;
    }
    
    .recharge-link {
        width: 100%;
        text-align: center;
        padding: 8px;
        background: rgba(34, 197, 94, 0.1);
        border-radius: 8px;
        font-size: 12px;
    }
    
    /* Dashboard Grid melhorado */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    /* Stat Cards melhorados */
    .stat-card-main {
        padding: 24px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
        border: 1px solid rgba(51, 65, 85, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .stat-card-main h4 {
        font-size: 14px;
        margin-bottom: 16px;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .stat-value-large {
        font-size: 42px;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .profit-card {
        padding: 24px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
        border: 1px solid rgba(34, 197, 94, 0.3);
        box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
    }
    
    .profit-label {
        font-size: 14px;
        color: #94a3b8;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .profit-value {
        font-size: 38px;
        font-weight: 700;
        color: #22c55e;
    }
    
    /* Config Section melhorada */
    .config-section-large {
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 24px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
        border: 1px solid rgba(51, 65, 85, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .config-title {
        font-size: 20px;
        margin-bottom: 24px;
        color: #ffffff;
        font-weight: 700;
    }
    
    .config-grid-advanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .config-field-advanced {
        margin-bottom: 20px;
    }
    
    .config-field-advanced label {
        font-size: 14px;
        font-weight: 600;
        color: #e2e8f0;
        margin-bottom: 10px;
        display: block;
    }
    
    .config-field-advanced input {
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(148, 163, 184, 0.2);
        color: #ffffff;
    }
    
    .config-field-advanced input:focus {
        outline: none;
        border-color: #22c55e;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }
    
    /* Bot Status melhorado */
    .bot-status {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .bot-status.active {
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        color: #000000;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    
    .bot-status.inactive {
        background: linear-gradient(135deg, #64748b 0%, #475569 100%);
        color: #ffffff;
    }
    
    /* Botões melhorados */
    .btn-activate-bot,
    .btn-stop-bot {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        margin-top: 16px;
    }
    
    .btn-activate-bot {
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        color: #000000;
    }
    
    .btn-activate-bot:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
    }
    
    .btn-stop-bot {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: #ffffff;
    }
    
    .btn-stop-bot:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    }
    
    /* History Section melhorada */
    .history-section {
        margin-top: 24px;
        padding: 24px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
        border: 1px solid rgba(51, 65, 85, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .history-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .history-title {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
    }
    
    .history-subtitle {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 20px;
    }
    
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        border: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .history-table {
        width: 100%;
        min-width: 800px;
        border-collapse: collapse;
        font-size: 13px;
    }
    
    .history-table thead {
        background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    }
    
    .history-table th {
        padding: 14px 12px;
        text-align: left;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1px;
        border-bottom: 2px solid rgba(34, 197, 94, 0.2);
    }
    
    .history-table td {
        padding: 14px 12px;
        border-bottom: 1px solid rgba(51, 65, 85, 0.3);
        color: #cbd5e1;
    }
    
    .history-table tbody tr:hover {
        background: rgba(34, 197, 94, 0.05);
    }
    
    /* Status Icons melhorados */
    .status-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
    }
    
    .status-win {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: #000000;
    }
    
    .status-lose {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: #ffffff;
    }
    
    .status-pending {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: #ffffff;
    }
    
    /* Result Classes melhoradas */
    .result-win {
        color: #22c55e;
        font-weight: 600;
    }
    
    .result-lose {
        color: #ef4444;
        font-weight: 600;
    }
    
    .result-pending {
        color: #f59e0b;
        font-weight: 600;
    }
    
    /* Sidebar melhorada */
    .sidebar-section {
        padding: 20px;
        border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .sidebar-title {
        font-size: 13px;
        margin-bottom: 16px;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .account-toggle {
        display: flex;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .toggle-btn {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        background: rgba(51, 65, 85, 0.5);
        color: #94a3b8;
    }
    
    .toggle-btn.active {
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        color: #000000;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    
    .btn-connect-house {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        color: #000000;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        margin-top: 12px;
    }
    
    .btn-connect-house:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
    }
    
    /* VIP Lock Card melhorado */
    .vip-lock-card {
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 24px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
        border: 1px solid rgba(51, 65, 85, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .vip-btn-unlock {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
        color: #000000;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    
    .vip-btn-unlock:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
    }
}

/* Melhorias para mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .main-content {
        padding: 70px 12px 16px 12px;
    }
    
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 15px;
        left: 15px;
    }
    
    .balance-header {
        padding: 12px;
        border-radius: 12px;
    }
    
    .balance-value {
        font-size: 28px;
        padding: 10px;
    }
    
    .balance-icon {
        font-size: 32px;
    }
    
    .stat-card-main,
    .profit-card,
    .config-section-large,
    .history-section,
    .vip-lock-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .stat-value-large {
        font-size: 36px;
    }
    
    .profit-value {
        font-size: 32px;
    }
    
    .config-title,
    .history-title {
        font-size: 18px;
    }
    
    .history-table {
        min-width: 700px;
        font-size: 12px;
    }
    
    .history-table th,
    .history-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .status-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .sidebar-left {
        max-width: 100%;
        width: 100%;
    }
    
    .sidebar-section {
        padding: 16px;
    }
    
    .btn-connect-house,
    .btn-activate-bot,
    .btn-stop-bot,
    .vip-btn-unlock {
        padding: 14px;
        font-size: 15px;
    }
    
    .config-field-advanced input {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Melhorias para mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
    .main-content {
        padding: 65px 10px 12px 10px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 12px;
        left: 12px;
    }
    
    .balance-value {
        font-size: 24px;
    }
    
    .stat-value-large {
        font-size: 32px;
    }
    
    .profit-value {
        font-size: 28px;
    }
    
    .config-title,
    .history-title {
        font-size: 16px;
    }
    
    .history-table {
        min-width: 600px;
        font-size: 11px;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    .stat-card-main,
    .profit-card,
    .config-section-large,
    .history-section,
    .vip-lock-card {
        padding: 16px 12px;
    }
}

/* ===================================
   DASHBOARD MODALS RESPONSIVE
   =================================== */

/* Modais responsivos para mobile */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }
    
    .modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
        animation: modalSlideUp 0.3s ease;
    }
    
    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .modal-header {
        padding: 20px;
        border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .modal-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 28px;
        line-height: 36px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 140px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-footer {
        padding: 16px 20px;
        border-top: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .modal-pagamento {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-pagamento .modal-body {
        padding: 20px 16px;
    }
    
    /* Planos no modal de pagamento */
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .plano-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .plano-header {
        margin-bottom: 16px;
    }
    
    .plano-nome {
        font-size: 18px;
    }
    
    .plano-valor {
        font-size: 24px;
    }
    
    .plano-descricao {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .btn-selecionar-plano {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
    
    /* Modal Perfil */
    .modal-perfil {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-perfil .modal-body {
        padding: 20px 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .btn-alterar-senha {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        margin-top: 16px;
    }
}

/* Modais para mobile pequeno */
@media (max-width: 480px) {
    .modal-overlay {
        padding: 0;
    }
    
    .modal-container {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 24px;
        line-height: 32px;
    }
    
    .modal-body {
        padding: 16px;
        max-height: calc(95vh - 120px);
    }
    
    .modal-footer {
        padding: 12px 16px;
    }
    
    .plano-card {
        padding: 16px;
    }
    
    .plano-nome {
        font-size: 16px;
    }
    
    .plano-valor {
        font-size: 22px;
    }
    
    .plano-descricao {
        font-size: 12px;
    }
    
    .btn-selecionar-plano {
        padding: 12px;
        font-size: 14px;
    }
}

/* Melhorias gerais para touch devices */
@media (max-width: 768px) {
    /* Aumentar área de toque para botões */
    button,
    .btn-connect-house,
    .btn-activate-bot,
    .btn-stop-bot,
    .toggle-btn,
    .vip-btn-unlock {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Melhorar scroll em tabelas */
    .table-container {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .table-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .table-container::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.5);
        border-radius: 3px;
    }
    
    .table-container::-webkit-scrollbar-thumb {
        background: rgba(34, 197, 94, 0.3);
        border-radius: 3px;
    }
    
    .table-container::-webkit-scrollbar-thumb:hover {
        background: rgba(34, 197, 94, 0.5);
    }
    
    /* Melhorar espaçamento entre elementos */
    .dashboard-col {
        margin-bottom: 16px;
    }
    
    .config-grid-advanced > * {
        margin-bottom: 16px;
    }
    
    /* Ajustar fontes para melhor legibilidade */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Melhorar contraste em inputs */
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"] {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

