* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #1f1f1f;
    color: #ffffff;
    text-align: center;
}

.navbar {
    background: #242424;
    padding: 15px;
    border-bottom: 2px solid #ffb703;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo { width: 60px; }

.college-fullname {
    font-size: 11px;
    font-weight: 700;
    color: #ffb703;
    max-width: 180px;
    text-align: left;
}

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

/* STATUS DOT */
.stream-status {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.now-playing {
    background: #2a2a2a;
    color: #ffb703;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* HEADPHONE BUTTON STYLE */
.listener-box-btn {
    background: #2a2a2a;
    padding: 30px 40px;   /* smaller padding */
    border-radius: 12px;
    margin: 20px auto;    /* center horizontally */
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;  /* 👈 important */
    outline: none;
}

.listener-box-btn:hover {
    background: #333;
    border-color: #ffb703;
    transform: translateY(-3px);
}

.listener-box-btn i {
    font-size: 50px;
    color: #ffb703;
    margin-bottom: 15px;
}

.listener-box-btn p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

/* ACTIVE STATE */
.listener-box-btn.live {
    background: #1a1a1a;
    border-color: #ffb703;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
}

/* AUDIO PLAYER */
audio {
    width: 100%;
    margin: 20px 0;
    filter: invert(1);
    display: none; /* Hidden until button click */
}

.about, .contact, .how-to {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

h3 { color: #ffb703; margin-bottom: 10px; }

footer {
    padding: 20px;
    background: #242424;
    font-size: 13px;
    color: #888;
    margin-top: 40px;
}

audio {
    display: none;   /* 🔒 hidden by default */
    width: 100%;
    margin: 20px 0;
    filter: invert(1);
}