:root {
    --bg-dark: #05070a;        /* Deep Obsidian */
    --bg-surface: #0f1218;     /* Dark Slate */
    --accent-orange: #ff5f1f;  /* Neon Basketball Orange */
    --accent-lime: #ccff00;    /* Cyber Lime for secondary stats */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8; /* Steel Grey */
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Nav with a touch of color */
nav {
    padding: 25px 5%;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo { font-family: 'Syncopate', sans-serif; font-size: 1.2rem; }
.logo span { color: var(--accent-orange); }

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 1px;
}

.cta { color: var(--accent-lime) !important; }

/* Hero Section */
.hero {
    padding: 100px 5%;
    background: radial-gradient(circle at 80% 20%, #101827 0%, var(--bg-dark) 50%);
}

.hero-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border: 1px solid var(--glass);
    margin-bottom: 30px;
}

.status-pill span {
    width: 8px;
    height: 8px;
    background: var(--accent-lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-lime);
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-secondary);
}

.bio-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
}

.bio-box span { font-size: 0.6rem; color: var(--text-secondary); letter-spacing: 2px; }
.bio-box p { font-weight: 700; font-size: 1.1rem; margin-top: 5px; }

/* Stats Tiles */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-tile {
    background: var(--bg-surface);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid var(--glass);
    transition: transform 0.3s ease;
}

.stat-tile:hover { transform: translateY(-5px); border-color: var(--accent-orange); }

.stat-tile small { color: var(--text-secondary); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }
.stat-tile strong { display: block; font-size: 3rem; font-weight: 900; margin-top: 10px; }

.stat-tile.highlight strong { color: var(--accent-orange); }

/* Table Section */
.table-section { padding: 100px 5%; }
.container { max-width: 1000px; margin: 0 auto; }

.section-header { margin-bottom: 40px; }
.section-header h2 { font-size: 1.5rem; font-weight: 900; }
.section-header p { color: var(--text-secondary); font-size: 0.9rem; }

.table-holder {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--glass);
    overflow-x: auto;
}

.pro-table { width: 100%; border-collapse: collapse; text-align: left; }
.pro-table th { padding: 15px; font-size: 0.7rem; color: var(--text-secondary); border-bottom: 1px solid var(--glass); }
.pro-table td { padding: 20px 15px; border-bottom: 1px solid rgba(255,255,255,0.02); font-weight: 600; }

.high-stat { color: var(--accent-lime); }

@media (max-width: 768px) {
    .bio-bar { flex-direction: column; gap: 20px; }
    .stats-dashboard { grid-template-columns: 1fr; }
}