:root {
    --lb-bg: var(--bg-base);
    --lb-panel: var(--bg-panel);
    --lb-panel-2: var(--bg-card);
    --lb-panel-3: var(--bg-card-hover);
    --lb-border: var(--border-accent);
    --lb-border-strong: var(--border-accent-strong);
    --lb-text: var(--text-primary);
    --lb-muted: var(--text-muted);
    --lb-yellow: var(--primary);
    --lb-yellow-glow: var(--primary-glow);
    --lb-yellow-soft: var(--primary-soft);
    --lb-yellow-card: var(--primary-card);
    --lb-blue: var(--secondary);
    --lb-green: var(--success);
    --lb-red: var(--danger);
    --lb-radius: var(--radius-lg);
    --lb-radius-sm: var(--radius-md);
    --lb-radius-xs: var(--radius-sm);
    --lb-shadow: var(--shadow-xl);
    --lb-glass: rgba(0,0,0,0.65);
    --lb-glass-border: rgba(var(--primary-rgb), 0.12);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body.lb-account-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            ellipse 80% 50% at 50% -20%,
            rgba(var(--primary-rgb), 0.08),
            transparent 60%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(var(--primary-rgb), 0.04),
            transparent 40%
        ),
        var(--lb-bg);

    color: var(--lb-text);

    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Arial,
        sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

.lb-account-pane[hidden],
.lb-modal[hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| ÃƒÆ’Ã…â€œst menÃƒÆ’Ã‚Â¼
|--------------------------------------------------------------------------
*/

.lb-account-topbar {
    position: sticky;
    top: 0;
    z-index: 50;

    min-height: 70px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: rgba(7, 7, 13, 0.9);
    border-bottom: 1px solid var(--lb-border);

    backdrop-filter: blur(18px);
}

.lb-account-logo {
    color: var(--text-primary);
    text-decoration: none;

    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.lb-account-logo b {
    color: var(--lb-yellow);
}

.lb-account-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb-account-lobby,
.lb-account-logout {
    min-height: 40px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--lb-border);
    border-radius: 10px;

    background: var(--glass-bg-subtle);
    color: var(--lb-text);

    text-decoration: none;
    cursor: pointer;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.lb-account-lobby:hover,
.lb-account-logout:hover {
    border-color: var(--lb-border-strong);
    background: var(--glass-bg-medium);
}

.lb-account-mini-balance {
    min-width: 132px;
    text-align: right;
}

.lb-account-mini-balance small,
.lb-account-mini-balance strong {
    display: block;
}

.lb-account-mini-balance small {
    color: var(--lb-muted);
    font-size: 11px;
}

.lb-account-mini-balance strong {
    margin-top: 3px;
    color: var(--lb-yellow);
}

/*
|--------------------------------------------------------------------------
| Ana yerleÃƒâ€¦Ã…Â¸im
|--------------------------------------------------------------------------
*/

.lb-account-shell {
    width: min(1480px, 100%);
    min-height: calc(100vh - 70px);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        260px
        minmax(0, 1fr);
}

.lb-account-nav {
    position: sticky;
    top: 70px;

    height: calc(100vh - 70px);
    padding: 20px 14px 36px;
    width: 280px;
    flex-shrink: 0;

    overflow-y: auto;

    border-right: 1px solid var(--lb-border);
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-account-nav::-webkit-scrollbar {
    width: 4px;
}

.lb-account-nav::-webkit-scrollbar-track {
    background: transparent;
}

.lb-account-nav::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 4px;
}

/* Sidebar Profile */
.lb-ac-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    margin-bottom: 8px;
}

.lb-ac-sidebar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lb-yellow), var(--dark-yellow));
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.25);
}

.lb-ac-sidebar-info {
    flex: 1;
    min-width: 0;
}

.lb-ac-sidebar-info strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--lb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-ac-sidebar-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.lb-ac-sidebar-balance span {
    color: var(--lb-yellow);
    font-size: .85rem;
    font-weight: 700;
}

.lb-ac-sidebar-refresh {
    background: none;
    border: none;
    color: var(--lb-muted);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    font-size: .9rem;
    transition: color 0.2s, transform 0.3s;
}

.lb-ac-sidebar-refresh:hover {
    color: var(--lb-yellow);
    transform: rotate(180deg);
}

/* Sidebar Action Buttons */
.lb-ac-sidebar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 4px;
    margin-bottom: 10px;
}

.lb-ac-sidebar-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.lb-ac-sidebar-action-btn.deposit {
    background: linear-gradient(135deg, var(--lb-yellow), var(--dark-yellow));
    color: var(--bg-base);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

.lb-ac-sidebar-action-btn.deposit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
}

.lb-ac-sidebar-action-btn.withdraw {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--lb-yellow);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.lb-ac-sidebar-action-btn.withdraw:hover {
    background: rgba(var(--primary-rgb), 0.14);
    border-color: rgba(var(--primary-rgb), 0.35);
    transform: translateY(-1px);
}

/* Sidebar VIP */
.lb-ac-sidebar-vip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin: 0 4px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.03));
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    text-decoration: none;
    color: var(--lb-yellow);
    font-size: .85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.lb-ac-sidebar-vip:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), rgba(var(--primary-rgb), 0.06));
    border-color: rgba(var(--primary-rgb), 0.25);
}

