/* ========================================
   DRAFTBROS - Sports Social Media Website
   Futuristic Green Field Theme
   ======================================== */

/* CSS Variables */
:root {
    --color-bg: #0a0f0a;
    --color-bg-light: #111a11;
    --color-bg-card: #1a241a;
    --color-surface: #1e2a1e;
    --color-border: #2d3d2d;

    --color-primary: #a3e635;
    --color-primary-dark: #65a30d;
    --color-primary-light: #d9f99d;
    --color-primary-glow: rgba(163, 230, 53, 0.3);

    --color-text: #ffffff;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;

    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-primary-glow);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Animated Background - Football Field */
.bg-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--color-bg);
}

/* Grass stripe pattern */
.bg-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(34, 197, 94, 0.03) 0px,
            rgba(34, 197, 94, 0.03) 60px,
            rgba(22, 163, 74, 0.05) 60px,
            rgba(22, 163, 74, 0.05) 120px
        );
}

/* Stadium light glow from top */
.bg-field::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center top, rgba(163, 230, 53, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Field lines container */
.field-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(800px) rotateX(60deg);
    width: 90vw;
    max-width: 1000px;
    height: 60vw;
    max-height: 600px;
    opacity: 0.08;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
}

/* Center line */
.field-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--color-primary);
}

/* Center circle */
.field-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 33%;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
}

/* Field glow effect */
.field-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
    animation: fieldPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fieldPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Grass texture particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(34, 197, 94, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(22, 163, 74, 0.3) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    opacity: 0.04;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 15, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(163, 230, 53, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-links a.btn-primary {
    color: #000000;
}

.nav-links a.btn-primary:hover {
    color: #000000;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

.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);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #000000;
    font-weight: 700;
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

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

.hero-text {
    max-width: 560px;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid rgba(163, 230, 53, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

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

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

.phone-mockup {
    position: relative;
}

.phone-screenshot {
    max-height: 900px;
    width: auto;
    border-radius: 40px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    opacity: 0.7;
}

.app-content {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

/* Live Match Screen */
.live-match {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-error);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    animation: pulse 1.5s ease-in-out infinite;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(163, 230, 53, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(163, 230, 53, 0.1);
}

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

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.team-logo.india {
    background: linear-gradient(135deg, #ff9933 0%, #138808 100%);
}

.team-logo.aus {
    background: linear-gradient(135deg, #ffcd00 0%, #00843d 100%);
}

.team span {
    font-size: 12px;
    font-weight: 700;
}

.match-score {
    text-align: center;
}

.match-score .score {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
}

.match-score .overs {
    font-size: 11px;
    color: var(--color-text-muted);
}

.match-info {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.player {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.player .name {
    font-weight: 600;
    font-size: 12px;
}

.player .runs {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 700;
}

.recent-balls {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.ball {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
}

.ball.four {
    background: var(--color-primary);
    color: var(--color-bg);
}

.ball.six {
    background: #f59e0b;
    color: var(--color-bg);
}

.ball.dot {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
}

/* Sports Selection Screen */
.sports-select {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sports-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.sport-card {
    flex: 0 0 auto;
    width: 72px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    text-align: center;
    transition: all var(--transition-fast);
}

.sport-card.active {
    background: rgba(163, 230, 53, 0.1);
    border-color: var(--color-primary);
}

.sport-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
}

.sport-card span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.social-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.feed-post {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    flex-shrink: 0;
}

.post-content {
    flex: 1;
    min-width: 0;
}

.username {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.post-content p {
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-stats {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 10px;
    color: var(--color-text-muted);
}

/* App Navigation */
.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-item.active {
    color: var(--color-primary);
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid rgba(163, 230, 53, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

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

.sport-tile {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.sport-tile:hover {
    background: rgba(163, 230, 53, 0.05);
    border-color: rgba(163, 230, 53, 0.3);
    transform: translateY(-4px);
}

.sport-icon-large {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-icon-large i {
    font-size: 56px;
    line-height: 1;
}

.sport-icon-large svg {
    width: 56px;
    height: 56px;
}

.sport-icon-large .sport-svg-icon {
    width: 56px;
    height: 56px;
    filter: invert(83%) sepia(57%) saturate(459%) hue-rotate(36deg) brightness(101%) contrast(87%);
}

.sport-tile h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.sport-tile p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(163, 230, 53, 0.02) 50%, transparent 100%);
}

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

.feature-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: rgba(163, 230, 53, 0.05);
    border-color: rgba(163, 230, 53, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 230, 53, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* App Preview Section */
.app-section {
    padding: 120px 0;
}

.app-showcase {
    display: flex;
    justify-content: center;
}

.showcase-phone {
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 48px;
    padding: 14px;
    box-shadow:
        var(--shadow-lg),
        0 0 80px rgba(163, 230, 53, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateX(5deg);
    transition: transform var(--transition-normal);
}

.phone-frame:hover {
    transform: rotateX(0deg);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #0d0d0d;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 38px;
    overflow: hidden;
}

.showcase-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(163, 230, 53, 0.05) 0%, transparent 30%),
        var(--color-bg-light);
}

.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 12px;
}

.sc-time {
    font-size: 14px;
    font-weight: 600;
}

.sc-icons {
    display: flex;
    gap: 6px;
}

.sc-icons span {
    width: 20px;
    height: 10px;
    background: var(--color-text);
    border-radius: 2px;
    opacity: 0.6;
}

.sc-title {
    font-size: 22px;
    font-weight: 700;
    padding: 8px 24px 16px;
}

.sc-sports {
    display: flex;
    gap: 12px;
    padding: 0 24px 20px;
    overflow-x: auto;
}

.sc-sport {
    flex: 0 0 auto;
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.sc-sport.active {
    background: rgba(163, 230, 53, 0.1);
    border-color: var(--color-primary);
}

.sc-sport-img {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-sm);
}

.sc-sport-img.football {
    background: linear-gradient(135deg, #22c55e 0%, #166534 100%);
}

.sc-sport-img.cricket {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.sc-sport-img.f1 {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.sc-sport span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-match-card {
    margin: 0 24px;
    padding: 20px;
    background: rgba(163, 230, 53, 0.05);
    border: 1px solid rgba(163, 230, 53, 0.15);
    border-radius: var(--radius-lg);
}

.sc-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sc-match-header span:first-child {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-live {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-success);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sc-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.sc-match-score {
    margin-bottom: 8px;
}

.sc-big-score {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.sc-overs {
    font-size: 12px;
    color: var(--color-text-muted);
}

.sc-teams {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sc-players {
    display: flex;
    gap: 16px;
}

.sc-player {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.sc-player-name {
    font-size: 12px;
    font-weight: 600;
}

.sc-player-score {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.sc-player-score small {
    font-size: 10px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.sc-bottom-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 16px 24px 32px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sc-nav-item {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.sc-nav-item.active {
    color: var(--color-primary);
}

/* Countdown Section */
.countdown-section {
    padding: 120px 0;
}

.countdown-card {
    padding: 60px;
    background:
        linear-gradient(135deg, rgba(163, 230, 53, 0.05) 0%, transparent 50%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.countdown-card .section-header {
    margin-bottom: 48px;
}

/* Social Follow */
.social-follow {
    margin-top: 48px;
}

.social-follow p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.social-btn svg {
    flex-shrink: 0;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    padding: 24px;
    background: rgba(163, 230, 53, 0.05);
    border: 1px solid rgba(163, 230, 53, 0.2);
    border-radius: var(--radius-lg);
    min-width: 90px;
}

.countdown-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    height: 40px;
}

.footer-simple p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

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

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

    .hero-visual {
        margin-top: 40px;
    }

    .phone-screenshot {
        max-height: 500px;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-card {
        padding: 48px 32px;
    }

    .social-links-large {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--color-bg);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .sports-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: calc(50% - 12px);
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .countdown-card {
        padding: 32px 20px;
    }

    .countdown-item {
        padding: 16px;
        min-width: calc(50% - 8px);
    }

    .countdown-number {
        font-size: 32px;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .sport-tile,
    .feature-card {
        animation: fadeInUp 0.6s ease backwards;
    }

    .sport-tile:nth-child(1) { animation-delay: 0.1s; }
    .sport-tile:nth-child(2) { animation-delay: 0.2s; }
    .sport-tile:nth-child(3) { animation-delay: 0.3s; }
    .sport-tile:nth-child(4) { animation-delay: 0.4s; }
    .sport-tile:nth-child(5) { animation-delay: 0.5s; }
    .sport-tile:nth-child(6) { animation-delay: 0.6s; }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
}

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