:root {
    --ep-bg: #000000;
    --ep-surface: #121212;
    --ep-text-primary: #ffffff;
    --ep-text-secondary: #707070;
    --ep-border: #222222;
    --ep-accent: #ffffff;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--ep-bg);
    color: var(--ep-text-primary);
    font-family: var(--font-main);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Sidebar - Exact Epidemic Style */
.ep-sidebar {
    width: 240px;
    height: 100vh;
    position: fixed;
    background: #000;
    border-right: 1px solid var(--ep-border);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.ep-logo {
    padding: 0 24px;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ep-nav-section {
    margin-bottom: 32px;
}

.ep-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    color: var(--ep-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.ep-nav-item:hover, .ep-nav-item.is-active {
    color: #fff;
}

.ep-nav-item i {
    width: 24px;
    font-size: 16px;
    margin-right: 12px;
}

/* Track List - Minimalist */
.track-table {
    width: 100%;
    border-collapse: collapse;
}

.track-table th {
    text-align: left;
    color: var(--ep-text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ep-border);
}

.track-row {
    border-bottom: 1px solid var(--ep-border);
    transition: background 0.1s;
}

.track-row:hover {
    background: #111;
}

.track-row td {
    padding: 12px 20px;
}

.play-trigger {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.track-row:hover .play-trigger {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Horizontal Scroll Grid */
.ep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.ep-card {
    text-decoration: none;
    color: inherit;
}

.ep-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

.ep-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ep-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ep-card-sub {
    font-size: 13px;
    color: var(--ep-text-secondary);
}