.lb-ac-sidebar-vip i:first-child {
    font-size: 1.1rem;
}

.lb-ac-sidebar-vip span {
    flex: 1;
}

.lb-ac-sidebar-vip i:last-child {
    font-size: 1rem;
    opacity: 0.5;
}

/* Sidebar Groups */
.lb-ac-sidebar-group {
    margin-bottom: 4px;
}

.lb-ac-sidebar-group-title {
    font-size: .68rem;
    font-weight: 700;
    color: var(--lb-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 14px 4px;
    opacity: 0.7;
}

.lb-ac-sidebar-group button,
.lb-ac-sidebar-group a.lb-ac-sidebar-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--lb-muted);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
}

.lb-ac-sidebar-group a.lb-ac-sidebar-link {
    text-decoration: none;
    box-sizing: border-box;
}

.lb-ac-sidebar-group button i,
.lb-ac-sidebar-group a.lb-ac-sidebar-link i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.lb-ac-sidebar-group button:hover,
.lb-ac-sidebar-group a.lb-ac-sidebar-link:hover {
    color: var(--lb-text);
    background: rgba(var(--primary-rgb), 0.06);
}

.lb-ac-sidebar-group button.active {
    color: var(--lb-text);
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.04));
    font-weight: 600;
}

.lb-ac-sidebar-group button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--lb-yellow);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

.lb-ac-sidebar-arrow {
    margin-left: auto !important;
    font-size: .8rem !important;
    opacity: 0.4;
}

.lb-account-count {
    margin-left: auto;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--lb-yellow);
    font-size: .65rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
}

.lb-account-content {
    min-width: 0;

    padding:
        38px
        clamp(22px, 4vw, 64px)
        80px;
}

/*
|--------------------------------------------------------------------------
| Oyuncu ÃƒÆ’Ã‚Â¶zeti
|--------------------------------------------------------------------------
*/

.lb-account-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--lb-yellow),
            var(--dark-yellow)
        );

    color: var(--bg-base);

    font-size: 18px;
    font-weight: 900;

    box-shadow:
        0 10px 24px
        rgba(var(--primary-rgb), 0.25);
}

/*
|--------------------------------------------------------------------------
| Sol menÃƒÆ’Ã‚Â¼
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Sekmeler
|--------------------------------------------------------------------------
*/

.lb-account-pane {
    animation:
        lbAccountPaneIn
        0.28s ease both;
}

