/* Components CSS extracted from 1x theme for goldbet */

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.btn-info {
width: 65px;
}

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

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-promo {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-primary);
    padding: 12px;
    font-weight: 700;
}

.promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    animation: bounce 2s ease-in-out infinite;
}

.sidebar-promo .btn-promo {
    position: relative;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */


.hero-badge {
    display: inline-block;
    background: rgba(255, 71, 87, 0.2);
    color: var(--danger);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.game-card:nth-child(1) { animation-delay: 0.05s; }

.game-card:nth-child(2) { animation-delay: 0.1s; }

.game-card:nth-child(3) { animation-delay: 0.15s; }

.game-card:nth-child(4) { animation-delay: 0.2s; }

.game-card:nth-child(5) { animation-delay: 0.25s; }

.game-card:nth-child(6) { animation-delay: 0.3s; }

.game-card:nth-child(7) { animation-delay: 0.35s; }

.game-card:nth-child(8) { animation-delay: 0.4s; }

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.game-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.play-btn {
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

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

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-badge.hot {
    background: var(--danger);
    color: white;
}

.game-badge.new {
    background: var(--accent);
    color: var(--bg-primary);
}

.live-indicator {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 71, 87, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.live-indicator .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

.game-info {
    padding: 5px;
    text-align: center;
}

.game-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 12px;
    color: var(--text-muted);
}

.provider-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.provider-card:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-4px);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 71, 87, 0.2);
    color: var(--danger);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.live-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.bonus-badge { display: inline-block; background: var(--accent); color: var(--bg-primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 8px; }

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

.form-group { display: flex; flex-direction: column; gap: 4px; }

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

.btn-full { width: 100%; justify-content: center; }

.btn-small { padding: 8px 16px; font-size: 13px; }

.btn-social { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; color: var(--text-primary); font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--transition-fast); }

.btn-social:hover { border-color: var(--accent); background: var(--bg-hover); }

.btn-deposit { padding: 8px 16px; font-size: 13px; }

/* Profile Header */
.profile-header { background: var(--bg-card); border-radius: 16px; overflow: hidden; margin-bottom: 24px; border: 1px solid var(--border-color); }

.profile-cover { height: 120px; background: linear-gradient(135deg, rgba(20, 117, 225, 0.3), rgba(20, 117, 225, 0.1)); }

.profile-info { display: flex; align-items: flex-end; gap: 20px; padding: 0 24px 24px; margin-top: -40px; flex-wrap: wrap; }

.profile-avatar { position: relative; }

.profile-avatar img { width: 100px; height: 100px; border-radius: 50%; border: 4px solid var(--bg-card); }

.profile-details { flex: 1; }

.profile-details h1 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }

.profile-details p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

.profile-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }

.badge-vip { background: rgba(255, 215, 0, 0.15); color: #FFD700; }

.badge-verified { background: rgba(20, 117, 225, 0.15); color: var(--accent); }

.badge-member { background: var(--bg-hover); color: var(--text-secondary); }

.profile-actions { margin-left: auto; }

/* Profile Tabs */
.profile-tabs { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border-color); overflow: hidden; }

/* Transactions Table */
.transactions-table { overflow-x: auto; }

.transactions-table table { width: 100%; border-collapse: collapse; }

.transactions-table th, .transactions-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color); }

.transactions-table th { color: var(--text-muted); font-size: 12px; font-weight: 500; text-transform: uppercase; }

.transactions-table td { font-size: 14px; }

.type-badge { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; }

.type-badge.deposit { background: rgba(20, 117, 225, 0.15); color: var(--accent); }

