@charset "UTF-8";

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

:root {
    /* NBA/Street Basketball Color Palette */
    --primary-orange: #FF6B35;
    --bright-orange: #FF8C42;
    --deep-navy: #0D1B2A;
    --court-blue: #1B263B;
    --neon-yellow: #FFD700;
    --electric-blue: #00B4D8;
    --pure-white: #FFFFFF;
    --off-white: #F8F9FA;
    --dark-gray: #212529;
    --medium-gray: #495057;
    --light-gray: #E9ECEF;

    /* Shadows and Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.4);
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.6);
    --glow-yellow: 0 0 20px rgba(255, 215, 0, 0.6);
}

body {
    font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--court-blue) 100%);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-orange);
}

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

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

.basketball-icon {
    font-size: 2.5rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo h1 {
    color: var(--pure-white);
    font-size: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-yellow);
    border-bottom-color: var(--neon-yellow);
    text-shadow: var(--glow-yellow);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--court-blue) 50%, var(--deep-navy) 100%);
    color: var(--pure-white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 50px, var(--primary-orange) 50px, var(--primary-orange) 52px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, var(--primary-orange) 50px, var(--primary-orange) 52px);
    pointer-events: none;
}

.hero::before {
    content: '🏀';
    position: absolute;
    font-size: 30rem;
    opacity: 0.03;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: var(--glow-orange);
}

.hero-title {
    font-size: 6rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    letter-spacing: 4px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    color: var(--pure-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--light-gray);
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: var(--glow-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-gray);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    background: var(--bright-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-orange);
}

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

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-download {
    background: linear-gradient(135deg, var(--neon-yellow) 0%, var(--bright-orange) 100%);
    color: var(--deep-navy);
    border: 2px solid var(--neon-yellow);
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-yellow);
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--deep-navy);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

/* Game Info Section */
.game-info {
    background: var(--off-white);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.game-card {
    background: var(--pure-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-orange);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--neon-yellow);
}

.game-step {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-orange);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.game-card h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.game-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--pure-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--neon-yellow);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--bright-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3.5rem;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--court-blue) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '🏀';
    position: absolute;
    font-size: 25rem;
    opacity: 0.03;
    top: 50%;
    left: -8%;
    transform: translateY(-50%);
}

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

.download .section-title {
    color: var(--pure-white);
}

.download-text {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.download-buttons {
    margin-bottom: 3rem;
}

.download-note {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 1rem;
    line-height: 1.8;
    backdrop-filter: blur(10px);
}

.download-note strong {
    color: var(--neon-yellow);
}

/* Contact Section */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-orange);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.company-name {
    font-weight: 700;
    color: var(--deep-navy);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.company-address {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--primary-orange);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo .basketball-icon {
    font-size: 2rem;
}

.footer-logo h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-col h4 {
    color: var(--neon-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-col a:hover {
    color: var(--neon-yellow);
    padding-left: 5px;
}

.footer-col p {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Legal Pages */
.legal-page {
    background: var(--pure-white);
    padding: 4rem 0;
    min-height: 70vh;
}

.legal-page .container {
    max-width: 1000px;
}

.legal-page h1 {
    font-size: 3.5rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.last-updated {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-orange);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.legal-section h3 {
    color: var(--court-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.legal-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    line-height: 1.9;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
}

.legal-section a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--bright-orange);
    text-decoration: underline;
}

.contact-details {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-orange);
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 5rem 0 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .legal-page h1 {
        font-size: 2.5rem;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--primary-orange);
    color: var(--pure-white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--pure-white);
}