@keyframes lbAccountPaneIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.lb-account-heading {
    margin-bottom: 26px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.lb-account-heading.compact {
    align-items: center;
}

.lb-account-heading h1 {
    margin: 4px 0 8px;

    font-size:
        clamp(
            26px,
            3vw,
            38px
        );
}

.lb-account-heading p {
    margin: 0;

    color: var(--lb-muted);
    line-height: 1.6;
}

.lb-account-eyebrow {
    color: var(--lb-yellow);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.lb-copy-id {
    padding: 10px 14px;

    border: 1px solid var(--lb-border);
    border-radius: 10px;

    background: var(--glass-bg-subtle);
    color: var(--text-secondary);

    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Ãƒâ€Ã‚Â°statistik kartlarÃƒâ€Ã‚Â±
|--------------------------------------------------------------------------
*/

.lb-account-stats {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 14px;
    margin-bottom: 18px;
}

.lb-account-stats article {
    min-height: 138px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);

    background:
        linear-gradient(
            145deg,
            var(--glass-bg-subtle),
            var(--glass-bg-subtle)
        );
}

.lb-account-stats article.primary {
    border-color: rgba(var(--primary-rgb), 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(var(--primary-rgb), 0.15),
            rgba(var(--primary-rgb), 0.04)
        );
}

.lb-account-stats span {
    color: var(--lb-muted);
    font-size: 12px;
}

.lb-account-stats strong {
    margin: 10px 0 8px;

    font-size:
        clamp(
            20px,
            2.2vw,
            28px
        );
}

.lb-account-stats article.primary > strong {
    color: var(--lb-yellow);
}

.lb-account-stats small {
    color: var(--text-dim);
    font-size: 11px;
}

.lb-account-stats small b {
    color: var(--text-secondary);
}

/*
|--------------------------------------------------------------------------
| HÃƒâ€Ã‚Â±zlÃƒâ€Ã‚Â± iÃƒâ€¦Ã…Â¸lem kartlarÃƒâ€Ã‚Â±
|--------------------------------------------------------------------------
*/

.lb-account-quick-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 12px;
    margin-bottom: 18px;
}

.lb-account-quick-grid button {
    min-height: 92px;
    padding: 16px;

    display: grid;

    grid-template-columns:
        34px
        1fr;

    grid-template-rows:
        auto
        auto;

    column-gap: 12px;
    align-items: center;

    border: 1px solid var(--lb-border);
    border-radius: 14px;

    background: var(--lb-panel);

    text-align: left;
    cursor: pointer;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.lb-account-quick-grid button:hover {
    transform: translateY(-2px);

    border-color: var(--lb-border-strong);
    background: var(--lb-panel-2);
}

.lb-account-quick-grid i {
    grid-row: 1 / 3;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(var(--primary-rgb), 0.13);
    color: var(--lb-yellow);

    font-size: 20px;
    font-style: normal;
}

.lb-account-quick-grid span {
    font-weight: 800;
}

.lb-account-quick-grid small {
    color: var(--lb-muted);
}

/*
|--------------------------------------------------------------------------
| Genel kartlar
|--------------------------------------------------------------------------
*/

.lb-account-card {
    margin-top: 16px;
    padding: 24px;

    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);

    background: rgba(16, 16, 24, 0.88);

    box-shadow: var(--lb-shadow);
}

.lb-account-card h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.lb-account-card-title {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lb-account-card-title h2 {
    margin: 0 0 5px;
}

.lb-account-card-title p {
    margin: 0;

    color: var(--lb-muted);
    font-size: 13px;
}

.lb-account-info-list {
    margin: 0;

    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 0 28px;
}

.lb-account-info-list div {
    min-width: 0;
    padding: 15px 0;

    display: flex;
    justify-content: space-between;
    gap: 18px;

    border-bottom: 1px solid var(--lb-border);
}

.lb-account-info-list dt {
    color: var(--lb-muted);
}

.lb-account-info-list dd {
    margin: 0;

    overflow-wrap: anywhere;

    text-align: right;
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| Formlar
|--------------------------------------------------------------------------
*/

.lb-form {
    display: block;
}

.lb-form-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px;
}

.lb-form-grid.one-line {
    grid-template-columns:
        minmax(220px, 420px);
}

.lb-form label,
.lb-modal-dialog > .lb-form > label {
    display: flex;
    flex-direction: column;
    gap: 8px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 700;
}

.lb-form label.full {
    grid-column: 1 / -1;
}

.lb-form input,
.lb-form select,
.lb-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;

    border: 1px solid var(--lb-border);
    border-radius: 10px;

    outline: none;

    background: var(--bg-deep);
    color: var(--text-primary);

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.lb-form textarea {
    min-height: 120px;
    resize: vertical;
}

.lb-form input:focus,
.lb-form select:focus,
.lb-form textarea:focus {
    border-color: rgba(var(--primary-rgb), 0.7);

    box-shadow:
        0 0 0 3px
        rgba(var(--primary-rgb), 0.12);
}

.lb-form input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lb-form-actions {
    margin-top: 22px;

    display: flex;
    justify-content: flex-end;
}

.lb-form-help {
    color: var(--lb-muted);
    font-size: 12px;
    line-height: 1.6;
}

/*
|--------------------------------------------------------------------------
| Butonlar
|--------------------------------------------------------------------------
*/

.lb-btn {
    min-height: 44px;
    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-weight: 700;
    font-size: .875rem;
    letter-spacing: 0.01em;
    cursor: pointer;

    transition:
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.lb-btn.primary {
    background:
        linear-gradient(
            135deg,
            var(--lb-yellow),
            var(--dark-yellow)
        );

    color: var(--bg-base);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

.lb-btn.primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
}

.lb-btn.secondary {
    border-color: var(--lb-border);

    background: var(--glass-bg-subtle);
    color: var(--lb-text);
}

.lb-btn.secondary:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.lb-btn:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

/*
|--------------------------------------------------------------------------
| UyarÃƒâ€Ã‚Â±lar
|--------------------------------------------------------------------------
*/

.lb-alert {
    margin-bottom: 18px;
    padding: 12px 14px;

    border: 1px solid var(--lb-border);
    border-radius: 10px;

    line-height: 1.45;
}

.lb-alert.success {
    border-color: rgba(var(--success-rgb), 0.3);

    background: rgba(var(--success-rgb), 0.09);
    color: var(--success-light);
}

.lb-alert.error {
    border-color: rgba(var(--danger-rgb), 0.3);

    background: rgba(var(--danger-rgb), 0.09);
    color: var(--danger-light);
}

/*
|--------------------------------------------------------------------------
| ÃƒÆ’Ã¢â‚¬â€œdeme yÃƒÆ’Ã‚Â¶ntemleri
|--------------------------------------------------------------------------
*/

.lb-method-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;
}

.lb-method-card {
    min-height: 130px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;

    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);

    background: var(--lb-panel);

    cursor: pointer;
    text-align: left;

    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.lb-method-card:hover,
.lb-method-card.active {
    border-color: rgba(var(--primary-rgb), 0.7);
    background: rgba(var(--primary-rgb), 0.1);
}

.lb-method-card:hover {
    transform: translateY(-2px);
}

.lb-method-card strong {
    font-size: 16px;
}

.lb-method-card span {
    color: var(--lb-muted);
    font-size: 12px;
}

.lb-method-card small {
    color: var(--text-dim);
}

.lb-selected-method {
    margin-bottom: 18px;
    color: var(--text-secondary);
}

/*
|--------------------------------------------------------------------------
| Liste satÃƒâ€Ã‚Â±rlarÃƒâ€Ã‚Â±
|--------------------------------------------------------------------------
*/

.lb-account-list {
    margin-top: 16px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-list-row {
    padding: 15px 17px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid var(--lb-border);
    border-radius: 13px;

    background: rgba(16, 16, 24, 0.84);
}

.lb-list-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(var(--primary-rgb), 0.12);
    color: var(--lb-yellow);

    font-weight: 900;
}

.lb-list-icon.credit {
    background: rgba(var(--success-rgb), 0.11);
    color: var(--success-light);
}

.lb-list-icon.debit {
    background: rgba(var(--danger-rgb), 0.11);
    color: var(--danger-light);
}

.lb-list-main {
    min-width: 0;
    flex: 1;
}

.lb-list-main strong,
.lb-list-main span {
    display: block;
}

.lb-list-main strong {
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-list-main span {
    margin-top: 4px;

    overflow-wrap: anywhere;

    color: var(--lb-muted);
    font-size: 12px;
}

.lb-list-side {
    flex: 0 0 auto;
    text-align: right;
}

.lb-list-side strong,
.lb-list-side span {
    display: block;
}

.lb-list-side span {
    margin-top: 4px;

    color: var(--lb-muted);
    font-size: 11px;
}

.lb-list-actions {
    display: flex;
    gap: 8px;
}

.lb-status {
    display: inline-flex !important;
    width: max-content;
    padding: 3px 8px;

    border-radius: 99px;

    background: var(--glass-bg-medium);

    font-size: 10px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.lb-status.approved,
.lb-status.active,
.lb-status.finished {
    background: rgba(var(--success-rgb), 0.12);
    color: var(--success-light);
}

.lb-status.pending,
.lb-status.open {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-light);
}

.lb-status.rejected,
.lb-status.cancelled {
    background: rgba(var(--danger-rgb), 0.12);
    color: var(--danger-light);
}

/*
|--------------------------------------------------------------------------
| Ãƒâ€Ã‚Â°Ãƒâ€¦Ã…Â¸lem filtreleri
|--------------------------------------------------------------------------
*/

.lb-filter-row {
    margin-bottom: 16px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lb-filter-row button {
    min-height: 36px;
    padding: 0 14px;

    border: 1px solid var(--lb-border);
    border-radius: 99px;

    background: var(--lb-panel);
    color: var(--lb-muted);

    cursor: pointer;
}

.lb-filter-row button.active {
    border-color: transparent;

    background: linear-gradient(135deg, var(--lb-yellow), var(--dark-yellow));
    color: var(--bg-base);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

/*
|--------------------------------------------------------------------------
| Oturumlar
|--------------------------------------------------------------------------
*/

.lb-session-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-session-row {
    padding: 14px;

    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr)
        auto;

    gap: 12px;
    align-items: center;

    border: 1px solid var(--lb-border);
    border-radius: 12px;

    background: var(--glass-bg-subtle);
}

.lb-session-row.current {
    border-color: rgba(var(--success-rgb), 0.3);

    background: rgba(var(--success-rgb), 0.055);
}

.lb-session-device {
    min-width: 0;
}

.lb-session-device strong,
.lb-session-device span {
    display: block;
}

.lb-session-device span {
    margin-top: 4px;

    overflow-wrap: anywhere;

    color: var(--lb-muted);
    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Sorumlu oyun
|--------------------------------------------------------------------------
*/

.lb-limit-current:empty {
    display: none;
}

.lb-limit-row {
    padding: 13px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    border-bottom: 1px solid var(--lb-border);
}

.lb-limit-row:last-child {
    border-bottom: 0;
}

.lb-limit-row strong,
.lb-limit-row span {
    display: block;
}

.lb-limit-row span {
    margin-top: 4px;

    color: var(--lb-muted);
    font-size: 12px;
}

.lb-warning-box {
    margin-top: 18px;
    padding: 13px;

    border: 1px solid rgba(var(--primary-rgb), 0.24);
    border-radius: 10px;

    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);

    font-size: 12px;
    line-height: 1.6;
}

.lb-balance-note {
    margin-top: 18px;
    color: var(--lb-muted);
}

.lb-balance-note strong {
    color: var(--lb-yellow);
}

/*
|--------------------------------------------------------------------------
| BoÃƒâ€¦Ã…Â¸ iÃƒÆ’Ã‚Â§erik
|--------------------------------------------------------------------------
*/

.lb-empty {
    padding: 34px 20px;

    border: 1px dashed var(--lb-border-strong);
    border-radius: 14px;

    color: var(--lb-muted);
    text-align: center;
}

.lb-check {
    flex-direction: row !important;
    align-items: center;

    cursor: pointer;
}

.lb-check input {
    width: 18px;
    min-height: 18px;
}

/*
|--------------------------------------------------------------------------
| Modal
|--------------------------------------------------------------------------
*/

.lb-modal {
    position: fixed;
    inset: 0;
    z-index: 100;

    display: grid;
    place-items: center;

    padding: 20px;
}

.lb-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(7px);
}

.lb-modal-dialog {
    position: relative;
    z-index: 1;

    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    padding: 26px;

    border: 1px solid var(--lb-border-strong);
    border-radius: 18px;

    background: var(--bg-base);

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, 0.55);
}

.lb-modal-dialog h2 {
    margin: 0 36px 6px 0;
}

.lb-modal-dialog > p {
    margin: 0 0 20px;

    color: var(--lb-muted);
    font-size: 13px;
    line-height: 1.55;
}

.lb-modal-dialog .lb-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lb-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    border: 1px solid var(--lb-border);
    border-radius: 9px;

    background: var(--glass-bg-subtle);

    font-size: 24px;
    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| YÃƒÆ’Ã‚Â¼kleme ekranÃƒâ€Ã‚Â±
|--------------------------------------------------------------------------
*/

.lb-account-loading {
    position: fixed;
    inset: 0;
    z-index: 200;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;

    background: var(--lb-bg);
    color: var(--lb-muted);
}

.lb-account-loading.hidden {
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.lb-spinner {
    width: 34px;
    height: 34px;

    border: 3px solid var(--border);
    border-top-color: var(--lb-yellow);
    border-radius: 50%;

    animation:
        lbAccountSpin
        0.75s linear infinite;
}

@keyframes lbAccountSpin {
    to {
        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Bildirim kutularÃƒâ€Ã‚Â±
|--------------------------------------------------------------------------
*/

.lb-toast-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 150;

    display: flex;
    flex-direction: column;
    gap: 9px;
}

.lb-toast {
    min-width: 260px;
    max-width: 360px;
    padding: 13px 15px;

    border: 1px solid var(--lb-border-strong);
    border-radius: 11px;

    background: var(--bg-panel);

    box-shadow: var(--lb-shadow);

    animation:
        lbAccountToast
        0.25s ease both;
}

.lb-toast.success {
    border-color: rgba(var(--success-rgb), 0.35);
}

.lb-toast.error {
    border-color: rgba(var(--danger-rgb), 0.35);
}

@keyframes lbAccountToast {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/*
|--------------------------------------------------------------------------
| Mobil gÃƒÆ’Ã‚Â¶rÃƒÆ’Ã‚Â¼nÃƒÆ’Ã‚Â¼m
|--------------------------------------------------------------------------
*/

.lb-account-mobile-hero,
.lb-account-mobile-back {
    display: none;
}

@media (max-width: 1120px) {
    .lb-account-stats,
    .lb-account-quick-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .lb-method-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 820px) {
    .lb-account-topbar {
        padding: 0 16px;
    }

    .lb-account-mini-balance {
        display: none;
    }

    .lb-account-shell {
        display: block;
    }

    .lb-account-mobile-hero {
        margin: 14px 14px 0;
        padding: 16px;

        display: grid;
        grid-template-columns:
            44px
            minmax(0, 1fr)
            auto;

        gap: 12px;
        align-items: center;

        border: 1px solid var(--lb-border);
        border-radius: 15px;

        background: var(--lb-panel);
    }

    .lb-account-mobile-who {
        min-width: 0;
    }

    .lb-account-mobile-who strong,
    .lb-account-mobile-who span {
        display: block;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lb-account-mobile-who span {
        margin-top: 3px;

        color: var(--lb-muted);
        font-size: 12px;
    }

    .lb-account-mobile-balance {
        text-align: right;
    }

    .lb-account-mobile-balance small,
    .lb-account-mobile-balance strong {
        display: block;
    }

    .lb-account-mobile-balance small {
        color: var(--lb-muted);
        font-size: 10px;
    }

    .lb-account-mobile-balance strong {
        margin-top: 4px;

        color: var(--lb-yellow);
        font-size: 14px;
    }

    .lb-account-nav {
        position: static;

        width: auto;
        height: auto;
        flex-shrink: unset;

        margin: 14px;
        padding: 14px;

        border: 1px solid var(--lb-border);
        border-radius: 16px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .lb-ac-sidebar-profile {
        width: 100%;
    }

    .lb-ac-sidebar-actions {
        width: 100%;
    }

    .lb-ac-sidebar-vip {
        width: 100%;
    }

    .lb-ac-sidebar-group {
        flex: 1;
        min-width: 140px;
    }

    .lb-account-content {
        display: none;

        padding:
            18px
            14px
            70px;
    }

    body.lb-account-pane-open
    .lb-account-nav,

    body.lb-account-pane-open
    .lb-account-mobile-hero {
        display: none;
    }

    body.lb-account-pane-open
    .lb-account-content {
        display: block;
    }

    .lb-account-mobile-back {
        margin-bottom: 18px;
        padding: 0;

        display: inline-flex;

        border: 0;

        background: transparent;
        color: var(--text-muted);

        cursor: pointer;
    }
}

@media (max-width: 620px) {
    .lb-account-logo {
        font-size: 19px;
    }

    .lb-account-lobby {
        display: none;
    }

    .lb-account-stats,
    .lb-account-quick-grid,
    .lb-method-grid,
    .lb-form-grid,
    .lb-account-info-list {
        grid-template-columns: 1fr;
    }

    .lb-account-heading {
        flex-direction: column;
    }

    .lb-account-heading.compact {
        align-items: flex-start;
    }

    .lb-account-card {
        padding: 18px;
    }

    .lb-list-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .lb-list-side {
        width: 100%;
        padding-left: 54px;
        text-align: left;
    }

    .lb-list-actions {
        width: 100%;
        padding-left: 54px;
    }

    .lb-session-row {
        grid-template-columns:
            40px
            minmax(0, 1fr);
    }

    .lb-session-row .lb-btn {
        grid-column: 2;
        justify-self: start;
    }

    .lb-account-mobile-hero {
        grid-template-columns:
            44px
            minmax(0, 1fr);
    }

    .lb-account-mobile-balance {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 12px;

        border-top: 1px solid var(--lb-border);

        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/*
|--------------------------------------------------------------------------
| Ortak site kabuÃƒâ€Ã…Â¸u entegrasyonu - Account Center v2
|--------------------------------------------------------------------------
*/

body.site-shell-v2.lb-account-page .lb-account-main {
    width: 100%;
    max-width: none;
    padding: 0;
}

body.site-shell-v2.lb-account-page .lb-account-shell {
    width: min(1400px, 100%);
    min-height: calc(100vh - var(--shell-header-height, 66px));
}

body.site-shell-v2.lb-account-page .lb-account-nav {
    top: var(--shell-header-height, 66px);
    height: calc(100vh - var(--shell-header-height, 66px));
    border-right-color: var(--shell-border, var(--lb-border));
    background: rgba(10, 11, 20, 0.82);
    backdrop-filter: blur(18px);
}

body.site-shell-v2.lb-account-page .lb-account-content {
    padding-top: 34px;
}

body.site-shell-v2.lb-account-page .lb-account-loading {
    z-index: 150;
}

/* GÃƒÆ’Ã‚Â¶rselli yatÃƒâ€Ã‚Â±rÃƒâ€Ã‚Â±m ve ÃƒÆ’Ã‚Â§ekim kartlarÃƒâ€Ã‚Â± */
.lb-method-card {
    min-height: 124px;
    padding: 15px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 14px;
    overflow: hidden;
}

.lb-method-logo {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--text-primary);
}

.lb-method-logo::before {
    content: "ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Âº";
    color: var(--secondary);
    font-size: 20px;
    font-weight: 900;
}

.lb-method-logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 7px;
    object-fit: contain;
    background: var(--text-primary);
}

.lb-method-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.lb-method-card .lb-method-copy strong {
    max-width: 100%;
    overflow: hidden;
    color: var(--text-primary);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-method-card .lb-method-copy small {
    line-height: 1.45;
}

.lb-method-select-label {
    align-self: start;
    padding: 6px 10px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--info-light);
    background: var(--glass-bg-subtle);
    font-size: 11px;
    white-space: nowrap;
}

.lb-method-card.active .lb-method-select-label {
    border-color: rgba(var(--primary-rgb), 0.38);
    color: var(--text-primary);
    background: rgba(var(--primary-rgb), 0.28);
}

.lb-method-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.lb-selected-method-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb-selected-method-head > div {
    min-width: 0;
}

.lb-selected-method-head small,
.lb-selected-method-head strong {
    display: block;
}

.lb-selected-method-head small {
    margin-bottom: 3px;
    color: var(--lb-muted);
    font-size: 11px;
}

.lb-selected-method-account {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--lb-border);
    border-radius: 12px;
    background: var(--glass-bg-subtle);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    body.site-shell-v2.lb-account-page .lb-account-main {
        padding: 0 0 92px;
    }
}

@media (max-width: 820px) {
    body.site-shell-v2.lb-account-page .lb-account-shell {
        min-height: auto;
    }

    body.site-shell-v2.lb-account-page .lb-account-nav {
        height: auto;
    }
}

@media (max-width: 620px) {
    .lb-method-card {
        min-height: 108px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 11px;
        padding: 13px;
    }

    .lb-method-logo {
        width: 48px;
        height: 48px;
    }

    .lb-method-select-label {
        padding: 5px 8px;
    }
}


/* =========================================================
   ACCOUNT OVERVIEW - YELLOW ULTRA MODERN
========================================================= */

/* Animations */
@keyframes lbAcctFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lbAcctGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
    }
    50% {
        box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.25);
    }
}

@keyframes lbAcctShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes lbAcctPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Profile Header */
.lb-acct-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 20px;
    margin-bottom: 28px;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    position: relative;
    overflow: hidden;
    animation: lbAcctFadeUp 0.5s ease both;
}

.lb-acct-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--primary-rgb), 0.4),
        transparent
    );
}

