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

/* Image & Content Protection */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.logo img,
.logo-img {
    pointer-events: auto;
}

:root {
    --primary: #bef264;
    --primary-dark: #a3e635;
    --primary-text: #18181b;
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --bg-white: #FFFFFF;
    --bg-gray: #F4F4F5;
    --bg-dark: #18181b;
    --border: #E4E4E7;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: #65a30d;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary-dark);
}

.lang-switch {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-size: 14px;
}

.lang-switch:hover {
    background: rgba(0, 0, 0, 0.1);
}

.nav-club {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--primary-text) !important;
    border-radius: 10px;
    font-weight: 600 !important;
    transition: all 0.2s;
}

.nav-club:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F4F4F5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(190, 242, 100, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--primary-text);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(190, 242, 100, 0.1);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Waitlist Form */
.waitlist-form {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.waitlist-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.waitlist-input-group {
    display: flex;
    gap: 12px;
}

.waitlist-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-input-group input:focus {
    border-color: var(--primary);
}

.waitlist-success {
    display: none;
    color: #16a34a;
    font-size: 14px;
    margin-top: 16px;
    font-weight: 500;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}

.waitlist-success.show {
    display: block;
}

.waitlist-form.submitted .waitlist-input-group {
    display: none;
}

.waitlist-form.submitted .waitlist-text {
    display: none;
}

/* Hero Image / Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 28px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #18181b 0%, #09090b 100%);
    border-radius: 36px;
    overflow: hidden;
}

.phone-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #18181b;
    position: relative;
}

/* Real App Header - Like the actual app */
.app-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 42px 12px 8px;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.header-spacer {
    display: none;
}

.header-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 6px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 20px;
}

