/* ==========================================================================
   1. SIFIRLAMA & GENEL AYARLAR (RESET & BASE)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    padding-bottom: 90px;
    animation: pageFade .8s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: -1;
}

/* Sayfa geçiş yumuşatıcısı */
#page-content {
    transition: opacity 0.15s ease-in-out;
}
.page-fade {
    opacity: 0;
}

/* ==========================================================================
   2. ARKA PLAN VE ANİMASYONLARI (BACKGROUND)
   ========================================================================== */
.bg-animation {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
    animation: float 15s infinite linear;
}

.circle1 {
    width: 400px;
    height: 400px;
    background: #ffb400;
    top: -100px;
    left: -100px;
}

.circle2 {
    width: 350px;
    height: 350px;
    background: #ffffff;
    bottom: -100px;
    right: -100px;
    animation-duration: 20s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ==========================================================================
   3. NAVIGASYON (NAVBAR)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    z-index: 999;
    animation: navDown .8s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    position: relative;
}

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

.logo-area img {
    width: 55px;
    height: 55px;
    border-radius: 16px;
}

.logo-area h2 {
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffcc4d;
}

.menu-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: .3s;
}

.menu-btn:hover {
    background: #ffb400;
    color: #000;
}

/* ==========================================================================
   4. KAHRAMAN ALANLARI (HERO SECTIONS)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

/* Radyo Sinyal Animasyonlu Özel H1 */
.hero h1 {
    font-size: 88px;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 800;
    background: radial-gradient(circle at center, 
        #ff0055 0%, 
        #00ffcc 20%, 
        #3300ff 40%, 
        #ffcc00 60%, 
        #ff0055 80%,
        transparent 100%
    );
    background-size: 300% 300%;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: radioSignal 4s ease-in-out infinite;
}

@keyframes radioSignal {
    0% { background-size: 100% 100%; filter: hue-rotate(0deg); }
    50% { background-size: 400% 400%; }
    100% { background-size: 100% 100%; filter: hue-rotate(360deg); }
}

.hero p {
    color: #d1d1d1;
    font-size: 20px;
    line-height: 1.9;
    max-width: 760px;
    margin: auto;
}

/* Düzenlenmiş Yayınlar ve İletişim Sayfası Hero Yapısı (Alt Alta Düzgün Hizalama) */
.contact-hero {
    padding: 180px 20px 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-hero h1 {
    font-size: 72px;
    margin-bottom: 0;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #ffcc4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: #d0d0d0;
    font-size: 18px;
}

/* ==========================================================================
   5. BUTONLAR & ORTAK BİLEŞENLER
   ========================================================================== */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
}

.btn:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 42px;
    margin-bottom: 35px;
    text-align: center;
}

/* ==========================================================================
   6. CANLI YAYIN BİLGİSİ & KARTLAR (INFO / LIVE / CARDS)
   ========================================================================== */
.live-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.info-box {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 35px;
    border-radius: 28px;
}

.info-box i {
    font-size: 34px;
    color: #ffcc4d;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-box p {
    color: #cfcfcf;
    line-height: 1.7;
}

/* Yayınlar Sayfası Canlı Durum Paneli */
.live-status {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 60px;
}

.live-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 35px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    backdrop-filter: blur(20px);
}

.live-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-icon {
    width: 85px;
    height: 85px;
    border-radius: 26px;
    background: rgba(255, 180, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc4d;
    font-size: 34px;
}

.live-text h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.live-text p {
    color: #ccc;
}

.live-badge {
    padding: 16px 28px;
    border-radius: 100px;
    background: #0f3017;
    color: #67ff95;
    font-weight: 700;
    border: 1px solid rgba(103, 255, 149, .2);
}

/* ==========================================================================
   7. YAYIN AKIŞI KARTLARI (BROADCASTS)
   ========================================================================== */
.broadcasts {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.broadcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.broadcast-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    overflow: hidden;
    transition: .3s;
    backdrop-filter: blur(20px);
}

.broadcast-card:hover {
    transform: translateY(-10px);
    border-color: #ffb400;
}

.broadcast-image {
    height: 240px;
    overflow: hidden;
}

.broadcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.broadcast-card:hover .broadcast-image img {
    transform: scale(1.08);
}

.broadcast-content {
    padding: 28px;
}

.broadcast-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 180, 0, .12);
    color: #ffcc4d;
    font-size: 13px;
    margin-bottom: 18px;
}

.broadcast-content h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.broadcast-content p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 24px;
}

.broadcast-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.broadcast-buttons .btn {
    flex: 1;
    min-width: 140px;
    height: 54px;
}

