/* Basic layout & background */
* { box-sizing: border-box; }
body {
    font-family: Arial, sans-serif;
    background: url('../image/Wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main content: left player, right info */
.main-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Player (left) */
.player-container {
    width: 48%;
    min-width: 280px;
    background: rgba(20,20,20,0.8);
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0,0,0,0.4);
    text-align: center;
}

/* Station title inside player */
.player-container h1 {
    margin: 6px 0 2px 0;
    font-size: 22px;
}
.player-container h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #ddd;
}

audio {
    width: 100%;
    outline: none;
}

canvas#waveCanvas {
    width: 100%;
    height: 120px;
    background: #000;
    border-radius: 6px;
    display: block;
    margin-bottom: 12px;
}

.controls {
    display:flex;
    gap:10px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.controls button {
    background:#ff4081;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}
.controls button:hover {
    background:#e91e63;
}
.controls input[type="range"] { width:110px; }

/* Info area (right) with tabs */
.info-section {
    width: 48%;
    min-width: 280px;
    background: rgba(20,20,20,0.85);
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}

.tabs {
    display:flex;
    gap:10px;
    margin-bottom:14px;
}

.tab-btn {
    flex:1;
    padding:10px;
    border-radius:6px;
    border:none;
    background:#333;
    color:#ccc;
    cursor:pointer;
    font-weight:600;
}
.tab-btn.active { background:#ff4081; color:#fff; box-shadow:0 0 10px rgba(255,64,129,0.5); }

.tab-content {
    color: #e6e6e6;
}

.tab-content h2 { margin-top: 0; color:#fff; }
.team-preview { margin:10px 0 0 18px; color:#e6e6e6; }

/* Social share */
.social-share {
    margin: 26px auto 8px auto;
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}
.social-share button {
    background:#4267B2;
    border:none;
    color:#fff;
    padding:10px 16px;
    border-radius:6px;
    cursor:pointer;
    font-weight:700;
    transition: background 0.3s ease;
}
.social-share button:hover {
    opacity: 0.9;
}
.social-share button.twitter { background:#1DA1F2; }
.social-share button.whatsapp { background:#25D366; }

/* Permanent team section (below share) */
.team-section {
    margin-top: 18px;
    background: rgba(20,20,20,0.9);
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
    text-align: center;
}

.team-members {
    display:flex;
    flex-wrap:wrap;
    gap: 18px;
    justify-content:center;
    margin-top:12px;
}

/* Each member box */
.member {
    width: 140px;
    text-align:center;
}
.member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-bottom: 8px;
    border: 2px solid rgba(255,255,255,0.06);
}
.member-meta .member-role {
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 4px;
}
.member-meta .member-name {
    font-weight:700;
}

/* Footer */
footer {
    margin: 26px auto 40px auto;
    text-align:center;
    color:#ddd;
}

/* Responsive */
@media (max-width: 880px) {
    .player-container, .info-section { width: 100%; }
    .main-content { gap: 18px; }
    .member { width: 45%; max-width: 160px; }
}
@media (max-width: 480px) {
    .member { width: 48%; }
    .controls input[type="range"] { width: 80px; }
}