.header-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(39, 39, 42, 1);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-icon {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.85);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    border: 1.5px solid rgba(39, 39, 42, 1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Tab Switcher */
.tab-switcher {
    display: flex;
    background: rgba(39, 39, 42, 0.8);
    margin: 8px 12px;
    padding: 3px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 9px;
    font-weight: 700;
    border-radius: 13px;
    transition: all 0.2s;
    cursor: pointer;
}

.tab-btn.active {
    background: rgba(39, 39, 42, 1);
    color: #bef264;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tab-icon {
    width: 11px;
    height: 11px;
}

/* Date Scroller */
.date-scroller {
    display: flex;
    gap: 6px;
    padding: 6px 12px 8px;
    overflow-x: auto;
    align-items: center;
}

.date-scroller::-webkit-scrollbar {
    display: none;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 46px;
    border-radius: 14px;
    background: rgba(39, 39, 42, 1);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.2s;
}

.date-item.all-dates {
    min-width: 38px;
    gap: 2px;
}

.date-item.all-dates span {
    font-size: 6px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.date-item.active {
    background: #bef264;
    border-color: #bef264;
    box-shadow: 0 4px 12px rgba(190, 242, 100, 0.3);
    transform: scale(1.05);
}

.date-item.active .date-icon,
.date-item.active span {
    stroke: #18181b;
    color: #18181b;
}

.date-icon {
    width: 12px;
    height: 12px;
    stroke: rgba(255,255,255,0.5);
}

.date-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.date-day-name {
    font-size: 7px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.date-day-num {
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* Real Match Card */
.real-match-card {
    display: flex;
    gap: 10px;
    background: rgba(39, 39, 42, 1);
    margin: 4px 12px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.match-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(63, 63, 70, 0.8);
    border-radius: 14px;
    padding: 6px 8px;
    min-width: 48px;
    border: 1px solid rgba(255,255,255,0.08);
}

.date-day {
    font-size: 7px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.date-num {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.date-month {
    font-size: 7px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-top: 2px;
}

.match-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.match-time-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-time {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}

.match-duration {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 2px;
}

.duration-icon {
    width: 8px;
    height: 8px;
    stroke: rgba(255,255,255,0.5);
}

.match-price {
    font-size: 13px;
    font-weight: 900;
    color: #bef264;
}

.match-location {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 3px;
}

.location-icon {
    width: 10px;
    height: 10px;
    stroke: #bef264;
    flex-shrink: 0;
}

.match-tags {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.tag {
    font-size: 7px;
    font-weight: 800;
    padding: 3px 5px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.tag-icon {
    width: 8px;
    height: 8px;
}

.tag-open {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.tag-open .tag-icon {
    stroke: #60a5fa;
}

.tag-level {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.tag-level .tag-icon {
    stroke: #c084fc;
}

.tag-reserved {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.tag-reserved .tag-icon {
    stroke: #4ade80;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 3px;
}

.teams {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team {
    display: flex;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #27272a;
    margin-left: -6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.empty {
    background: rgba(63, 63, 70, 0.8);
    border: 2px dashed rgba(255,255,255,0.15);
}

.avatar.empty::after {
    content: "";
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.vs-line {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    margin: 0 3px;
}

.btn-join {
    background: #bef264;
    color: #18181b;
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(190, 242, 100, 0.3);
    transition: all 0.2s;
}

.btn-join:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(190, 242, 100, 0.4);
}

.btn-icon {
    width: 10px;
    height: 10px;
    stroke: #18181b;
}

/* Bottom Navigation - Floating style like real app */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 4px 12px;
    background: rgba(39, 39, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    margin: auto 10px 10px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    position: relative;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    color: rgba(255,255,255,0.4);
    font-size: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.nav-item span {
    display: none;
}

.nav-item.active {
    color: #bef264;
}

.nav-item.active .nav-icon {
    stroke: #bef264;
}

.nav-item.active .nav-icon-wrapper {
    background: rgba(190, 242, 100, 0.1);
    transform: translateY(-2px);
}

.nav-icon-wrapper {
    padding: 6px;
    border-radius: 12px;
    transition: all 0.2s;
}

.nav-icon {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.4);
    stroke-width: 2;
}

.nav-item.plus-btn {
    width: 40px;
    height: 40px;
    background: #bef264;
    border-radius: 50%;
    margin-top: -24px;
    box-shadow: 0 4px 20px rgba(190, 242, 100, 0.5);
    border: 3px solid #18181b;
    justify-content: center;
    padding: 0;
    flex: 0 0 auto;
}

.nav-item.plus-btn .nav-icon-wrapper {
    padding: 0;
    background: transparent;
}

.nav-icon-plus {
    width: 18px;
    height: 18px;
    stroke: #18181b;
    stroke-width: 2.5;
}

/* Old phone styles - kept for compatibility */
.phone-header {
    display: none;
}

.phone-match-card {
    display: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(190, 242, 100, 0.2) 0%, rgba(163, 230, 53, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #65a30d;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-gray);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: 300;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    color: white;
}

.download-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.download-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.store-text {
    font-size: 11px;
    text-align: left;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
}

/* For Clubs Section */
.for-clubs {
    padding: 100px 0;
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    color: white;
}

.clubs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(190, 242, 100, 0.15);
    color: var(--primary);
    border: 1px solid rgba(190, 242, 100, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.clubs-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.clubs-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.clubs-features {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 0 32px 0;
    padding: 0 !important;
    padding-left: 0 !important;
}

.clubs-features li {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none !important;
    list-style-type: none !important;
}

.clubs-features li::before {
    content: none !important;
}

.clubs-features li::marker {
    content: none !important;
    display: none !important;
}

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

.clubs-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.clubs-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.clubs-note {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* Dashboard Screenshot */
.clubs-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-screenshot {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-mockup {
    width: 100%;
    max-width: 480px;
    min-height: 340px;
    background: #09090b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #18181b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }

.dashboard-header span {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-content {
    display: flex !important;
    min-height: 280px;
}

.dashboard-sidebar {
    width: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: #18181b;
    padding: 12px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sidebar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.sidebar-icon.active {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.sidebar-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    cursor: default;
}

.sidebar-item.active {
    background: rgba(190, 242, 100, 0.15);
    color: var(--primary);
}

.dashboard-main {
    flex: 1;
    padding: 12px;
    background: #09090b;
}

/* Calendar Title Row */
.calendar-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cal-title-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.cal-title-text {
    display: flex;
    flex-direction: column;
}

.cal-title-text strong {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.cal-title-text small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.nav-btn-prev {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.today-btn {
    font-size: 11px;
    color: white;
    background: #3b82f6;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.date-display {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
}

/* Calendar Grid */
.calendar-grid {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.court-headers {
    display: grid;
    grid-template-columns: 45px 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.time-col {
    padding: 8px 4px;
}

.court-col {
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    border-left: 1px solid #e2e8f0;
}

.calendar-row {
    display: grid;
    grid-template-columns: 45px 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.calendar-row:last-child {
    border-bottom: none;
}

.time-cell {
    padding: 10px 4px;
    font-size: 10px;
    color: #64748b;
    text-align: center;
    background: #f8fafc;
}

.slot-cell {
    padding: 8px 4px;
    font-size: 10px;
    text-align: center;
    border-left: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-cell.available {
    color: #10b981;
    font-size: 14px;
    font-weight: 300;
}

.slot-cell.booked {
    background: #fef2f2;
    color: #dc2626;
    font-weight: 500;
}

.slot-cell.open-match {
    background: #fffbeb;
    color: #d97706;
    font-weight: 500;
}

.slot-cell.open-match.cont {
    background: #fef3c7;
    color: #b45309;
}

.slot-cell.lesson {
    background: #ecfdf5;
    color: #059669;
    font-weight: 500;
}

.calendar-header {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

/* Stats Grid for Dashboard Mockup */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.stat-card:nth-child(2) .stat-value {
    color: #22c55e;
}

.stat-card:nth-child(3) .stat-value {
    color: #3b82f6;
}

.stat-card:nth-child(4) .stat-value {
    color: #f59e0b;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.calendar-slots {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
}

.slot {
    display: block;
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.slot.booked {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.slot.available {
    background: rgba(190, 242, 100, 0.15);
    color: var(--primary);
    border: 1px solid rgba(190, 242, 100, 0.3);
}

/* Club Waitlist */
.club-waitlist {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.club-waitlist h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.club-waitlist > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.club-waitlist .waitlist-input-group {
    justify-content: center;
}

.club-waitlist input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.club-waitlist input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.club-waitlist .waitlist-success {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* Badge Small */
.badge-small {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(190, 242, 100, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

/* Responsive for Clubs Section */
@media (max-width: 968px) {
    .clubs-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .clubs-title {
        font-size: 32px;
    }
    
    .clubs-features li {
        justify-content: center;
    }
    
    .clubs-cta {
        justify-content: center;
    }
    
    .dashboard-mockup {
        max-width: 100%;
    }
    
    .club-waitlist .waitlist-input-group {
        flex-direction: column;
    }
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
}

.faq-question:hover {
    color: #65a30d;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

.faq-answer a {
    color: #65a30d;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(190, 242, 100, 0.2) 0%, rgba(163, 230, 53, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #65a30d;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card span {
    color: #65a30d;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #18181b;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 100;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        font-size: 18px;
    }
    
    .nav-club {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .waitlist-input-group {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .step-card {
        max-width: 100%;
    }
}
