/* =============================================
   GiftArena - Complete Stylesheet
   TikTok Live Interactive Games SaaS Platform
   ============================================= */

/* --- CSS Variables / Design Tokens --- */
/* Light theme (default) */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --primary-light: #7c6cf7;
    --secondary: #00b5b0;
    --secondary-dark: #009e99;
    --accent: #e84393;
    --accent-dark: #d63384;
    --dark: #f0f2f5;
    --dark-card: #ffffff;
    --dark-surface: #f8f9fa;
    --dark-border: #dee2e6;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a8;
    --success: #00b894;
    --warning: #f9a825;
    --danger: #e74c3c;
    --info: #3498db;
    --gradient-primary: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-hero: linear-gradient(135deg, #f0f2f5 0%, #e2e6ea 50%, #d5d9e0 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme */
[data-theme="dark"] {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --secondary-dark: #00b5b0;
    --accent: #fd79a8;
    --accent-dark: #e84393;
    --dark: #0a0a1a;
    --dark-card: #12122a;
    --dark-surface: #1a1a3e;
    --dark-border: #2d2d5e;
    --text-primary: #ffffff;
    --text-secondary: #b2b2d8;
    --text-muted: #7878a0;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #ff7675;
    --info: #74b9ff;
    --gradient-primary: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2d1b69 100%);
    --gradient-card: linear-gradient(145deg, #12122a, #1a1a3e);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* --- Language & Theme Switcher --- */
.preference-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.preference-switcher .pref-btn {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
}

.preference-switcher .pref-btn:hover,
.preference-switcher .pref-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.preference-switcher .pref-divider {
    color: var(--dark-border);
    font-size: 0.9rem;
}


/* --- Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-dark-custom {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .brand-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.4rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(108, 92, 231, 0.15);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary-glow {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary-glow::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: 0.5s;
}

.btn-primary-glow:hover::before {
    left: 100%;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(253, 121, 168, 0.4);
    color: #fff;
}

.btn-sm-custom {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

/* =============================================
   CARDS
   ============================================= */
.card-dark {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    overflow: hidden;
}

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

.card-dark .card-body {
    padding: 1.5rem;
}

.card-dark .card-header-custom {
    background: rgba(108, 92, 231, 0.1);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* =============================================
   HERO SECTION (Landing)
   ============================================= */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.1), transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

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

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.section-dark {
    background: var(--dark);
    padding: 6rem 0;
}

.section-alt {
    background: var(--dark-card);
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =============================================
   GAME PREVIEW CARDS
   ============================================= */
.game-preview-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.game-preview-card:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(0, 206, 201, 0.2);
}

.game-preview-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-preview-thumb.game-map {
    background: linear-gradient(135deg, #1a3a2a, #0d2818);
}

.game-preview-thumb.game-battle {
    background: linear-gradient(135deg, #3a1a2a, #2d0818);
}

.game-preview-thumb.game-box {
    background: linear-gradient(135deg, #1a2a3a, #081828);
}

.game-preview-body {
    padding: 1.5rem;
}

.game-preview-body h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-preview-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
}

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

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
}

/* =============================================
   DASHBOARD
   ============================================= */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--dark-card);
    border-right: 1px solid var(--dark-border);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-brand {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 1rem;
}

.sidebar-brand h4 {
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.sidebar-brand small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.1);
    border-left-color: var(--primary);
}

.sidebar-nav li a .nav-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.sidebar-section-title {
    padding: 1rem 1.5rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-content {
    margin-left: 260px;
    padding: 2rem;
    flex: 1;
    min-height: 100vh;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h2 {
    font-weight: 800;
    margin-bottom: 0.25rem;
}

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

/* --- Stats Cards --- */
.stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.15);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.stat-card .stat-icon.purple {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.stat-card .stat-icon.green {
    background: rgba(0, 184, 148, 0.2);
    color: var(--success);
}

.stat-card .stat-icon.pink {
    background: rgba(253, 121, 168, 0.2);
    color: var(--accent);
}

.stat-card .stat-icon.blue {
    background: rgba(116, 185, 255, 0.2);
    color: var(--info);
}

.stat-card .stat-icon.yellow {
    background: rgba(253, 203, 110, 0.2);
    color: var(--warning);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

/* =============================================
   TABLES
   ============================================= */
.table-dark-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-dark-custom thead th {
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--dark-border);
}

.table-dark-custom tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(45, 45, 94, 0.5);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.table-dark-custom tbody tr:hover td {
    background: rgba(108, 92, 231, 0.05);
}

/* --- Status Badges --- */
.badge-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background: rgba(0, 184, 148, 0.2);
    color: var(--success);
}

.badge-stopped {
    background: rgba(120, 120, 160, 0.2);
    color: var(--text-muted);
}

.badge-error {
    background: rgba(255, 118, 117, 0.2);
    color: var(--danger);
}

.badge-free {
    background: rgba(120, 120, 160, 0.2);
    color: var(--text-muted);
}

.badge-pro {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.badge-elite {
    background: rgba(253, 121, 168, 0.2);
    color: var(--accent);
}

/* =============================================
   FORMS
   ============================================= */
.form-dark .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-dark .form-control,
.form-dark .form-select {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.25);
    background: var(--dark-surface);
    color: var(--text-primary);
}

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

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem;
}

.auth-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-card);
  	margin-top: 100px;
}

.auth-card h2 {
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* =============================================
   FLASH MESSAGES
   ============================================= */
.alert-custom {
    border-radius: var(--radius-sm);
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.alert-custom.alert-success {
    background: rgba(0, 184, 148, 0.15);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-custom.alert-danger {
    background: rgba(255, 118, 117, 0.15);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-custom.alert-warning {
    background: rgba(253, 203, 110, 0.15);
    color: var(--warning);
    border-left: 4px solid var(--warning);
}

.alert-custom.alert-info {
    background: rgba(116, 185, 255, 0.15);
    color: var(--info);
    border-left: 4px solid var(--info);
}

/* =============================================
   GAME SELECT CARDS
   ============================================= */
.game-select-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.game-select-card.locked {
    opacity: 0.5;
    pointer-events: none;
}

.game-select-card .game-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.game-select-card .game-info {
    padding: 1.25rem;
}

.game-select-card .game-info h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-select-card .game-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius);
}

/* =============================================
   OBS URL BOX
   ============================================= */
.obs-url-box {
    background: var(--dark-surface);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.obs-url-box .copy-btn {
    white-space: nowrap;
    cursor: pointer;
}

/* =============================================
   PAYMENT CHECKOUT
   ============================================= */
.checkout-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.plan-summary {
    background: rgba(108, 92, 231, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.plan-summary h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-summary .plan-price-display {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-dark {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1.5rem;
}

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

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
    margin-top: 100px;
}

.animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem;
    }
}