/* --- Base Styles & Variables --- */
:root {
    --bg-color: #0f111a;
    --card-bg: #1e2130;
    --text-primary: #ffffff;
    --text-secondary: #a0a5b5;
    --accent-color: #7b2cbf;
    --accent-glow: #9d4edd;
    --live-color: #ff3366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(15, 17, 26, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent-glow);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--accent-glow);
}

/* --- Hero Player Section --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-player {
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 20px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 51, 102, 0.1);
    color: var(--live-color);
    padding: 6px 15px;
    border
