body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #1e1a31;
    color: #FCFCFF;
}

section {
    padding: 4rem 2rem;
    text-align: center;
}

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

/* Header */
.header {
    background: #000000;
    color: #FCFCFF;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FCFCFF;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #FCFCFF;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.8;
}

.auth-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;
    padding: 0.5rem 3.5rem;
}

.sign-in {
    color: #FCFCFF;
    text-decoration: none;
    font-weight: 500;
}

.sign-up {
    background: #0050A0;
    color: #FCFCFF;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.sign-up:hover {
    background: #003d7a;
}

/* Logo sizing */
.nav-logo {
    height: 40px;
    width: auto;
}

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

/* Hero Section */
.hero {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #FCFCFF;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    height: 160%;
    width: auto;
}

/* Large Blue Circle */
.blue-circle {
    width: 400px;
    height: 400px;
    border: 60px solid #0050A0;
    border-radius: 50%;
    position: relative;
}

/* Rise Play Be Seen */
.tagline {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FCFCFF;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 10;
}

/* Chain Pattern */
.chain-pattern {
    position: absolute;
    right: -200px;
    top: 0;
    width: 300px;
    height: 100%;
    opacity: 0.3;
    z-index: 10;
}

.chain-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    height: 100%;
    align-content: center;
}

.chain-link {
    width: 40px;
    height: 40px;
    border: 3px solid #0050A0;
    border-radius: 50%;
}

/* Who Are You Section */
.who-section {
    background: white;
    padding: 6rem 0 0 0;

}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 0 0 2rem 0;
}

.who-title {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 3rem;
    font-family: 'Bebas Neue', sans-serif;
}

.who-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s;
}

.btn-coach {
    background: #0050A0;
    color: #FCFCFF;
}

.btn-coach:hover {
    background: #003d7a;
}

.btn-player {
    background: #000000;
    color: #FCFCFF;
}

.btn-player:hover {
    background: #333;
}

.basketball-player {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.basketball-player img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* How It Works Section */
.how-it-works {
    background: #0050A0;
    color: #FCFCFF;
    padding: 6rem 0;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.how-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', sans-serif;
}

.how-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

/* Features grid default (2 columns) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FCFCFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-soon {
    opacity: 0.7;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    color: #FCFCFF;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-top-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-connect {
    margin-left: 4rem;
    text-align: right;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.footer-bottom-line {
    font-size: 0.8rem;
    color: #FCFCFF;
    letter-spacing: 2px;
    width: 100%;
    margin-top: 2rem;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #FCFCFF;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #0050A0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #FCFCFF;
    font-size: 1.2rem;
    text-decoration: none;
}

.connect-text {
    font-size: 0.8rem;
    color: #FCFCFF;
    margin-bottom: 0.5rem;
}

@font-face {
    font-family: 'BebasCustom';
    src: url('static/fonts/BEBAS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.title-caps {
    font-family: 'BebasCustom', sans-serif;
    letter-spacing: 0.05em;
}

.social-links i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: white;
    transition: color 0.3s;
}

.social-links i:hover {
    color: #3b82f6;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-logo {
        height: 38px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    /* Features grid alignment for tablet */
    .features-grid {
        align-items: flex-start;
    }
    
    .feature {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .feature-description {
        flex-grow: 1;
        display: flex;
        align-items: flex-start;
    }
    
    /* Basketball player image fixes for tablet */
    .basketball-player {
        height: auto !important;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background: white;
    }
    
    .basketball-player img {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
        object-position: center bottom;
        transform: none !important;
    }
}

/* Desktop Large Screens */
@media screen and (min-width: 1025px) {
    .nav-logo {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 36px;
    }
    
    /* Features grid 4 columns */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: flex-start;
    }
    
    .feature {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .feature-description {
        flex-grow: 1;
        display: flex;
        align-items: flex-start;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links,
    .auth-buttons {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    /* General section padding */
    section {
        padding: 2rem 1rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        height: 120% !important;
        width: auto;
    }
    
    .tagline {
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        margin-top: 0 !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
        z-index: 10;
    }
    
    .chain-pattern {
        display: none;
    }
    
    /* Who Section */
    .who-section {
        padding: 2rem 0 0 0 !important;
    }
    
    .who-container {
        padding: 0 1rem !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1rem;
    }
    
    .who-content {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
        padding: 2rem 1rem;
    }
    
    .who-title {
        font-size: 3rem !important;
        margin-bottom: 2rem !important;
    }
    
    .who-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* Basketball player image mobile */
    .basketball-player {
        height: auto !important;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
    }
    
    .basketball-player img {
        max-height: 350px;
        object-fit: cover;
        object-position: center center;
        transform: none !important;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 3rem 1rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem !important;
    }
    
    .footer-container {
        padding: 0 1rem !important;
    }
    
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem;
    }
    
    .footer-top-line {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem;
        width: 100% !important;
        text-align: center;
    }
    
    .footer-logo-line {
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-img {
        width: 150px !important;
        height: auto !important;
    }
    
    .footer-connect {
        margin-left: 0 !important;
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom-line {
        margin-top: 1rem !important;
        width: 100%;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center;
    }
    
    .footer-nav a {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 2rem !important;
    }
}