/*
Theme Name: Swiss Tamil Radio
Theme URI: https://swisstamilradio.com
Author: Grok Designer
Description: Custom Dark Radio Theme with Box Model
Version: 1.4
*/

:root {
    --red: #ff0000;
    --gold: #ffd700;
}

* { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #000;
    color: #eee;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0,0,0,0.98);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--red);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img { height: 68px; width: auto; }

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 35px;
    transition: 0.3s;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.8)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

/* Audio Player */
.audio-player {
    background: rgba(20,20,20,0.95);
    border: 3px solid var(--red);
    border-radius: 20px;
    padding: 30px;
    max-width: 560px;
    box-shadow: 0 15px 40px rgba(255,0,0,0.4);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2.3rem;
    cursor: pointer;
}

.waveform {
    background: #111;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Footer */
footer {
    background: #111;
    padding: 60px 0 30px;
    text-align: center;
    color: #aaa;
    border-top: 3px solid var(--red);
}