/* =============================================
   URBAN SPORTS ADDA — Premium Sports Arena
   Dark, Neon, Glassmorphism Theme
   ============================================= */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F1A;
    --bg-card: #1E1E2E;
    --accent-green: #00F5A0;
    --accent-orange: #FF4D00;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --glass-bg: rgba(30, 30, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    width: 100%;
    max-width: 100vw;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Custom Cursor --- */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.5;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    opacity: 0.3;
    background: rgba(0, 245, 160, 0.1);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
    z-index: 10002;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Loading Screen --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.loader-logo-img {
    max-width: min(80vw, 400px);
    height: auto;
    border-radius: 8px;
    animation: loaderPulse 1.2s ease infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
    border-radius: 4px;
    animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-med);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-logo-img {
    height: 30px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width var(--transition-med);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--accent-green);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.3);
}

.nav-cta:hover {
    box-shadow: 0 0 40px rgba(0, 245, 160, 0.5);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-med);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-med);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    transform: translateY(20px);
    opacity: 0;
    animation: none;
}

.mobile-menu.active .mobile-nav-link {
    animation: slideInMobile 0.4s ease forwards;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }

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

.mobile-nav-link:hover {
    color: var(--accent-green);
}

.mobile-book-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-green);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 245, 160, 0.4);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 245, 160, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 77, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 245, 160, 0.04) 0%, transparent 50%);
    animation: meshMove 8s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.65) 50%,
        rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 12vw, 140px);
    line-height: 0.95;
    letter-spacing: 6px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 1.6s;
    background: linear-gradient(90deg, var(--accent-green), #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:nth-child(2) {
    animation-delay: 1.9s;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.title-line:nth-child(3) {
    animation-delay: 2.2s;
    background: linear-gradient(90deg, var(--accent-orange), #FF7733);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.5s forwards;
}

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

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 2.7s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    border: none;
    cursor: none;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 245, 160, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.2);
    transform: translateY(-3px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 2.9s forwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge:nth-child(2) { animation-delay: 1s; }
.badge:nth-child(3) { animation-delay: 2s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-icon { font-size: 20px; }

.badge-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* --- Section Shared Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 4px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Scroll animations */
.animate-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sports Section --- */
.sports {
    padding: 120px 0;
    position: relative;
}

.sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 245, 160, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 77, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.sport-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: none;
    transform-style: preserve-3d;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.sport-card:hover {
    box-shadow: 0 20px 60px rgba(0, 245, 160, 0.15);
}

.sport-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.sport-card:hover .sport-card-bg {
    transform: scale(1.1);
}

.sport-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.sport-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sport-icon {
    font-size: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 160, 0.5));
}

.sport-name {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.sport-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.sport-book-btn {
    padding: 10px 24px;
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: none;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

.sport-card:hover .sport-book-btn {
    opacity: 1;
    transform: translateY(0);
}

.sport-book-btn:hover {
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.5);
}

.sport-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid transparent;
    z-index: 3;
    pointer-events: none;
    transition: border-color var(--transition-med);
}

.sport-card:hover .sport-card-glow {
    border-color: rgba(0, 245, 160, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 245, 160, 0.05);
}

/* Scroll reveal for cards */
.sport-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-med);
}

.sport-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Celebrity Feature Section --- */
.celebrity {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.celebrity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 77, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.celeb-title {
    background: linear-gradient(90deg, #FFD700, #FF8C00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.celeb-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.celeb-media {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.celeb-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.celeb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    min-height: 450px;
}

.celeb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.85);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-med);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.4);
}

.celeb-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(255, 77, 0, 0.6);
    background: rgba(255, 77, 0, 1);
}

.celeb-play-btn svg {
    margin-left: 4px;
}

.celeb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
}

.celeb-video.playing {
    display: block;
}

.celeb-info {
    padding: 48px 48px 48px 0;
}

.celeb-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFD700;
    margin-bottom: 16px;
}

.celeb-name {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 3px;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #FFD700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.celeb-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.celeb-quote {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-orange);
}

.celeb-stats {
    display: flex;
    gap: 32px;
}

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

.celeb-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 2px;
    color: #FFD700;
}

.celeb-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .celeb-media {
        min-height: 350px;
    }

    .celeb-image {
        min-height: 350px;
    }

    .celeb-info {
        padding: 28px 24px 36px;
    }

    .celeb-stats {
        gap: 20px;
    }

    .celeb-quote {
        font-size: 14px;
    }
}