.type-badge.withdrawal { background: rgba(255, 165, 2, 0.15); color: #FFA502; }

.type-badge.bonus { background: rgba(255, 107, 107, 0.15); color: #FF6B6B; }

.status-badge { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; }

.status-badge.success { background: rgba(20, 117, 225, 0.15); color: var(--accent); }

.status-badge.pending { background: rgba(255, 165, 2, 0.15); color: #FFA502; }

.status-badge.failed { background: rgba(255, 71, 87, 0.15); color: var(--danger); }

.filter-select { padding: 8px 12px; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-primary); font-size: 13px; }

.game-card:hover .favorite-btn { opacity: 1; }

/* History Stats */
.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

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

.history-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.filter-select {
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    min-width: 130px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-reset {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.btn-reset:hover {
    color: var(--danger);
    background: rgba(255, 71, 87, 0.1);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input-wrapper,
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-wrapper .currency-symbol {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.amount-input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 28px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
}

.quick-filter-btn {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quick-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quick-filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

/* History Table */
.history-section {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 24px;
}

.history-table-wrapper {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    padding: 16px;
    text-align: left;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.history-table th.sortable {
    cursor: pointer;
    user-select: none;
}

.history-table th.sortable:hover {
    color: var(--accent);
}

.history-table th svg {
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.5;
}

.history-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.history-row {
    transition: background var(--transition-fast);
}

.history-row:hover {
    background: var(--bg-hover);
}

.history-row:last-child td {
    border-bottom: none;
}

/* Game Cell */
.game-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.game-icon.large {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 12px;
}

.game-details {
    display: flex;
    flex-direction: column;
}

.game-name {
    font-weight: 600;
}

.game-provider {
    font-size: 12px;
    color: var(--text-muted);
}

.type-tag.table { background: rgba(78, 205, 196, 0.15); color: #4ECDC4; }

/* Details Button */
.btn-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.btn-details:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-export {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-export:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* =====================================================
   GAME IMAGE STYLES
   ===================================================== */

.game-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* =====================================================
   CASINO SEARCH & FILTERS STYLES
   ===================================================== */

.casino-filters-section {
    margin-bottom: 24px;
}

.filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-dropdown label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.provider-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.provider-search svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

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

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

.provider-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background var(--transition-fast);
}

.provider-item:hover {
    background: var(--bg-hover);
}

.provider-item input {
    display: none;
}

.provider-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.provider-item input:checked + .provider-check {
    background: var(--accent);
    border-color: var(--accent);
}

.provider-item input:checked + .provider-check::after {
    content: '✓';
    font-size: 12px;
    color: var(--bg-primary);
    font-weight: bold;
}

/* Filter Toggle */
.filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.filter-toggle span {
    font-size: 13px;
    color: var(--text-muted);
}

.action-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background: var(--bg-hover);
    color: var(--text-secondary);
}

.action-badge.instant {
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
}

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

.section-header h2 {
    font-size: 18px;
}

/* =====================================================
   DEPOSIT PAGE STYLES
   ===================================================== */

.deposit-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.deposit-methods {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.deposit-methods h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.method-badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.badge-instant,
.badge-time,
.badge-fee {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.badge-instant {
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
}

.badge-time {
    background: rgba(255, 165, 2, 0.15);
    color: #FFA502;
}

.badge-fee {
    background: var(--bg-hover);
    color: var(--text-muted);
}

/* Deposit Form Section */
.deposit-form-section {
    position: sticky;
    top: 100px;
}

.deposit-form-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.deposit-form-card h3 {
    font-size: 18px;
    margin-bottom: 24px;
}

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

.amount-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.amount-presets {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.amount-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.amount-btn:hover {
    border-color: var(--accent);
}

.amount-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.amount-input-group {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 16px;
    margin-bottom: 8px;
}

.amount-input-group .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 8px;
}

.amount-input-group input {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.amount-limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Payment Form */
.payment-form {
    margin-bottom: 24px;
}

.payment-form .form-group {
    margin-bottom: 16px;
}

.payment-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.payment-form input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color var(--transition-fast);
}

.payment-form input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Deposit Summary */
.deposit-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.bonus-badge {
    font-size: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 16px 24px;
    font-size: 16px;
}

.status-badge.processing {
    background: rgba(255, 165, 2, 0.15);
    color: #FFA502;
}

.btn-cancel {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cancel:hover {
    background: var(--danger);
    color: white;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.history-info {
    display: flex;
    flex-direction: column;
}

.history-amount {
    font-weight: 600;
    font-size: 14px;
}

.history-method {
    font-size: 12px;
    color: var(--text-muted);
}

.history-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-date {
    font-size: 12px;
    color: var(--text-muted);
}

.settings-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-with-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-with-badge input {
    flex: 1;
}

.verified-badge {
    padding: 4px 10px;
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-upload {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.btn-upload:hover {
    border-color: var(--accent);
}

.security-status .status-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-info {
    flex: 1;
}

.status-title {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.status-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.session-badge.current {
    padding: 4px 10px;
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.btn-disconnect {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.btn-small {
    padding: 8px 14px;
    font-size: 12px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: inherit;
}

.modal-bonus .bonus-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

/* =====================================================
   PAYMENT METHODS - D17, FLOUCI, CRYPTO
   ===================================================== */
.payment-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

.payment-method-card.active {
    border-color: var(--accent);
    background: rgba(20, 117, 225, 0.05);
}

.payment-method-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.payment-method-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.payment-method-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-method-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.payment-method-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.payment-method-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.payment-badge.instant {
    background: rgba(20, 117, 225, 0.15);
    color: var(--accent);
}

.payment-badge.fee {
    background: rgba(255, 165, 2, 0.15);
    color: #FFA502;
}

.payment-badge.secure {
    background: rgba(78, 205, 196, 0.15);
    color: #4ECDC4;
}

.payment-method-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-fast);
}

.payment-method-card.active .payment-method-check {
    opacity: 1;
    transform: scale(1);
}

.payment-method-check svg {
    color: var(--bg-primary);
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* Amount Input Section */
.amount-input-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.amount-input-section h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.amount-input-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.amount-input-wrapper .currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
}

.amount-input-wrapper input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    font-size: 28px;
    font-weight: 700;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    transition: all var(--transition-fast);
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.quick-amount-btn {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quick-amount-btn:hover {
    border-color: var(--accent);
    background: rgba(20, 117, 225, 0.1);
}

.quick-amount-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg-primary);
}

/* Payment Form Sections */
.payment-form-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    display: none;
}

.payment-form-section.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

.payment-form-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Empty Page State */
.empty-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px;
}

.empty-page-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-page-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.empty-page-content p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 400px;
}

/* =====================================================
   CASINO PAGE STYLES
   ===================================================== */

/* Casino Tabs Navigation */
.casino-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 24px;
}

.casino-tabs::-webkit-scrollbar {
    display: none;
}

.casino-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.casino-tab:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    color: var(--text-primary);
}

.casino-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.casino-tab svg {
    flex-shrink: 0;
}

/* Casino Section */
.casino-section {
    margin-bottom: 32px;
}

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

.section-title-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-nav {
    display: flex;
    gap: 8px;
}

/* Game Card Casino Style */
.game-card-casino {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 0;
}

.game-card-casino:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.game-image-casino {
    position: relative;
    aspect-ratio: 1;
    background: var(--card-color, var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-placeholder-casino {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.game-overlay-casino {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.play-btn-casino {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.play-btn-casino:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.game-badge-casino {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.game-badge-casino.hot {
    background: var(--danger);
    color: white;
}

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    animation: pulse-live 2s infinite;
}

.game-info-casino {
    padding: 10px 12px 6px;
}

.game-info-casino .game-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info-casino .game-provider {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-players {
    padding: 0 12px 10px;
    font-size: 11px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.provider-card-casino {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

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

.provider-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.provider-players {
    font-size: 11px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* =====================================================
   CASINO PAGE STYLES
   ===================================================== */

/* Casino Tabs Navigation */
.casino-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 24px;
}

.casino-tabs::-webkit-scrollbar {
    display: none;
}

.casino-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.casino-tab:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    color: var(--text-primary);
}

.casino-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.casino-tab svg {
    flex-shrink: 0;
}

/* Casino Section */
.casino-section {
    margin-bottom: 32px;
}

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

.section-title-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-nav {
    display: flex;
    gap: 8px;
}

/* Game Card Casino Style */
.game-card-casino {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 0;
}

.game-card-casino:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.game-image-casino {
    position: relative;
    aspect-ratio: 1;
    background: var(--card-color, var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-placeholder-casino {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.game-overlay-casino {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.play-btn-casino {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.play-btn-casino:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.game-badge-casino {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.game-badge-casino.hot {
    background: var(--danger);
    color: white;
}

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    animation: pulse-live 2s infinite;
}

.game-info-casino {
    padding: 10px 12px 6px;
}

.game-info-casino .game-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info-casino .game-provider {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-players {
    padding: 0 12px 10px;
    font-size: 11px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Provider Cards */
.provider-card-casino {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

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

.provider-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.provider-players {
    font-size: 11px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Casino Tabs Navigation */
        .casino-tabs {
            display: flex;
            gap: 8px;
            padding: 16px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

.casino-tabs::-webkit-scrollbar {
            display: none;
        }

.casino-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }

.casino-tab:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

.casino-tab.active {
            background: var(--accent);
            color: var(--bg-primary);
            border-color: var(--accent);
        }

.casino-tab svg {
            width: 18px;
            height: 18px;
        }

/* Search and Filter Bar */
        .casino-filters {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

.provider-dropdown {
            position: relative;
        }

.provider-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition-fast);
            min-width: 180px;
        }

.provider-btn:hover {
            border-color: var(--accent);
        }

.provider-btn svg:last-child {
            margin-left: auto;
            transition: transform var(--transition-fast);
        }

.provider-dropdown.open .provider-btn svg:last-child {
            transform: rotate(180deg);
        }

.provider-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition-fast);
            max-height: 300px;
            overflow-y: auto;
        }

.provider-dropdown.open .provider-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

.provider-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.provider-item:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

.provider-item.active {
            color: var(--accent);
            background: rgba(20, 117, 225, 0.1);
        }

/* Casino Games Section */
        .casino-section {
            margin-bottom: 40px;
        }

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

.casino-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* Casino Games Grid */
        .casino-games-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
        }

/* Casino Game Card */
        .casino-game-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: var(--bg-card);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.casino-game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

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

.game-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Aspect ratio for cards */
            overflow: hidden;
        }

.game-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-normal);
        }

.casino-game-card:hover .game-image-wrapper img {
            transform: scale(1.08);
        }

.game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

.play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            transform: scale(0.8);
            transition: all var(--transition-fast);
        }

.casino-game-card:hover .play-btn {
            transform: scale(1);
        }

.game-info {
            padding: 12px;
            background: linear-gradient(to top, var(--bg-card), transparent);
        }

.game-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.game-provider {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* Hot Badge */
        .game-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

.game-badge.hot {
            background: var(--danger);
            color: white;
        }

.game-badge.new {
            background: var(--accent);
            color: var(--bg-primary);
        }

.game-badge.exclusive {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: var(--bg-primary);
        }

/* Live indicator */
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 0, 0, 0.9);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            color: white;
            z-index: 2;
        }

.live-indicator::before {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: pulse-live 1.5s ease-in-out infinite;
        }

/* Casino Tabs Navigation */
        .casino-tabs {
            display: flex;
            gap: 8px;
            padding: 16px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

.casino-tabs::-webkit-scrollbar {
            display: none;
        }

.casino-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }

.casino-tab:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

.casino-tab.active {
            background: var(--accent);
            color: var(--bg-primary);
            border-color: var(--accent);
        }

.casino-tab svg {
            width: 18px;
            height: 18px;
        }

/* Search and Filter Bar */
        .casino-filters {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

.provider-dropdown {
            position: relative;
        }

.provider-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition-fast);
            min-width: 180px;
        }

.provider-btn:hover {
            border-color: var(--accent);
        }

.provider-btn svg:last-child {
            margin-left: auto;
            transition: transform var(--transition-fast);
        }

.provider-dropdown.open .provider-btn svg:last-child {
            transform: rotate(180deg);
        }

.provider-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition-fast);
            max-height: 300px;
            overflow-y: auto;
        }

.provider-dropdown.open .provider-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

.provider-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.provider-item:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

.provider-item.active {
            color: var(--accent);
            background: rgba(20, 117, 225, 0.1);
        }

/* Casino Games Section */
        .casino-section {
            margin-bottom: 40px;
        }

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

.casino-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* Casino Games Grid */
        .casino-games-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
        }

/* Casino Game Card */
        .casino-game-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: var(--bg-card);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.casino-game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

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

.game-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%; /* Aspect ratio for cards */
            overflow: hidden;
        }

.game-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-normal);
        }

.casino-game-card:hover .game-image-wrapper img {
            transform: scale(1.08);
        }

.game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

.play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            transform: scale(0.8);
            transition: all var(--transition-fast);
        }

.casino-game-card:hover .play-btn {
            transform: scale(1);
        }

.game-info {
            padding: 12px;
            background: linear-gradient(to top, var(--bg-card), transparent);
        }

.game-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.game-provider {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* Hot Badge */
        .game-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

.game-badge.hot {
            background: var(--danger);
            color: white;
        }

.game-badge.new {
            background: var(--accent);
            color: var(--bg-primary);
        }

.game-badge.exclusive {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: var(--bg-primary);
        }

/* Live indicator */
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            position: absolute;
            top: 10px;
            right: 100px;
            background: rgba(255, 0, 0, 0.9);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            color: white;
            z-index: 2;
        }

.live-indicator::before {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: pulse-live 1.5s ease-in-out infinite;
        }

/* Deposit Container */
        .deposit-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

/* Left Section - History */
        .deposit-history-section {
            flex: 1.2;
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border-color);
        }

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

.history-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
        }

.history-tabs {
            display: flex;
            gap: 8px;
        }

.history-tab {
            padding: 8px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.history-tab:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.history-tab.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-primary);
        }

.history-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.history-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: var(--bg-secondary);
            border-radius: 12px;
            transition: all var(--transition-fast);
        }

.history-item:hover {
            background: var(--bg-hover);
        }

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

.history-icon.deposit {
            background: rgba(20, 117, 225, 0.15);
            color: var(--accent);
        }

.history-icon.withdraw {
            background: rgba(255, 165, 2, 0.15);
            color: #FFA502;
        }

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

.history-details {
            flex: 1;
        }

.history-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

.history-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

.history-amount {
            text-align: right;
        }

.history-amount .amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: block;
        }

.history-amount .amount.positive {
            color: var(--accent);
        }

.history-amount .amount.negative {
            color: #FFA502;
        }

.history-amount .status {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 4px;
        }

.history-amount .status.success {
            background: rgba(20, 117, 225, 0.15);
            color: var(--accent);
        }

.history-amount .status.pending {
            background: rgba(255, 165, 2, 0.15);
            color: #FFA502;
        }

.empty-history {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
        }

.empty-history svg {
            width: 48px;
            height: 48px;
            margin-bottom: 12px;
            opacity: 0.5;
        }

/* Right Section - Header & Form */
        .deposit-right {
            flex: 1;
            width: 100%;
            max-width: 100%;
        }

.deposit-header {
            margin-bottom: 20px;
        }

.deposit-header h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.deposit-header p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
        }

/* Deposit Card */
        .deposit-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border-color);
        }

