/* --- Reset & Variables --- */


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

:root {
    --bg-color: #121214;
    --card-bg: #1a1a1e;
    --accent-color: #ff3e6c; /* Neon Coral / Hot Pink */
    --text-main: #ffffff;
    --text-muted: #a0a0aa;
    --border-color: #2a2a30;
    --spacing: 24px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* --- Header --- */
.epk-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #1f1f23 0%, var(--bg-color) 100%);
}

.epk-header .subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.epk-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 10px 0;
}

.epk-header .genre {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Grid Structure --- */
.epk-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing);
    margin-top: 40px;
}

/* --- Component Cards --- */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing);
    margin-bottom: var(--spacing);
}

.card h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h2 i {
    color: var(--accent-color);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.card p strong {
    color: var(--text-main);
}

/* --- Media Players --- */
.audio-container {
    margin-top: 10px;
	
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

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

/* --- Sidebar Specifics --- */
.promo-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.image-card {
    padding: 8px; /* Snug fit for the promo image */
}

/* --- Asset Downloads --- */
.asset-list {
    list-style: none;
}

.asset-list li {
    margin-bottom: 12px;
}

.asset-list li:last-child {
    margin-bottom: 0;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #242428;
    color: var(--text-main);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-download:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* --- Press Quotes --- */
.press-quote {
    margin-bottom: 16px;
    border-left: 3px solid var(--accent-color);
    padding-left: 12px;
}

.press-quote:last-of-type {
    margin-bottom: 0;
}

.press-quote p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 4px;
}

.press-quote cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

/* --- Contact & Socials --- */
.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* --- Footer --- */
.epk-footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .epk-grid {
        grid-template-columns: 1fr; /* Stacks layout linearly on tablets/phones */
    }
    
    .epk-header h1 {
        font-size: 2.5rem;
    }


        .player-container {
            background: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            width: 350px;
        }
        audio {
            width: 100%;
            margin-bottom: 20px;
        }
        .playlist {
            list-style:square;
            padding: 0;
            margin: 0;
            max-height: 200px;
            overflow-y: auto;
        }
        .playlist li {
            padding: 10px 15px;
            margin-bottom: 5px;
            background: #f8f9fa;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 14px;
            color: #333;
        }
        .playlist li:hover {
            background: #e9ecef;
        }
        .playlist li.active {
            background: #007bff;
            color: #fff;
            font-weight: bold;
        }