:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --primary: #ff0000; /* Bright Neon Red */
    --primary-dim: #990000;
    --text: #ffffff;
    --text-secondary: #b3b3b3;
    --glow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4);
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header with Glow */
.app-header {
    text-align: center;
    padding: 15px;
    background: #000;
    border-bottom: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 10;
}
.top-logo { 
    height: 40px; 
    border-radius: 50%; 
    vertical-align: middle; 
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary);
}
.app-header h2 { 
    display: inline-block; 
    margin: 0 0 0 10px; 
    font-size: 1.2rem; 
    vertical-align: middle; 
    color: var(--primary); 
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--primary);
}

/* Content Area Animations */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 90px; /* Space for nav */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.tab-content { 
    display: none; 
    animation: slideUp 0.4s ease-out; 
}
.tab-content.active { display: block; }

@keyframes slideUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Player Styles - Neon Look */
.player-container { text-align: center; margin-top: 10px; }
.album-art {
    width: 220px; height: 220px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255,0,0,0.2);
    object-fit: cover;
    border: 2px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}
.album-art:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(255,0,0,0.4);
    border-color: var(--primary);
}

.track-info h3 { margin: 20px 0 5px 0; font-size: 1.4rem; text-shadow: 0 2px 4px black; }
.track-info p { color: var(--primary); margin: 0; font-weight: bold; letter-spacing: 1px; text-shadow: 0 0 5px var(--primary-dim); }

/* --- NEW PLAYER SOCIALS CSS --- */
.player-socials {
    display: flex;
    justify-content: center;
    gap: 25px; /* Spacing between icons */
    margin: 15px 0 5px 0;
    padding: 10px;
}
.player-socials a {
    color: #b3b3b3;
    font-size: 1.8rem; /* Made slightly larger */
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}
.player-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    text-shadow: 0 0 15px var(--primary);
}
/* ------------------------------- */

.play-btn {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff0000, #cc0000);
    border: 2px solid #ff4d4d;
    color: white;
    font-size: 35px;
    margin: 25px 0;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary);
    transition: all 0.2s;
    outline: none;
}
.play-btn:active { transform: scale(0.95); box-shadow: 0 0 10px var(--primary); }

/* Volume Slider */
.volume-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 10px; color: #888; }
input[type=range] { 
    accent-color: var(--primary); 
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* Forms - Card Style */
input, textarea, select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: white;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #cc0000, #ff0000);
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(200,0,0,0.3);
    transition: transform 0.2s;
}
.submit-btn:active { transform: scale(0.98); }

/* Schedule List */
.schedule-item {
    background: linear-gradient(to right, #1e1e1e, #141414);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.schedule-item img { width: 55px; height: 55px; border-radius: 50%; margin-right: 15px; object-fit: cover; border: 2px solid #333; }
.time-badge { background: rgba(255,0,0,0.1); padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; color: var(--primary); border: 1px solid var(--primary-dim); }

/* About & Socials */
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
    display: block;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: opacity 0.2s;
}
.fb { background: #1877f2; }
.x { background: #000; border: 1px solid #333; }
.insta { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn:hover { opacity: 0.9; }

/* Tabbed Bottom Navigation (The Menu) */
.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #080808; /* Darker background */
    display: flex;
    justify-content: space-around;
    padding: 10px 0 15px 0; /* Extra padding bottom for iOS home bar */
    border-top: 1px solid #222;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.7);
    z-index: 100;
}

.nav-item {
    color: #666;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    display: block;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Active Menu State */
.nav-item.active {
    color: var(--text);
}

.nav-item.active i {
    color: var(--primary);
    transform: translateY(-5px); /* Icon pops up */
    text-shadow: 0 0 10px var(--primary); /* Glowing Icon */
}

/* Little glowing dot under active tab */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.notification {
    background: linear-gradient(90deg, var(--primary), #cc0000);
    color: white; padding: 15px; text-align: center; cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: bold;
    animation: slideDown 0.3s;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }