/* ============================================
   Game Center - Component Styles (Faceit Theme)
   ============================================ */

/* Cards - Faceit Style */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Rank Badge - Faceit Style */
.rank-badge-faceit {
    --badge-size: 44px;
    --badge-font: 1rem;
    --badge-border: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--badge-size);
    height: var(--badge-size);
    border-radius: 50%;
    font-weight: 800;
    font-size: var(--badge-font);
    background: rgba(26, 26, 26, 0.9);
    border: var(--badge-border) dashed currentColor;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.rank-badge-faceit--sm {
    --badge-size: 30px;
    --badge-font: 0.85rem;
    --badge-border: 2px;
}

.rank-badge-faceit--lg {
    --badge-size: 72px;
    --badge-font: 1.6rem;
    --badge-border: 4px;
}

/* VIP badge */
.avatar-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar-badge-wrap--sm {
    width: 36px;
    height: 36px;
}

.vip-badge {
    position: absolute;
    right: -4px;
    top: -4px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff7a18 0%, #ff5500 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    clip-path: polygon(50% 0%, 92% 18%, 100% 50%, 92% 82%, 50% 100%, 8% 82%, 0% 50%, 8% 18%);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.vip-badge--sm {
    width: 14px;
    height: 14px;
    font-size: 8px;
    border-width: 1px;
    right: -2px;
    top: -2px;
}

/* Steam connect popup */
.steam-connect-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    max-width: 380px;
    background: linear-gradient(145deg, rgba(27, 40, 56, 0.96), rgba(15, 20, 30, 0.95));
    border: 1px solid rgba(114, 176, 255, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

html[dir="rtl"] .steam-connect-popup {
    right: auto;
    left: 24px;
}

/* Wallet card */
.wallet-card .wallet-body {
    padding: 20px 28px;
}

.wallet-tabs {
    border-top: 0;
}

.wallet-tabs .tabs-nav {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
}

.wallet-tabs .tab-btn {
    padding: 12px 20px;
    text-transform: none;
    letter-spacing: 0.4px;
}

.wallet-tabs .tabs-content {
    padding-top: 6px;
}

.wallet-header {
    gap: 16px;
}

.wallet-balance {
    text-align: right;
}

.wallet-balance-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.wallet-balance-currency {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.wallet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}

.wallet-topup-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.wallet-topup-input {
    flex: 1;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.wallet-topup-btn {
    padding: 10px 16px;
    white-space: nowrap;
}

.wallet-quick-topups {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.wallet-quick-topup {
    min-width: 120px;
}

.wallet-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.wallet-activity-title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.wallet-transactions {
    display: grid;
    gap: 8px;
}

.wallet-pricing {
    margin-top: 18px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.wallet-pricing-compact {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.wallet-pricing-title {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.wallet-pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    align-items: end;
}

.wallet-pricing-actions {
    display: flex;
    gap: 8px;
    align-items: end;
}

.wallet-pricing-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wallet-pricing-status {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

@media (max-width: 900px) {
    .wallet-grid {
        grid-template-columns: 1fr;
    }

    .wallet-activity {
        order: 2;
    }
}

@media (max-width: 640px) {
    .wallet-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wallet-balance {
        text-align: left;
    }

    .wallet-topup-row {
        flex-direction: column;
        align-items: stretch;
    }

    .wallet-topup-btn {
        width: 100%;
    }
}

.steam-connect-popup.is-hidden {
    display: none;
}

.steam-connect-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

html[dir="rtl"] .steam-connect-close {
    right: auto;
    left: 10px;
}

.steam-connect-close:hover {
    color: var(--text-primary);
}

.steam-connect-header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.steam-connect-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(49, 129, 196, 0.4), rgba(27, 40, 56, 0.85));
    border: 1px solid rgba(114, 176, 255, 0.35);
    box-shadow: inset 0 0 16px rgba(55, 128, 194, 0.25);
}

.steam-connect-logo {
    width: 28px;
    height: 28px;
    display: block;
    fill: #ffffff;
}

.steam-connect-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.steam-connect-text {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
}

.steam-connect-actions {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.steam-connect-btn {
    padding: 9px 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #1b6bd9 0%, #1b2838 100%);
    border-color: rgba(114, 176, 255, 0.45);
}

.steam-connect-later {
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.steam-connect-btn:hover {
    filter: brightness(1.06);
}

.steam-connect-later:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .steam-connect-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card:hover::before {
    opacity: 1;
}

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

.card-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Server List - Faceit Style */
.server-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.server-item {
    padding: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.server-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.server-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
    background: var(--bg-hover);
}

.server-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.server-item h3,
.server-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.2rem;
}

.server-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.server-connection {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.server-connection .connection-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.server-connection .connection-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    word-break: break-all;
}

.server-connection .connection-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
    transition: var(--transition);
}

.server-connection:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.server-connection:hover .connection-icon {
    color: var(--primary-light);
}

.server-connection:hover .connection-text {
    color: var(--primary-color);
}

.server-connection:hover .connection-hint {
    color: var(--primary-color);
}

.server-connection:active {
    transform: translateY(0);
}

.server-connection.copied {
    background: rgba(0, 255, 136, 0.1) !important;
    border-color: var(--success-color) !important;
}

.server-connection.copied .connection-hint {
    color: var(--success-color) !important;
}

/* Server Map Image */
.server-map-image {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: 12px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-card);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 12px 16px;
}

.map-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Server Info Compact */
.server-info-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

/* Server Stats */
.server-stats {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
    border: none;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Status Badges - Faceit Style */
.status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

.status:hover::before {
    left: 100%;
}

.status.running {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.status.stopped {
    background: rgba(255, 51, 51, 0.2);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
}

.status.pending {
    background: rgba(255, 170, 0, 0.2);
    color: var(--warning-color);
    border: 1px solid var(--warning-color);
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.2);
}

.status.starting {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.status.creating {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.status.expired {
    background: rgba(139, 69, 19, 0.2);
    color: #cd853f;
    border: 1px solid #cd853f;
    box-shadow: 0 0 10px rgba(205, 133, 63, 0.2);
    opacity: 0.8;
}

.status.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff3333;
    border: 1px solid #ff3333;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    animation: shake 0.5s ease-in-out;
}

.status.offline {
    background: rgba(128, 128, 128, 0.2);
    color: #888888;
    border: 1px solid #888888;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.2);
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Players Info - Faceit Style */
.players-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.players-bar {
    flex: 1;
    height: 10px;
    background: var(--bg-primary);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.players-fill {
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
}

.players-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Empty State - Faceit Style */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: var(--transition);
}

.empty-state:hover .empty-state-icon {
    opacity: 0.5;
    filter: grayscale(0%);
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Loading - Faceit Style */
.loading {
    text-align: center;
    padding: 60px;
    color: var(--text-secondary);
}

.loading-spinner {
    border: 4px solid var(--bg-primary);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

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

/* Forms - Faceit Style */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 11px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1), 0 0 20px rgba(255, 85, 0, 0.2);
}

.form-error {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Login Page - Faceit Style */
.login-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.05) 0%, transparent 70%);
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
    padding: 30px 35px;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo-mark {
    width: 68px;
    height: 68px;
    margin: 0 auto 15px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 0 28px rgba(255, 85, 0, 0.45));
    transition: var(--transition);
}

.login-logo-mark svg {
    width: 100%;
    height: 100%;
}

.login-logo-mark:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 36px rgba(255, 85, 0, 0.6));
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.steam-button {
    width: 100%;
    padding: 12px 22px;
    background: linear-gradient(135deg, #1b6bd9 0%, #1b2838 100%);
    color: white;
    border: 1px solid rgba(114, 176, 255, 0.45);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.steam-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(114, 176, 255, 0.75);
    filter: brightness(1.05);
}

.steam-button:hover::before {
    left: 100%;
}

.steam-button-logo {
    width: 20px;
    height: 20px;
    display: block;
    fill: #ffffff;
}

.divider {
    text-align: center;
    margin: 18px 0;
    color: var(--text-muted);
    position: relative;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider:before,
.divider:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.divider:before {
    right: 0;
}

.divider:after {
    left: 0;
}

/* Profile - Faceit Style */
.profile-header {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.4);
    transition: var(--transition);
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 85, 0, 0.6);
}

.profile-info h2 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.profile-info p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

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

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Utilities */
.text-center {
    text-align: center;
}

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

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

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 36px; }