/* Amount Section */
        .amount-section {
            margin-bottom: 24px;
        }

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

.amount-input-wrapper {
            position: relative;
            margin-bottom: 12px;
        }

.amount-input-wrapper input {
            width: 100%;
            padding: 14px 16px;
            padding-left: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 20px;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            transition: all var(--transition-fast);
        }

.amount-input-wrapper input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

.amount-input-wrapper input::placeholder {
            color: var(--text-muted);
            font-weight: 400;
        }

.quick-amount-btn {
            padding: 10px 14px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.quick-amount-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.quick-amount-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-primary);
        }

/* Payment Methods Section */
        .payment-methods-section {
            margin-bottom: 20px;
        }

.payment-methods {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.payment-method {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.payment-method:hover {
            border-color: var(--text-muted);
            background: var(--bg-hover);
        }

.payment-method.selected {
            border-color: var(--accent);
            background: rgba(20, 117, 225, 0.08);
        }

.payment-method-logo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--bg-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.payment-method-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

.payment-method-info {
            flex: 1;
        }

.payment-method-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

.payment-method-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

.payment-method-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
        }

.payment-method.selected .payment-method-check {
            background: var(--accent);
            border-color: var(--accent);
        }

.payment-method-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--bg-primary);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

.payment-method.selected .payment-method-check svg {
            opacity: 1;
        }

