:root {
    /* Dark Red / Maroon Palette */
    --bg-color: #120303;        /* Very dark, almost black-red background */
    --card-bg: #2b0a0d;         /* Deep maroon card background */
    --card-hover-bg: #400f13;   /* Lighter maroon for hover state */
    --text-main: #ffe4e6;       /* Rose-tinted white for main text */
    --text-muted: #bbb;         /* Neutral gray for secondary text */
    
    --accent: #dc2626;          /* Bright Red accent (Red-600) */
    --accent-glow: rgba(220, 38, 38, 0.2); 
    --featured-icon: #FFD791;   /* Light Red/Pink for featured icons */
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 80px);
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.banner-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

p.subtitle {
    color: var(--text-muted);
    margin-top: 15px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover-bg);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ddd; /* Default icon color */
}

/* Styles for Featured Cards (Play/Request) */
.card.featured .icon-box {
    background-color: var(--accent-glow);
    color: var(--featured-icon);
}

.info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section dividers */
.section-title {
    width: 100%;
    max-width: 1200px;
    margin: 40px 0 15px 0;
    color: var(--accent); /* Using accent color for headers now */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}