.lb-acct-profile-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(var(--primary-rgb), 0.08),
        transparent 70%
    );
    pointer-events: none;
}

.lb-acct-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lb-yellow) 0%, var(--primary-dark) 100%);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow:
        0 0 0 3px rgba(var(--primary-rgb), 0.2),
        0 8px 24px rgba(var(--primary-rgb), 0.25);
    position: relative;
    z-index: 1;
}

.lb-acct-profile-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.lb-acct-profile-info h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lb-text);
    letter-spacing: -0.02em;
}

.lb-acct-username {
    color: var(--lb-yellow);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lb-acct-joined {
    color: var(--lb-muted);
    font-size: .8rem;
}

/* Section */
.lb-acct-section {
    margin-bottom: 28px;
    animation: lbAcctFadeUp 0.5s ease both;
}

.lb-acct-section:nth-child(2) { animation-delay: 0.05s; }
.lb-acct-section:nth-child(3) { animation-delay: 0.1s; }
.lb-acct-section:nth-child(4) { animation-delay: 0.15s; }
.lb-acct-section:nth-child(5) { animation-delay: 0.2s; }
.lb-acct-section:nth-child(6) { animation-delay: 0.25s; }

.lb-acct-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lb-text);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-acct-section-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--lb-yellow);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

.lb-acct-section-desc {
    color: var(--lb-muted);
    font-size: .85rem;
    margin: 0 0 18px;
    padding-left: 11px;
}

