:root {
    --spot-green: #2f9e44;
    /* Field Green */
    --spot-dark: #1c2e4a;
    /* Navy Blue */
    --spot-accent: #fcc419;
    /* Baseball Yellow/Gold */
    --bg-light: #f8f9fa;
    --text-main: #343a40;
    --text-muted: #868e96;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Montserrat', sans-serif;
}

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

/* Navbar */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--spot-dark);
    letter-spacing: -1px;
}

.logo-exclaim {
    color: var(--spot-green);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-btn {
    background: var(--spot-dark);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-btn:hover {
    background: var(--spot-green);
}

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

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.tagline {
    display: inline-block;
    background: rgba(47, 158, 68, 0.1);
    color: var(--spot-green);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--spot-dark);
    margin-bottom: 24px;
}

.hero .highlight {
    color: var(--spot-green);
    position: relative;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(252, 196, 25, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.download-badges {
    display: flex;
    gap: 16px;
}

.store-badge {
    display: flex;
    align-items: center;
    background: var(--spot-dark);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.google-badge {
    background: var(--white);
    color: var(--spot-dark);
    border: 1px solid #dee2e6;
}

.store-badge .icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Visualization */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    height: 600px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--spot-dark);
    border-radius: 40px;
    border: 12px solid var(--spot-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.screen-content {
    background: #f8f9fa;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-screen {
    padding-top: 40px;
}

.stadium-header {
    background: var(--spot-dark);
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.stadium-name {
    font-weight: 800;
    font-size: 1.2rem;
}

.match-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

.seat-view-card {
    background: white;
    margin: -20px 20px 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.view-image {
    height: 140px;
    background: #ced4da;
    background-image: radial-gradient(#adb5bd 10%, transparent 10%);
    background-size: 20px 20px;
}

.view-image.img-2 {
    background-image: linear-gradient(45deg, #dee2e6 25%, #e9ecef 25%, #e9ecef 50%, #dee2e6 50%, #dee2e6 75%, #e9ecef 75%, #e9ecef 100%);
    background-size: 20px 20px;
}

.view-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-info .block {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--spot-dark);
}

.view-info .rating {
    color: var(--spot-accent);
}

/* Graphics */
.ball-graphic {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    border: 4px solid #e9ecef;
    z-index: 1;
    /* Simplified stitches */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.ball-graphic::before,
.ball-graphic::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px dashed #ff8787;
    border-radius: 50%;
    left: 10%;
    top: 10%;
    opacity: 0.5;
}

.ticket-stub {
    position: absolute;
    bottom: 80px;
    left: -40px;
    background: var(--spot-accent);
    color: var(--spot-dark);
    padding: 15px;
    width: 160px;
    border-radius: 12px;
    transform: rotate(-15deg);
    z-index: 11;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 2px dashed rgba(0, 0, 0, 0.2);
}

.ticket-header {
    font-weight: 800;
    font-size: 0.8rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.ticket-body {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--spot-dark);
    margin-bottom: 10px;
}

.spot-text {
    color: var(--spot-green);
}

.section-title p {
    color: var(--text-muted);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--spot-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Showcase */
.showcase {
    padding: 100px 0;
    background: var(--spot-dark);
    color: white;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 40px;
}

.stat-row {
    display: flex;
    gap: 50px;
}

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

.stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--spot-green);
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.small-frame {
    height: 500px;
    border-color: white;
}

.map-screen {
    background: #c3fae8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.field {
    width: 200px;
    height: 200px;
    background: var(--spot-green);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: relative;
    border: 2px solid white;
}

.diamond {
    width: 80px;
    height: 80px;
    background: #e6b05e;
    /* Dirt */
    transform: rotate(45deg);
    position: absolute;
    bottom: 20px;
    left: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer-cta {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.footer-cta h2 {
    font-size: 2.2rem;
    color: var(--spot-dark);
    margin-bottom: 15px;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.main-cta-btn {
    background: var(--spot-green);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(47, 158, 68, 0.3);
    transition: transform 0.2s;
}

.main-cta-btn:hover {
    transform: scale(1.05);
}

.footer-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .download-badges {
        justify-content: center;
    }

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

    .showcase-container {
        flex-direction: column;
    }

    .stat-row {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}