/* ==========================================================================
   8. AKTİF OYNATICI KARTI (NOW PLAYING & EQUALIZER)
   ========================================================================== */
.now-playing {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.player-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.song-cover {
    width: 220px;
    height: 220px;
    border-radius: 30px;
    overflow: hidden;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: rotateCover 20s linear infinite;
}

@keyframes rotateCover {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.song-info {
    flex: 1;
}

.song-info h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.song-info p {
    color: #ccc;
    line-height: 1.8;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 25px;
    height: 45px;
}

.equalizer span {
    width: 6px;
    border-radius: 30px;
    background: #ffb400;
    animation: eq 1s infinite ease-in-out;
}

.equalizer span:nth-child(1) { height: 12px; animation-delay: .1s; }
.equalizer span:nth-child(2) { height: 35px; animation-delay: .2s; }
.equalizer span:nth-child(3) { height: 18px; animation-delay: .3s; }
.equalizer span:nth-child(4) { height: 40px; animation-delay: .4s; }
.equalizer span:nth-child(5) { height: 22px; animation-delay: .5s; }

@keyframes eq {
    0%, 100% { transform: scaleY(.5); }
    50% { transform: scaleY(1.5); }
}

/* ==========================================================================
   9. KATEGORİLER & İSTATİSTİKLER (CATEGORIES & STATS)
   ========================================================================== */
.categories {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.category-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 35px;
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #ffb400;
}

.category-card i {
    font-size: 36px;
    color: #ffcc4d;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    color: #cfcfcf;
    line-height: 1.7;
}

.stats {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.stat-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 35px;
    text-align: center;
}

.stat-box h3 {
    font-size: 42px;
    color: #ffcc4d;
    margin-bottom: 10px;
}

.stat-box p {
    color: #ccc;
}

/* ==========================================================================
   10. YORUMLAR PANELİ VE FORMU (COMMENTS & FORM)
   ========================================================================== */
.comments {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 70px;
}

.comment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.comment-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 30px;
}

.comment-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
}

.comment-name {
    font-size: 18px;
    font-weight: 600;
}

.comment-text {
    color: #cfcfcf;
    line-height: 1.8;
}

.comment-form-box {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 35px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.comment-form textarea {
    min-height: 160px;
    resize: none;
}

.comment-form button {
    height: 58px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}

.comment-page {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.comment-page.active {
    display: grid;
}

.comment-stars {
    color: #ffcc4d;
    margin-bottom: 12px;
    font-size: 18px;
}

.comment-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: .3s;
}

.page-btn.active,
.page-btn:hover {
    background: #ffb400;
    color: #000;
}

/* ==========================================================================
   11. İLETİŞİM ALANI (CONTACT)
   ========================================================================== */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
}

.contact-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 40px;
}

.contact-box h2,
.contact-form h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    min-width: 65px;
    height: 65px;
    border-radius: 22px;
    background: rgba(255, 180, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc4d;
    font-size: 24px;
}

.contact-text h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.contact-text p,
.contact-text a {
    color: #cfcfcf;
    text-decoration: none;
    line-height: 1.8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 18px;
    color: #fff;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.contact-form textarea {
    margin-top: 20px;
    min-height: 180px;
    resize: none;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    color: #000;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   12. SOSYAL MEDYA PANELİ (SOCIAL SECTIONS)
   ========================================================================== */
.social {
    text-align: center;
    padding: 0 20px 60px;
}

.social-contact {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
}

.social-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 35px;
    padding: 40px;
    text-align: center;
}

.social-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.social-box p {
    color: #ccc;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 26px;
    transition: .3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-8px);
    border-color: #ffb400;
    color: #ffcc4d;
}

/* ==========================================================================
   13. SABİT ALT OYNATICI (FIXED PLAYER BAR)
   ========================================================================== */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, .95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    z-index: 9999;
}

.player-content {
    max-width: 1300px;
    margin: auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-left img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
}

.player-text h4 {
    font-size: 15px;
}

.player-text span {
    font-size: 12px;
    color: #bbb;
}

.controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
}

.volume {
    width: 110px;
    accent-color: #ffb400;
}

/* ==========================================================================
   14. ALT BİLGİ VE LOGO AYARLARI (FOOTER & LOGO ELEMENT)
   ========================================================================== */
footer {
    text-align: center;
    padding: 0 20px 15px;
    color: #888;
    font-size: 14px;
}

.logo {
    width: 220px;
    margin: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 180, 0, .3));
}

.logo img {
    width: 100%;
    border-radius: 24px;
}

/* ==========================================================================
   15. SAYFA GEÇİŞ DETAYLARI VE GRUP ANİMASYONLARI
   ========================================================================== */