/* Verification Grid */
.lb-acct-verify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.lb-acct-verify-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lb-acct-verify-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.15),
        transparent 50%
    );
    -webkit-mask: linear-gradient(var(--text-primary) 0 0) content-box, linear-gradient(var(--text-primary) 0 0);
    mask: linear-gradient(var(--text-primary) 0 0) content-box, linear-gradient(var(--text-primary) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.lb-acct-verify-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.1);
}

.lb-acct-verify-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    color: var(--lb-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.1);
}

.lb-acct-verify-body {
    flex: 1;
    min-width: 0;
}

.lb-acct-verify-body strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--lb-text);
}

.lb-acct-verify-value,
.lb-acct-verify-sub {
    font-size: .8rem;
    color: var(--lb-muted);
}

/* Badge */
.lb-acct-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(var(--danger-rgb), 0.12);
    color: var(--danger-light);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lb-acct-badge.verified,
.lb-acct-badge.active {
    background: rgba(var(--success-rgb), 0.12);
    color: var(--success-light);
    box-shadow: 0 0 12px rgba(var(--success-rgb), 0.15);
}

.lb-acct-badge.inactive {
    background: var(--glass-bg-subtle);
    color: var(--lb-muted);
    text-transform: uppercase;
}

/* Security Grid */
.lb-acct-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
}

