/* Modern Basketball Theme */
:root {
    /* Color Palette - Harmonious & Sporty */
    --primary: #e65100;        /* Deep Orange */
    --primary-hover: #bf360c;
    --secondary: #263238;      /* Blue Grey Dark */
    --accent: #ffab00;         /* Amber Accent */
    --background: #f4f6f8;     /* Light Gray Blueish */
    --surface: #ffffff;
    --text-main: #212121;
    --text-muted: #546e7a;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Base Overrides */
body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
}

/* Modern Header */
header {
    background: linear-gradient(135deg, var(--secondary) 0%, #37474f 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

header nav ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

header nav strong a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary) !important; /* Brand Color */
    letter-spacing: -0.5px;
}

header nav strong a:hover {
    background: none;
}

/* Card Style Layout */
main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
}

article {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Typography & Content */
h1, h2, h3 {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 0.5rem;
    border-radius: 2px;
}

h2 {
    margin-top: 2.5rem;
    font-size: 1.75rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Buttons (if needed in Markdown) */
button, .button {
    background-color: var(--primary);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: transform 0.1s;
}

button:hover, .button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

footer a {
    color: rgba(255,255,255,0.8);
}

footer a:hover {
    color: #fff;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    display: block;
}

article img {
    box-shadow: var(--shadow);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    article { padding: 1.5rem; }
    h1 { font-size: 2rem; }
    img { margin: 1.5rem 0; }
}