.page-transition {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity .45s ease;
}

.page-transition.active {
    opacity: 1;
}

@keyframes pageFade {
    from { opacity: 0; transform: scale(1.01); filter: blur(10px); }
    to { opacity: 1; transform: scale(1); filter: blur(0); }
}

.hero,
.contact-hero,
.live-info,
.now-playing,
.categories,
.comments,
.social,
.broadcasts,
.stats,
.contact-wrapper,
.social-contact {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes navDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================================================
   16. ÖZEL RADYO TELİF KUTUSU
   ========================================================================== */
.radyo-telif-kutusu {
    position: relative;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.radyo-telif-kutusu .sinyal-dalgalari {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 0, 85, 0.15) 0%, 
        rgba(0, 255, 204, 0.15) 25%, 
        rgba(51, 0, 255, 0.15) 50%, 
        rgba(255, 204, 0, 0.15) 75%, 
        transparent 100%
    );
    background-size: 200% 200%;
    background-position: center;
    z-index: -1;
    animation: kutuSinyali 6s ease-in-out infinite;
}

.radyo-telif-kutusu .kutu-icerik {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.radyo-telif-kutusu .kutu-icerik i {
    font-size: 24px;
    color: #ffcc4d;
    animation: pulseIcon 1.5s ease-in-out infinite alternate;
}

.radyo-telif-kutusu .kutu-icerik p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    margin: 0;
}

@keyframes kutuSinyali {
    0% { background-size: 100% 100%; filter: hue-rotate(0deg); }
    50% { background-size: 300% 300%; }
    100% { background-size: 100% 100%; filter: hue-rotate(360deg); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(255, 204, 77, 0.2); }
    100% { transform: scale(1.1); text-shadow: 0 0 15px rgba(255, 204, 77, 0.8); }
}

/* ==========================================================================
   17. DUYARLI TASARIM (RESPONSIVE MEDIA QUERIES) - TAMAMEN YENİLENDİ
   ========================================================================== */
@media(max-width:900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-inner {
        padding: 14px 16px;
    }

    .logo-area img {
        width: 45px;
        height: 45px;
    }

    .logo-area h2 {
        font-size: 18px;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, .98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 24px;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .04);
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-hero {
        padding: 140px 20px 40px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .player-card {
        justify-content: center;
        text-align: center;
    }

    .song-cover {
        width: 180px;
        height: 180px;
    }

    .song-info h2 {
        font-size: 28px;
    }

    .live-text h2 {
        font-size: 26px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* ==========================================================================
       KUSURSUZ MOBİL PLAYER BAR HİZALAMA MOTORU (HER TELEFONA UYUMLU)
       ========================================================================== */
    .player-bar {
        padding-bottom: env(safe-area-inset-bottom, 0px); /* Çentikli telefonlar için alt boşluk koruması */
    }

    .player-content {
        padding: 10px 14px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Sol Alan: Logo ve Başlık */
    .player-left {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 45%; /* Ekranın yarısından fazlasını kaplayıp sağ tarafı sıkıştırmaz */
        flex-shrink: 1;
    }

    .player-left img {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .player-text h4 {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* Çok küçük ekranlarda isim sığmazsa taşma yapmaz, üç nokta koyar */
    }

    /* Sağ Alan: Kontroller ve Butonlar */
    .controls {
        display: flex;
        align-items: center;
        gap: 8px; /* Elemanların birbirine yapışmasını önleyen güvenli mesafe */
        justify-content: flex-end;
        max-width: 55%;
        flex-shrink: 0;
    }

    /* Oynat / Durdur Butonu */
    .play-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Canlı Zaman Göstergesi */
    #timeDisplay {
        font-size: 11px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        font-family: monospace !important;
    }

    /* KESİN ÇÖZÜM: Ses çubuğu mobilde alanı daralttığı ve dışarı taştığı için gizleniyor */
    .volume {
        display: none !important;
    }

    /* Efekt (Ambiyans) Butonu */
    #mixerBtn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        flex-shrink: 0 !important; /* Ekran ne kadar küçük olursa olsun buton formunu asla kaybetmez */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #mixerBtn i {
        display: inline-block !important;
        line-height: 1 !important;
    }

    /* Mobil Efekt Popup Panel Genişliği */
    #effectPopup {
        right: 4% !important;
        left: 4% !important;
        width: 92% !important;
        bottom: 80px !important;
    }
}

/* Canlı Yayın Lambasının Yanıp Sönme Efekti */
@keyframes canlıLamba {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
        box-shadow: 0 0 2px #ff3b30;
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px #ff3b30, 0 0 20px #ff3b30;
    }
}