.lb-acct-sec-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lb-acct-sec-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.1);
}

.lb-acct-sec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.04));
    color: var(--lb-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lb-acct-sec-body {
    flex: 1;
    min-width: 0;
}

.lb-acct-sec-body strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--lb-text);
}

.lb-acct-sec-body span {
    font-size: .8rem;
    color: var(--lb-muted);
}

.lb-acct-sec-link {
    background: none;
    border: none;
    color: var(--lb-yellow);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lb-acct-sec-link:hover {
    background: rgba(var(--primary-rgb), 0.1);
    text-decoration: none;
}

/* Info Grid */
.lb-acct-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0;
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lb-acct-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.06);
    transition: background 0.2s ease;
}

.lb-acct-info-row:last-child {
    border-bottom: none;
}

.lb-acct-info-row:hover {
    background: rgba(var(--primary-rgb), 0.03);
}

.lb-acct-info-label {
    font-size: .85rem;
    color: var(--lb-muted);
    font-weight: 500;
}

.lb-acct-info-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--lb-text);
    text-align: right;
}

.lb-acct-info-note {
    margin-top: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.02));
    border-left: 3px solid var(--lb-yellow);
    border-radius: 0 12px 12px 0;
    font-size: .82rem;
    color: var(--lb-muted);
    line-height: 1.5;
}