/* --- Café Section --- */
.cafe {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cafe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, rgba(30, 20, 10, 0.3) 50%, var(--bg-primary) 100%);
    pointer-events: none;
}

.cafe-title {
    background: linear-gradient(90deg, #FFB347, #FF6B35) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.cafe-subtitle {
    color: #C8A97E;
}

.cafe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.cafe-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-med);
    opacity: 0;
    transform: translateY(30px);
}

.cafe-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cafe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 179, 71, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.cafe-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cafe-card:hover .cafe-card-img {
    transform: scale(1.05);
}

.cafe-card-info {
    padding: 20px;
}

.cafe-card-info h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cafe-card-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* --- USP Section --- */
.usp {
    padding: 120px 0;
    position: relative;
}

.usp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 160, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.usp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-med);
    opacity: 0;
    transform: translateY(30px);
}

.usp-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.usp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 160, 0.2);
    box-shadow: 0 20px 40px rgba(0, 245, 160, 0.08);
}

.usp-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 245, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-med);
}

.usp-card:hover .usp-icon-wrap {
    background: rgba(0, 245, 160, 0.15);
    box-shadow: 0 0 30px rgba(0, 245, 160, 0.2);
}

.usp-icon {
    font-size: 32px;
}

.usp-title {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.usp-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-map {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-med);
}

.contact-item:hover {
    border-color: rgba(0, 245, 160, 0.2);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-green);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-green);
}

.contact-socials {
    display: flex;
    gap: 16px;
    padding: 8px 0;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all var(--transition-med);
}

.social-link:hover {
    color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.2);
    transform: translateY(-4px);
}

.directions-btn {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
}

/* --- Footer --- */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links h4,
.footer-cta-wrap h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--accent-green);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-book-btn {
    margin-top: 8px;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* --- Booking Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-med);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: transform var(--transition-med);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: none;
    transition: color var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-sport-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 2px;
}

.modal-title span {
    color: var(--accent-green);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-icon {
    font-size: 14px;
}

.optional {
    font-weight: 400;
    text-transform: none;
    color: rgba(176, 176, 192, 0.5);
    letter-spacing: 0;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(176, 176, 192, 0.4);
}

.form-group input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.1);
}

.modal-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 14px;
    justify-content: center;
}

/* Modal Success State */
.modal-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.modal-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.modal-form.hidden {
    display: none;
}

.success-checkmark {
    margin-bottom: 24px;
}

.check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    position: absolute;
    animation: circleGrow 0.4s ease forwards;
}

@keyframes circleGrow {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.icon-line {
    display: block;
    position: absolute;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

.line-tip {
    width: 16px;
    top: 44px;
    left: 18px;
    transform: rotate(45deg);
    animation: lineTip 0.3s ease 0.3s forwards;
    opacity: 0;
}

.line-long {
    width: 32px;
    top: 40px;
    left: 28px;
    transform: rotate(-45deg);
    animation: lineLong 0.3s ease 0.4s forwards;
    opacity: 0;
}

@keyframes lineTip {
    to { opacity: 1; }
}

@keyframes lineLong {
    to { opacity: 1; }
}

.modal-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--accent-green);
}

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

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    z-index: 99999;
    pointer-events: none;
    animation: confettiFall 1.5s ease forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* --- Mobile Bottom Sheet Modal --- */
@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-end;
    }

    .modal {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 24px 16px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        max-height: 90vh;
        transform: translateY(100%);
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .modal-overlay.active .modal {
        transform: translateY(0);
    }

    .modal-header {
        margin-bottom: 16px;
    }

    .modal-sport-icon {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .modal-title {
        font-size: 24px;
    }

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

    .form-group label {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .modal-submit {
        padding: 12px;
        font-size: 12px;
        letter-spacing: 1px;
        margin-top: 4px;
    }

    .modal-close {
        top: 10px;
        right: 12px;
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
}

/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor,
    .cursor-follower { display: none; }

    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sport-card {
        height: 320px;
    }

    .sport-book-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .cafe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .usp-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

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

    .hero-title {
        letter-spacing: 3px;
    }

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

/* Small Mobile */
@media (max-width: 375px) {
    .cafe-grid {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
