/* =============================================
   STATFLARE - SPORTS BETTING ANALYTICS
   Domain: statflare.bet
   Colors: Orange, Yellow, Black
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-orange: #FF6B00;
    --primary-yellow: #FFB800;
    --primary-gold: #F5A623;

    /* Background Colors */
    --bg-black: #0D0D0D;
    --bg-dark: #1A1A1A;
    --bg-surface: #252525;
    --bg-elevated: #2D2D2D;
    --bg-card: #1E1E1E;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    --text-accent: var(--primary-orange);

    /* Status Colors */
    --success: #00C853;
    --danger: #FF5252;
    --warning: #FFB800;
    --info: #2196F3;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-card: linear-gradient(145deg, #252525 0%, #1A1A1A 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(255, 107, 0, 0.2);

    /* Border */
    --border-color: #333333;
    --border-color-light: #444444;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-yellow);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 24px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-image-small {
    height: 32px;
    width: auto;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 8px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-black);
    box-shadow: var(--shadow-sm);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--primary-orange);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* =============================================
   PAGE HEADER WITH SPORT TABS
   ============================================= */
.page-header {
    padding: 32px 24px;
    text-align: center;
    background: var(--gradient-dark);
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sport Tabs */
.sport-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.sport-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.sport-tab:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.sport-tab.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: var(--shadow-glow);
}

.sport-tab-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.sport-tab-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.sport-tab.active .sport-tab-name {
    color: var(--primary-orange);
}

/* Sub Tabs (Player Standings / Team Standings, etc.) */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 16px 0;
}

.sub-tab {
    padding: 10px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sub-tab:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.sub-tab:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: none;
}

.sub-tab:hover {
    color: var(--text-primary);
}

.sub-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--bg-black);
}

/* =============================================
   DATE SELECTOR
   ============================================= */
.date-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.date-item {
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-item:hover {
    border-color: var(--primary-orange);
    color: var(--text-primary);
}

.date-item.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--bg-black);
    font-weight: 600;
}

/* =============================================
   FILTER SIDEBAR
   ============================================= */
.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
}

.filter-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 94px;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

/* Over/Under Toggle */
.toggle-group {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.toggle-btn:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: none;
}

.toggle-btn.active {
    background: var(--success);
    border-color: var(--success);
    color: var(--bg-black);
}

.toggle-btn.active.under {
    background: var(--danger);
    border-color: var(--danger);
}

/* Range Slider */
.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.filter-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-elevated);
    border-radius: 3px;
    outline: none;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

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

.btn-reset {
    width: 100%;
    padding: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.2s ease;
}

.btn-reset:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* =============================================
   SORTING TABS
   ============================================= */
.sorting-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background: var(--bg-surface);
    padding: 4px;
    border-radius: var(--border-radius);
}

.sorting-tab {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

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

.sorting-tab.active {
    background: var(--primary-orange);
    color: var(--bg-black);
}

/* =============================================
   PROP CARDS
   ============================================= */
.prop-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
    align-items: center;
    transition: all 0.2s ease;
}

.prop-card:hover {
    border-color: var(--primary-orange);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.prop-player-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prop-player-avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prop-player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prop-player-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.prop-player-team {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.prop-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prop-type {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.prop-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prop-line-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.prop-odds {
    color: var(--success);
    font-weight: 600;
}

.prop-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prop-stat {
    padding: 4px 10px;
    background: var(--bg-surface);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.prop-stat-value {
    color: var(--text-primary);
    font-weight: 600;
}

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

.prop-game-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.prop-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.prop-likes svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   GAME CARDS
   ============================================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.game-card-header {
    padding: 16px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.game-date-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.game-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.game-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.game-team-logo {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-team-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.game-vs {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 700;
}

.game-odds-section {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.game-odds-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

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

.game-odds-value {
    display: flex;
    gap: 12px;
}

.odds-btn {
    padding: 6px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.odds-btn:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

/* =============================================
   DATA TABLES
   ============================================= */
.data-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

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

.data-table th {
    background: var(--bg-surface);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table tbody tr {
    transition: background 0.2s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 107, 0, 0.05);
}

.data-table .team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-table .team-logo {
    width: 32px;
    height: 32px;
    background: var(--bg-surface);
    border-radius: 4px;
}

.data-table .player-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-table .player-avatar {
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
}

.data-table .positive {
    color: var(--success);
}

.data-table .negative {
    color: var(--danger);
}

.data-table .highlight {
    color: var(--primary-orange);
    font-weight: 600;
}

/* =============================================
   DETAIL PAGE LAYOUT
   ============================================= */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Detail Header Card */
.detail-header-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

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

.detail-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.detail-team-logo {
    width: 64px;
    height: 64px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-team-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-team-record {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.detail-game-info {
    text-align: center;
}

.detail-game-date {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-game-time {
    color: var(--text-secondary);
}

/* Odds Tabs */
.odds-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.odds-tab {
    flex: 1;
    padding: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.odds-tab:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.odds-tab:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: none;
}

.odds-tab:not(:first-child):not(:last-child) {
    border-left: none;
}

.odds-tab:hover {
    color: var(--text-primary);
}

.odds-tab.active {
    background: var(--bg-elevated);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Odds Display */
.odds-display {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
}

.odds-item {
    text-align: center;
}

.odds-team {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.odds-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

/* Graph Placeholder */
.chart-container {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.chart-placeholder {
    color: var(--text-muted);
    text-align: center;
}

/* Period Tabs */
.period-tabs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.period-tab {
    padding: 6px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-tab:hover {
    border-color: var(--primary-orange);
}

.period-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--bg-black);
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.sidebar-card-header {
    padding: 16px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.sidebar-card-body {
    padding: 16px;
}

.sidebar-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.sidebar-tab {
    flex: 1;
    padding: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.sidebar-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.sidebar-tab:last-child {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.sidebar-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--bg-black);
}

.lineup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: var(--bg-surface);
    border-radius: 4px;
}

.lineup-number {
    width: 24px;
    height: 24px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lineup-name {
    flex: 1;
    font-size: 0.9rem;
}

.lineup-position {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Sportsbook Odds */
.sportsbook-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sportsbook-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    min-width: 80px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sportsbook-item:hover {
    border-color: var(--primary-orange);
}

.sportsbook-logo {
    width: 32px;
    height: 32px;
    background: var(--bg-elevated);
    border-radius: 4px;
    margin-bottom: 8px;
}

.sportsbook-odds {
    font-weight: 600;
    color: var(--success);
}

/* =============================================
   PLAYER DETAIL PAGE
   ============================================= */
.player-header {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 24px;
}

.player-avatar-lg {
    width: 120px;
    height: 120px;
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.player-info {
    flex: 1;
}

.player-name-lg {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.player-team-lg {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.player-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.player-detail-item {
    display: flex;
    flex-direction: column;
}

.player-detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-detail-value {
    font-weight: 600;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 16px;
    text-align: center;
}

.stats-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* =============================================
   CARDS & SECTIONS (GENERAL)
   ============================================= */
.section {
    padding: 80px 24px;
}

.section-dark {
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

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

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-auth {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-auth {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: var(--gradient-dark);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.social-link:hover {
    background: var(--primary-orange);
}

.social-link:hover svg {
    color: var(--bg-black);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-disclaimer {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

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

/* =============================================
   UTILITIES
   ============================================= */
.text-center {
    text-align: center;
}

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

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

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

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

.text-accent {
    color: var(--primary-orange);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(0, 200, 83, 0.15);
    color: var(--success);
}

.badge-danger {
    background: rgba(255, 82, 82, 0.15);
    color: var(--danger);
}

.badge-warning {
    background: rgba(255, 184, 0, 0.15);
    color: var(--warning);
}

/* Main content area */
.main-content {
    min-height: calc(100vh - 70px);
}

/* Search Input */
.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Player Cards Grid */
.player-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.player-card-sm {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.player-card-sm:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.player-card-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    margin: 0 auto 16px;
    overflow: hidden;
}

.player-card-team {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.player-card-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.player-card-position {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 500;
}

/* =============================================
   SPORT SHOWCASE (Home Page)
   ============================================= */
.sport-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sport-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sport-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sport-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-lg);
}

.sport-card .sport-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.sport-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sport-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================
   SPORTSBOOK GRID (Home Page)
   ============================================= */
.sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sportsbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sportsbook-logo-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.sportsbook-logo-card:hover {
    border-color: var(--primary-orange);
    color: var(--text-primary);
}

/* =============================================
   POPULAR BADGE (Pricing)
   ============================================= */
.pricing-card.popular {
    position: relative;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   HOME PAGE - SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   HOME PAGE - FEATURES GRID
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   HOME PAGE - PRICING GRID
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
}

.pricing-tier {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 28px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* =============================================
   HOME PAGE - FAQ ACCORDION STYLES
   ============================================= */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   HOME PAGE - TEXT UTILITIES
   ============================================= */
.text-center {
    text-align: center;
}

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

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

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.text-accent {
    color: var(--primary-orange);
}

/* Spacing utilities */
.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

/* =============================================
   DASHBOARD PAGE STYLES
   ============================================= */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

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

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

.dashboard-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .dashboard-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dashboard-links-grid {
        grid-template-columns: 1fr;
    }
}

.quick-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-lg);
}

.quick-link-card .link-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.quick-link-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-link-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.quick-link-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Updates Card */
.updates-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.updates-header {
    padding: 20px 24px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.updates-body {
    padding: 24px;
}

.update-item {
    padding-left: 16px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-orange);
}

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

.update-item.success {
    border-left-color: var(--success);
}

.update-item.muted {
    border-left-color: var(--text-muted);
}

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

.update-title {
    font-weight: 600;
    color: var(--text-primary);
}

.update-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.update-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   STATIC PAGES - PAGE HERO
   ============================================= */
.page-hero {
    background: var(--gradient-dark);
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero .section-title {
    margin-bottom: 12px;
}

.page-hero .section-subtitle {
    max-width: 500px;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.content-text h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.content-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

/* =============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

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

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* =============================================
   PRICING PAGE STYLES
   ============================================= */
.pricing-annual-note {
    text-align: center;
    margin-top: 32px;
    padding: 16px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
}

.pricing-annual-note p {
    margin: 0;
    color: var(--text-secondary);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-surface);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td {
    color: var(--text-secondary);
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* =============================================
   RESPONSIBLE GAMING PAGE STYLES
   ============================================= */
.responsible-gaming-intro {
    margin-bottom: 32px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid var(--danger);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 2rem;
}

.warning-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.warning-signs-list {
    max-width: 700px;
    margin: 0 auto;
}

.warning-sign-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.warning-sign-item:last-child {
    border-bottom: none;
}

.warning-check {
    font-size: 1.2rem;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .help-resources-grid {
        grid-template-columns: 1fr;
    }
}

.help-resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
}

.help-resource-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.help-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
}

.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.disclaimer-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* =============================================
   USER PROFILE PAGE STYLES
   ============================================= */
.profile-container {
    max-width: 700px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

.profile-avatar-wrapper {
    flex-shrink: 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-black);
}

.profile-info h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.profile-info p {
    margin-bottom: 12px;
}

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

@media (max-width: 576px) {
    .profile-badges {
        justify-content: center;
    }
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-subscription {
    background: var(--gradient-primary);
    color: var(--bg-black);
}

.badge-oauth {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.profile-form .form-group {
    margin-bottom: 24px;
}

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

.subscription-tier {
    background: var(--bg-surface);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--primary-orange);
}

.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.oauth-connection {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oauth-provider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.danger-zone {
    border-color: var(--danger);
}

.danger-zone .card-header {
    background: rgba(255, 82, 82, 0.1);
    border-bottom-color: var(--danger);
}

.btn-danger {
    background: var(--danger);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-danger:hover {
    background: #ff3333;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.alert-success {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}