/* Address Form */
.lb-acct-address-form {
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lb-acct-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.lb-acct-address-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--lb-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lb-acct-address-form label.full {
    grid-column: 1 / -1;
}

.lb-acct-address-form input,
.lb-acct-address-form select,
.lb-acct-address-form textarea {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 10px;
    color: var(--lb-text);
    padding: 12px 16px;
    font-size: .9rem;
    transition: all 0.25s ease;
}

.lb-acct-address-form input:focus,
.lb-acct-address-form select:focus,
.lb-acct-address-form textarea:focus {
    outline: none;
    border-color: var(--lb-yellow);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.lb-acct-address-form input::placeholder,
.lb-acct-address-form textarea::placeholder {
    color: rgba(var(--text-muted-rgb,139,146,165),0.5);
}

/* Betting Summary Grid */
.lb-acct-betting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lb-acct-bet-card {
    text-align: center;
    padding: 24px 14px;
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lb-acct-bet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lb-acct-bet-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
}

.lb-acct-bet-card:hover::before {
    opacity: 1;
}

.lb-acct-bet-card.primary {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    border-color: rgba(var(--primary-rgb), 0.25);
    position: relative;
}

.lb-acct-bet-card.primary::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.6), transparent);
}

.lb-acct-bet-period {
    font-size: .78rem;
    font-weight: 600;
    color: var(--lb-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lb-acct-bet-card.primary .lb-acct-bet-period {
    color: var(--lb-yellow);
}

.lb-acct-bet-card strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lb-text);
}

.lb-acct-bet-card.primary strong {
    color: var(--lb-yellow);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

/* Responsive */
@media (max-width: 820px) {
    .lb-acct-verify-grid,
    .lb-acct-security-grid {
        grid-template-columns: 1fr;
    }

    .lb-acct-betting-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-acct-address-grid {
        grid-template-columns: 1fr;
    }

    .lb-acct-profile-header {
        padding: 22px 20px;
    }
}

@media (max-width: 620px) {
    .lb-acct-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .lb-acct-avatar {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .lb-acct-info-grid {
        grid-template-columns: 1fr;
    }

    .lb-acct-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .lb-acct-info-value {
        text-align: left;
    }

    .lb-acct-betting-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lb-acct-bet-card {
        padding: 18px 10px;
    }

    .lb-acct-bet-card strong {
        font-size: 1rem;
    }
}

/* =========================================================
   BONUS PAGE - CASINO STYLE
========================================================= */

@keyframes lbBonusProgress {
    from { width: 0; }
}

@keyframes lbBonusShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Bonus Claim Section */
.lb-bonus-claim-section {
    margin-bottom: 28px;
    animation: lbAcctFadeUp 0.5s ease both;
}

.lb-bonus-claim-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.02));
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lb-bonus-claim-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lb-bonus-claim-info > i {
    font-size: 1.8rem;
    color: var(--lb-yellow);
}

.lb-bonus-claim-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lb-text);
    margin-bottom: 2px;
}

.lb-bonus-claim-info span {
    font-size: .82rem;
    color: var(--lb-muted);
}

.lb-bonus-claim-result {
    margin-top: 12px;
}

.lb-bonus-claim-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 500;
}

.lb-bonus-claim-msg.success {
    background: rgba(var(--success-rgb), 0.1);
    border: 1px solid rgba(var(--success-rgb), 0.2);
    color: var(--success-light);
}

.lb-bonus-claim-msg.error {
    background: rgba(var(--danger-rgb), 0.1);
    border: 1px solid rgba(var(--danger-rgb), 0.2);
    color: var(--danger-light);
}

.lb-bonus-claim-msg.warning {
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    color: var(--lb-yellow);
}

.lb-bonus-claim-msg i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lb-bonus-section {
    margin-bottom: 32px;
    animation: lbAcctFadeUp 0.5s ease both;
}

.lb-bonus-section:nth-child(2) { animation-delay: 0.1s; }

.lb-bonus-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.lb-bonus-section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lb-text);
}

.lb-bonus-section-header h2 i {
    color: var(--lb-yellow);
    font-size: 1.3rem;
}

/* Active Bonus Grid */
.lb-bonus-active-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Active Bonus Card */
.lb-bonus-active-card {
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lb-bonus-active-card.single {
    max-width: 520px;
}

.lb-bonus-active-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lb-yellow), rgba(var(--primary-rgb), 0.3));
    animation: lbBonusShimmer 3s linear infinite;
    background-size: 200% 100%;
}

.lb-bonus-active-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
}

.lb-bonus-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 14px;
}

.lb-bonus-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.18), rgba(var(--primary-rgb), 0.06));
    color: var(--lb-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.lb-bonus-card-info {
    flex: 1;
    min-width: 0;
}

.lb-bonus-card-info strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--lb-text);
    margin-bottom: 3px;
}

.lb-bonus-card-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lb-bonus-card-status.active {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--lb-yellow);
}

.lb-bonus-card-amount {
    text-align: right;
}

.lb-bonus-card-amount small {
    display: block;
    font-size: .7rem;
    color: var(--lb-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.lb-bonus-card-amount strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lb-yellow);
}

/* Progress */
.lb-bonus-card-progress {
    padding: 0 20px 20px;
}

.lb-bonus-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lb-bonus-progress-header span {
    font-size: .78rem;
    color: var(--lb-muted);
}

.lb-bonus-progress-header strong {
    font-size: .85rem;
    font-weight: 700;
    color: var(--lb-yellow);
}

.lb-bonus-progress-bar {
    height: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.lb-bonus-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lb-yellow), var(--dark-yellow));
    border-radius: 10px;
    position: relative;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: lbBonusProgress 1s ease both;
}

.lb-bonus-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--text-dim),
        transparent
    );
    background-size: 200% 100%;
    animation: lbBonusShimmer 2s linear infinite;
}

.lb-bonus-progress-detail {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.lb-bonus-progress-detail span {
    font-size: .72rem;
    color: var(--lb-muted);
}

/* Empty State */
.lb-bonus-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: var(--lb-glass);
    border: 1px dashed rgba(var(--primary-rgb), 0.15);
    border-radius: 16px;
    text-align: center;
    grid-column: 1 / -1;
}

.lb-bonus-empty i {
    font-size: 2.5rem;
    color: rgba(var(--primary-rgb), 0.25);
    margin-bottom: 14px;
}

.lb-bonus-empty p {
    margin: 0 0 6px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--lb-text);
}

.lb-bonus-empty span {
    font-size: .82rem;
    color: var(--lb-muted);
}

/* History Table */
.lb-bonus-history-list {
    background: var(--lb-glass);
    border: 1px solid var(--lb-glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lb-bonus-history-table {
    width: 100%;
}

.lb-bonus-history-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 20px;
    background: rgba(var(--primary-rgb), 0.04);
    border-bottom: 1px solid var(--lb-glass-border);
}

.lb-bonus-history-head span {
    font-size: .72rem;
    font-weight: 700;
    color: var(--lb-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lb-bonus-history-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.04);
    transition: background 0.2s ease;
    align-items: center;
}

.lb-bonus-history-row:last-child {
    border-bottom: none;
}

.lb-bonus-history-row:hover {
    background: rgba(var(--primary-rgb), 0.03);
}

.lb-bonus-h-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--lb-text);
}

.lb-bonus-h-amount {
    font-size: .85rem;
    font-weight: 700;
    color: var(--lb-yellow);
}

.lb-bonus-h-status {
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.lb-bonus-h-status.completed {
    background: rgba(var(--success-rgb), 0.12);
    color: var(--success-light);
}

.lb-bonus-h-status.expired {
    background: rgba(var(--danger-rgb), 0.12);
    color: var(--danger-light);
}

.lb-bonus-h-date {
    font-size: .8rem;
    color: var(--lb-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .lb-bonus-active-card.single {
        max-width: 100%;
    }

    .lb-bonus-history-head,
    .lb-bonus-history-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .lb-bonus-h-date {
        display: none;
    }
}

@media (max-width: 620px) {
    .lb-bonus-card-header {
        flex-wrap: wrap;
    }

    .lb-bonus-card-amount {
        width: 100%;
        text-align: left;
        margin-top: 4px;
        padding-left: 62px;
    }
}
