/* Brand Theme - Posters Basketball (Cyan Blue & Ball Orange) */
:root {
    --bg-main: #0A0D12;
    --bg-card: #131A24;
    --bg-header: rgba(10, 13, 18, 0.88);
    
    /* Logo Brand Colors */
    --brand-cyan: #00C3FF;
    --brand-cyan-dark: #0088FF;
    --brand-orange: #FF6600;
    --brand-orange-hover: #FF8533;
    
    --text-primary: #FFFFFF;
    --text-secondary: #9DB0C6;
    --border-color: rgba(0, 195, 255, 0.12);
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(180deg, var(--brand-cyan) 0%, var(--brand-cyan-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo span {
    color: var(--brand-orange);
    -webkit-text-fill-color: var(--brand-orange);
}

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

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

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

/* Hero Section */
.hero-section {
    padding: 160px 0 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 15%, rgba(0, 195, 255, 0.15) 0%, rgba(255, 102, 0, 0.05) 50%, rgba(10, 13, 18, 0) 75%);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 195, 255, 0.08);
    border: 1px solid var(--brand-cyan);
    color: var(--brand-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 20%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 36px auto;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.35);
}

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

.btn-secondary:hover {
    background: rgba(0, 195, 255, 0.1);
    border-color: var(--brand-cyan);
}

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

.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.btn-outline-sm {
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.btn-outline-sm:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
}

/* Stats */
.channel-stats {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 16px;
    margin-top: 50px;
    gap: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brand-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-secondary);
}

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

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-cyan);
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.video-info h3 {
    font-size: 1.15rem;
    margin: 8px 0;
    color: var(--text-primary);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(19, 26, 36, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-secondary);
    max-width: 800px;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

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

.feature-box {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.feature-box h4 {
    font-size: 1.1rem;
    color: var(--brand-cyan);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
    text-align: center;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 16px;
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.4rem;
    }
    
    .channel-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
