@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

/* BACKGROUND: Dark "Studio" Vibe */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-align: center;
    min-height: 100vh;
}

/* THE TICKER */
.ticker-wrap {
    width: 100%;
    background-color: #000;
    border-bottom: 2px solid #00f2ea;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.5);
    position: relative;
    z-index: 10;
}
.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 20s linear infinite;
}
.ticker-item {
    display: inline-block;
    color: #00f2ea;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 60px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #00f2ea;
}
@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* MAIN CONTAINER */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* HEADER */
header {
    background: rgba(0,0,0,0.5);
    padding: 40px 20px;
    border-bottom: 1px solid #333;
}
.logo-area {
    margin: 0 auto 20px auto;
}
.logo-img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.5);
    border: 2px solid #ff0050;
}

h1 {
    font-weight: 900;
    font-size: 42px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #ff0050;
}
h1 span { color: #00f2ea; }

/* BIO TEXT AREA */
.bio-area {
    padding: 30px 40px;
    text-align: left;
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
    border-bottom: 1px solid #333;
}
.bio-area strong { color: #ff0050; }
.station-count {
    text-align: center;
    color: #00f2ea;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    border: 2px solid #00f2ea;
    padding: 15px;
    border-radius: 10px;
    background: rgba(0, 242, 234, 0.1);
}

/* CHART TABLE STYLES (NEW) */
.chart-box {
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid #333;
}
.chart-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-size: 14px;
}
.chart-table th {
    text-align: left;
    background: #ff0050;
    color: white;
    padding: 10px;
    text-transform: uppercase;
}
.chart-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #333;
}
.chart-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05); /* Stripes */
}
.rank-num {
    font-weight: 900;
    color: #00f2ea;
    font-size: 18px;
}

/* MP3 PLAYER */
.demo-area {
    background: linear-gradient(to right, #111, #222);
    padding: 30px;
    margin: 30px;
    border-radius: 10px;
    border-left: 5px solid #ff0050;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.demo-area h2 { color: #fff; margin-top: 0; text-transform: uppercase; }
audio {
    width: 100%;
    margin-top: 15px;
    filter: invert(1) hue-rotate(180deg);
}

/* FORM STYLES */
.form-box {
    background-color: rgba(0,0,0,0.3);
    width: 80%;
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #444;
}
.form-box h3 {
    margin-top: 0;
    color: #00f2ea;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 24px;
}
input, textarea {
    width: 90%;
    padding: 15px;
    margin: 10px 0;
    background-color: #111;
    border: 2px solid #333;
    color: white;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}
input:focus, textarea:focus { border-color: #ff0050; outline: none; }
.spam-check {
    border: 2px solid #ff0050;
    color: #ff0050;
    font-weight: bold;
    text-align: center;
}
button {
    background: #ff0050;
    color: #fff;
    width: 100%;
    padding: 18px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.6);
    transition: 0.3s;
}
button:hover { background: #ff3377; transform: scale(1.02); }