/* Summary Info */
        .deposit-summary {
            background: var(--bg-secondary);
            border-radius: 10px;
            padding: 14px 16px;
            margin-top: 16px;
        }

/* Loading State */
        .btn-loading {
            position: relative;
            color: transparent !important;
        }

.btn-loading::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border: 3px solid var(--bg-primary);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

/* Profile Layout */
        .profile-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 24px;
        }

/* Profile Sidebar */
        .profile-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

/* Profile Card */
        .profile-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

.profile-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 16px;
            position: relative;
            display: inline-block;
        }

.profile-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #1475E1;
        }

.profile-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
        }

.profile-email {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 16px;
        }

.profile-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(20, 117, 225, 0.15);
            border-radius: 20px;
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
        }

.profile-badge svg {
            width: 16px;
            height: 16px;
        }

/* Profile Stats */
        .profile-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

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

.profile-stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
        }

.profile-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

/* Profile Menu */
        .profile-menu {
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

.profile-menu-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all var(--transition-fast);
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
        }

.profile-menu-item:last-child {
            border-bottom: none;
        }

.profile-menu-item:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

.profile-menu-item.active {
            background: rgba(20, 117, 225, 0.1);
            color: var(--accent);
        }

.profile-menu-item svg {
            width: 20px;
            height: 20px;
        }

.profile-menu-item .menu-arrow {
            margin-left: auto;
            opacity: 0.5;
        }

.profile-menu-item.danger {
            color: var(--danger);
        }

.profile-menu-item.danger:hover {
            background: rgba(255, 71, 87, 0.1);
        }

/* Profile Content */
        .profile-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

/* Section Card */
        .section-card {
            background: var(--bg-card);
            border-radius: 0;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

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

.section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
        }

.section-title svg {
            width: 22px;
            height: 22px;
            color: var(--accent);
        }

.section-action {
            padding: 8px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.section-action:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.section-body {
            padding: 24px;
        }

/* Form Styles */
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

.form-row:last-child {
            margin-bottom: 0;
        }

.form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

.form-group.full-width {
            grid-column: span 2;
        }

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

.form-input {
            padding: 12px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            transition: all var(--transition-fast);
        }

.form-input:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--bg-primary);
        }

.form-input:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

.form-input::placeholder {
            color: var(--text-muted);
        }

/* Action Buttons */
        .btn-primary {
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border: none;
            border-radius: 10px;
            color: var(--bg-primary);
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow);
        }

.btn-secondary {
            padding: 12px 24px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.btn-danger {
            padding: 12px 24px;
            background: transparent;
            border: 1px solid var(--danger);
            border-radius: 10px;
            color: var(--danger);
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

.btn-danger:hover {
            background: rgba(255, 71, 87, 0.1);
        }

.btn-group {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

.session-badge {
            padding: 4px 10px;
            background: rgba(20, 117, 225, 0.15);
            border-radius: 6px;
            color: var(--accent);
            font-size: 11px;
            font-weight: 600;
        }

/* History Tabs */
        .history-tabs-container {
            display: flex;
            gap: 10px;
            margin-bottom: 24px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

.history-main-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

.history-main-tab:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.history-main-tab.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--bg-primary);
        }

.history-main-tab svg {
            width: 18px;
            height: 18px;
        }

.filter-row {
            display: contents;
        }

.filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

.filter-label {
            font-size: 12px;
            color: var(--text-muted);
        }

.filter-select {
            padding: 10px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 13px;
            font-family: inherit;
            cursor: pointer;
            min-width: 120px;
        }

.filter-select:focus {
            outline: none;
            border-color: var(--accent);
        }

.filter-input {
            padding: 10px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 13px;
            font-family: inherit;
            min-width: 140px;
            color-scheme: dark;
        }

.filter-input:focus {
            outline: none;
            border-color: var(--accent);
        }

/* History Table */
        .history-table-container {
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

.history-table {
            width: 100%;
            border-collapse: collapse;
        }

.history-table th {
            padding: 16px 20px;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
        }

.history-table td {
            padding: 16px 20px;
            font-size: 14px;
            border-bottom: 1px solid var(--border-color);
        }

.history-table tbody tr:hover {
            background: var(--bg-hover);
        }

.history-table tbody tr:last-child td {
            border-bottom: none;
        }

/* Game Info Cell */
        .game-info-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.game-thumb {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-tertiary);
        }

.game-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

.game-details {
            display: flex;
            flex-direction: column;
        }

.game-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

.game-type {
            font-size: 12px;
            color: var(--text-muted);
        }

/* Status Badge */
        .status-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
        }

.status-badge.win {
            background: rgba(20, 117, 225, 0.15);
            color: var(--accent);
        }

.status-badge.loss {
            background: rgba(255, 71, 87, 0.15);
            color: var(--danger);
        }

.status-badge.pending {
            background: rgba(255, 165, 2, 0.15);
            color: #FFA502;
        }

.status-badge.cancelled {
            background: var(--bg-hover);
            color: var(--text-muted);
        }

/* Amount Cell */
        .amount-cell {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

.amount-cell.positive {
            color: var(--accent);
        }

.amount-cell.negative {
            color: var(--danger);
        }

/* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
        }

.empty-state svg {
            width: 64px;
            height: 64px;
            color: var(--text-muted);
            margin-bottom: 16px;
            opacity: 0.5;
        }

.empty-state h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

.empty-state p {
            color: var(--text-muted);
            font-size: 14px;
        }

/* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }

/* === Index Page Styles === */
/* Iframe – toutes versions */
.payment-iframe {
    display: block;
    width: 100%;
    border: 0;
    padding: 2px;
    padding-right: 2px;
    box-sizing: border-box;
    height: 100vh;
}

/* =====================================================
   HORIZONTAL SCROLLABLE PROFILE MENU
   ===================================================== */
.profile-menu-horizontal {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 24px;
}

.profile-menu-horizontal::-webkit-scrollbar {
    display: none;
}

.profile-menu-horizontal .profile-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.profile-menu-horizontal .profile-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.profile-menu-horizontal .profile-tab.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.profile-menu-horizontal .profile-tab svg {
    width: 18px;
    height: 18px;
}

.profile-menu-horizontal .profile-tab.active svg {
    stroke: var(--bg-primary);
}

.profile-menu-horizontal .profile-tab.danger {
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.3);
}

.profile-menu-horizontal .profile-tab.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.profile-menu-horizontal .profile-tab.danger svg {
    stroke: var(--danger);
}

/* Hide old profile menu on desktop too - we're using horizontal now */
.profile-sidebar .profile-menu {
    display: none;
}

/* =====================================================
   UPDATED PROFILE PAGE STYLES - Clean Layout
   ===================================================== */

/* Profile menu horizontal - positioned at top */


/* Full width profile content */
.profile-content-full {
    width: 100%;
    max-width: 100%;
}

.profile-content-full .section-card {
    background: var(--bg-card);
    border-radius: 0;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    overflow: hidden;
}

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

.profile-content-full .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-content-full .section-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.profile-content-full .section-body {
    padding: 24px;
}

/* =====================================================
   PROFILE NAVIGATION BAR - Simple Menu
   ===================================================== */
.profile-nav-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.profile-nav-bar::-webkit-scrollbar {
    display: none;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.profile-nav-item:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.profile-nav-item.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.profile-nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.profile-nav-item.active svg {
    stroke: var(--accent);
}

.profile-nav-item.danger {
    color: var(--danger);
}

.profile-nav-item.danger svg {
    stroke: var(--danger);
}

.profile-nav-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Profile Page Content */
.section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 24px;
    overflow: hidden;
}

/* First section card connects to nav bar - no gap, just separator line */
.section-card.profile-first-section {
    border-top: none;
    margin-top: 0;
}

/* Nav bar also no border radius */
.profile-nav-bar {
    border-radius: 0;
}

/* Sport Iframe */
.sport-iframe {
    width: 100%;
    height: calc(100vh - 70px);
    border: none;
    display: block;
}

/* =====================================================
   SPORT IFRAME - No padding
   ===================================================== */


.sport-iframe {
    margin: 0;
    padding: 0;
}

/* =====================================================
   STAKE-STYLE HEADER BUTTONS
   ===================================================== */
.btn-outline-header {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-header:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary-header {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary-header:hover {
    background: var(--accent-dark);
}

.stake-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stake-form-group > label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.stake-form-group > label .required {
    color: var(--danger);
}

/* =====================================================
   STAKE-STYLE BUTTONS
   ===================================================== */
.stake-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.stake-btn-primary:hover {
    background: var(--accent-dark);
}

.stake-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =====================================================
   STAKE-STYLE ERROR STATES
   ===================================================== */
.stake-form-group.has-error .stake-input-wrapper input,
.stake-form-group.has-error .stake-input-wrapper select,
.stake-form-group.has-error .stake-phone-prefix select,
.stake-form-group.has-error .stake-phone-input input {
    border-color: var(--danger);
}

.stake-form-group .error-message {
    color: var(--danger);
    font-size: 11px;
    min-height: 0;
    margin-top: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.stake-form-group .error-message.show {
    opacity: 1;
}

/* Input error state - preserve border-radius */
.form-group.has-error .input-wrapper {
    border: 2px solid var(--danger) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
    background: var(--bg-card);
}

.form-group.has-error .input-wrapper input,
.form-group.has-error .input-wrapper select {
    border: none !important;
    box-shadow: none !important;
    border-radius: 10px !important;
    background: transparent !important;
}

.form-group.has-error .input-wrapper:focus-within {
    border-color: var(--danger) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.2);
}

.form-group.has-error .input-icon {
    color: var(--danger);
}

/* Input success state - preserve border-radius */
.form-group.has-success .input-wrapper {
    border: 2px solid #2ecc71 !important;
    border-radius: 12px !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
    background: var(--bg-card);
}

.form-group.has-success .input-wrapper input,
.form-group.has-success .input-wrapper select {
    border: none !important;
    box-shadow: none !important;
    border-radius: 10px !important;
    background: transparent !important;
}

box-shadow: none !important;
}

.form-group.has-success .input-icon {
    color: #2ecc71;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }

}

.form-group.shake {
    animation: shake 0.4s ease;
}

/* Form hint text */
.form-hint {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 4px;
}

/* Modal title */
.modal-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

/* Form row for side by side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }