/* ============================================
   Doctor's Sports Academy - Sporty Theme CSS
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary - Deep Navy Blue */
    --color-primary: #1e3a5f;
    --color-primary-light: #2a5298;
    --color-primary-dark: #0f1d30;
    --color-primary-50: #e8f0fe;
    --color-primary-100: #c5d9f7;
    --color-primary-200: #9ebeee;
    --color-primary-300: #6da0e5;
    --color-primary-400: #4183db;
    --color-primary-500: #2563eb;
    --color-primary-600: #1e3a5f;
    --color-primary-700: #172e4d;
    --color-primary-800: #11223a;
    --color-primary-900: #0a1628;

    /* Accent - Vibrant Orange/Coral */
    --color-accent: #ff6b35;
    --color-accent-light: #ff8c5a;
    --color-accent-dark: #e55a24;
    --color-accent-glow: rgba(255, 107, 53, 0.4);

    /* Success Green */
    --color-success: #22c55e;
    --color-success-light: #4ade80;
    --color-success-dark: #16a34a;

    /* Supporting */
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* Dark backgrounds */
    --color-sport-navy: #0a1628;
    --color-sport-dark: #101d32;
    --color-sport-steel: #1a2942;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 50%, #ffab76 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #0f2847 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,255,0.95));
    --gradient-dark: linear-gradient(135deg, #0a1628, #1a2942, #0f2847);
    --gradient-sporty: linear-gradient(135deg, #1e3a5f, #2a5298, #1e3a5f);

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(30, 58, 95, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(30, 58, 95, 0.15);
    --shadow-accent: 0 4px 20px rgba(255, 107, 53, 0.3);
    --shadow-accent-hover: 0 8px 30px rgba(255, 107, 53, 0.45);
    --shadow-primary: 0 4px 20px rgba(30, 58, 95, 0.3);
    --shadow-primary-hover: 0 8px 30px rgba(30, 58, 95, 0.45);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Base Resets & Global Styles ---------- */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 58, 95, 0.2) transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 95, 0.2);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 95, 0.35);
}

::selection {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Animated Background Patterns ---------- */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-dots-pattern {
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-diagonal-lines {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 21px
    );
}

/* ---------- Sporty Header ---------- */
.sporty-header {
    background: linear-gradient(135deg, var(--color-sport-navy) 0%, var(--color-primary) 50%, var(--color-sport-navy) 100%);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.3);
}

.sporty-header .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.sporty-header .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sporty-header .nav-link.active {
    color: var(--color-accent);
    background: rgba(255, 107, 53, 0.1);
}

.sporty-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

/* ---------- Glass Effects ---------- */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-white {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- Sport Cards ---------- */
.sport-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sport-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.2);
}

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

/* ---------- Sporty Buttons ---------- */
.btn-sport-primary {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.75rem;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-sport-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-sport-primary:hover::before {
    opacity: 1;
}

.btn-sport-primary:active {
    transform: translateY(0);
}

.btn-sport-accent {
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.75rem;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-sport-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-sport-accent:hover::before {
    opacity: 1;
}

.btn-sport-accent:active {
    transform: translateY(0);
}

.btn-sport-outline {
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.btn-sport-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* ---------- Gradient Text ---------- */
.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #1e3a5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-hero {
    background: linear-gradient(135deg, #ff6b35, #ffab76, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-white {
    background: linear-gradient(180deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Stat Cards ---------- */
.stat-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(30, 58, 95, 0.06);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 80px;
    opacity: 0.06;
    transition: opacity var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.stat-card.stat-blue::after { background: #2563eb; }
.stat-card.stat-orange::after { background: #ff6b35; }
.stat-card.stat-green::after { background: #22c55e; }
.stat-card.stat-purple::after { background: #8b5cf6; }

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* ---------- Page Header Banner ---------- */
.page-header-banner {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.page-header-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ---------- Venue Cards ---------- */
.venue-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(30, 58, 95, 0.06);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
}

.venue-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.15);
}

.venue-card .venue-image {
    position: relative;
    overflow: hidden;
}

.venue-card .venue-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.venue-card:hover .venue-image img {
    transform: scale(1.08);
}

.venue-card .venue-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.3));
    pointer-events: none;
}

/* ---------- Booking Slot Pills ---------- */
.slot-pill {
    border: 2px solid rgba(30, 58, 95, 0.12);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: #fff;
}

.slot-pill:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-50);
    transform: translateY(-1px);
}

.slot-pill.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* ---------- Date Picker Tabs ---------- */
.date-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(30, 58, 95, 0.1);
    min-width: 80px;
    transition: all var(--transition-base);
    background: #fff;
    cursor: pointer;
}

.date-tab:hover {
    border-color: var(--color-accent);
    background: rgba(255, 107, 53, 0.04);
}

.date-tab.active {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.04));
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ---------- Form Styles ---------- */
.sport-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: #1f2937;
    background: #fff;
    transition: all var(--transition-base);
}

.sport-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.sport-input::placeholder {
    color: #9ca3af;
}

.sport-input-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sport-input-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sport-input-dark:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.sport-select-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.sport-select-dark:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* ---------- Flash Messages ---------- */
.flash-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-left: 4px solid var(--color-success);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: #15803d;
}

.flash-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.04));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-left: 4px solid var(--color-danger);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: #b91c1c;
}

/* ---------- Footer ---------- */
.sporty-footer {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.sporty-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.sporty-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ---------- Animated Pulse Glow ---------- */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 107, 53, 0.2); }
}

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

/* ---------- Floating Animation ---------- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* ---------- Slide Up Fade In ---------- */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUpFadeIn 0.5s ease-out forwards;
}

.slide-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.slide-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.slide-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.slide-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ---------- Counter Animation ---------- */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.count-up {
    animation: countUp 0.6s ease-out forwards;
}

/* ---------- Shimmer Effect ---------- */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* ---------- Sporty Divider ---------- */
.sporty-divider {
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    width: 60px;
}

.sporty-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Live Badge ---------- */
.live-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.live-badge .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.live-badge .live-dot::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 107, 53, 0.08);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 107, 53, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: #0f172a;
    line-height: 1.2;
}

.section-header p {
    color: #6b7280;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* ---------- How It Works Steps ---------- */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
}

.step-card:hover {
    background: rgba(30, 58, 95, 0.03);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    background: #fff;
}

.faq-item:hover {
    border-color: rgba(30, 58, 95, 0.15);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

/* ---------- Quick Links ---------- */
.quick-link-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(30, 58, 95, 0.06);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.quick-link-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.quick-link-card:hover::before {
    opacity: 1;
}

/* ---------- Profile Avatar Ring ---------- */
.avatar-ring {
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                var(--gradient-accent) border-box;
    border-radius: 50%;
}

/* ---------- Notification Badge ---------- */
.notification-dot {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 2px solid var(--color-sport-navy);
    position: absolute;
    top: 2px;
    right: 2px;
}

/* ---------- Booking Summary Card ---------- */
.booking-summary {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), rgba(30, 58, 95, 0.01));
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
}

/* ---------- Responsive Utilities ---------- */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-card .stat-value {
        font-size: 1.5rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    .sporty-header,
    .sporty-footer,
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .sport-card,
    .venue-card,
    .stat-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
