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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    padding-bottom: 90px;
    -webkit-animation: pageFade .8s ease;
    animation: pageFade .8s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================================================
   2. SAYFA GEÇİŞLERİ (PAGE TRANSITIONS)
   ========================================================================== */
#page-content {
    -webkit-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
}
.page-fade {
    opacity: 0;
}

.page-transition {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .45s ease;
    transition: opacity .45s ease;
    will-change: opacity;
}

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

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

@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 {
    -webkit-animation: fadeUp 1s ease;
    animation: fadeUp 1s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-area img {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

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

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

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

.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;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

/* ==========================================================================
   5. KAHRAMAN ALANLARI (HERO SECTIONS)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
    background-clip: text;
    -webkit-animation: radioSignal 4s ease-in-out infinite;
    animation: radioSignal 4s ease-in-out infinite;
}

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

@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;
}

/* İletişim ve Yayınlar Sayfası Hero */
.contact-hero {
    padding: 180px 20px 70px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

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

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

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

.btn {
    padding: 16px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: -webkit-gradient(linear, left top, right top, from(#ffb400), to(#ffcf5c));
    background: -webkit-linear-gradient(left, #ffb400, #ffcf5c);
    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 {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

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

/* ==========================================================================
   7. CANLI YAYIN BİLGİSİ & KARTLAR (INFO / LIVE / CARDS)
   ========================================================================== */
.live-info {
    display: -ms-grid;
    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);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 35px;
    border-radius: 28px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

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

.live-icon {
    width: 85px;
    height: 85px;
    border-radius: 26px;
    background: rgba(255, 180, 0, .12);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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);
    -webkit-animation: canliLamba 1.5s ease-in-out infinite alternate;
    animation: canliLamba 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes canliLamba {
    0% { opacity: 0.6; -webkit-transform: scale(0.95); transform: scale(0.95); }
    100% { opacity: 1; -webkit-transform: scale(1.05); transform: scale(1.05); }
}

@keyframes canliLamba {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

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

.broadcast-grid {
    display: -ms-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;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

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

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

.broadcast-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

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

.broadcast-content {
    padding: 28px;
}

.broadcast-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

/* ==========================================================================
   9. 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);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

.song-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: rotateCover 20s linear infinite;
    animation: rotateCover 20s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

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

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

.song-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

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

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

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

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

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

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

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

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

.category-grid {
    display: -ms-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;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.category-card:hover {
    -webkit-transform: translateY(-8px);
    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: -ms-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;
}

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

.comment-grid {
    display: -ms-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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#ffb400), to(#ffcf5c));
    background: -webkit-linear-gradient(left, #ffb400, #ffcf5c);
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 35px;
}

.comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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;
    -webkit-appearance: none;
    appearance: none;
}

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

.comment-form button {
    height: 58px;
    border: none;
    border-radius: 18px;
    background: -webkit-gradient(linear, left top, right top, from(#ffb400), to(#ffcf5c));
    background: -webkit-linear-gradient(left, #ffb400, #ffcf5c);
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    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;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

/* ==========================================================================
   12. İLETİŞİM ALANI (CONTACT)
   ========================================================================== */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 80px;
    display: -ms-grid;
    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);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 40px;
}

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

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

.contact-icon {
    min-width: 65px;
    height: 65px;
    border-radius: 22px;
    background: rgba(255, 180, 0, .12);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: 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: -ms-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;
    -webkit-appearance: none;
    appearance: none;
}

.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: -webkit-gradient(linear, left top, right top, from(#ffb400), to(#ffcf5c));
    background: -webkit-linear-gradient(left, #ffb400, #ffcf5c);
    background: linear-gradient(135deg, #ffb400, #ffcf5c);
    color: #000;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

/* ==========================================================================
   13. 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

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

/* ==========================================================================
   14. SABİT ALT OYNATICI (FIXED PLAYER BAR) - TEK TANIM
   ========================================================================== */
.player-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #16161a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 30px !important;
    -webkit-box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6) !important;
    z-index: 999999 !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.player-content {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.player-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.player-left img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.player-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.play-btn {
    background: #ffb400;
    border: none;
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.play-btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    background: #e09e00;
}

.volume {
    width: 100px;
    accent-color: #ffb400;
    cursor: pointer;
    -webkit-appearance: slider-horizontal;
    appearance: auto;
}

#mixerBtn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.preset-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #ccc !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 6px !important;
    -webkit-box-flex: 1 1 calc(50% - 4px) !important;
    -ms-flex: 1 1 calc(50% - 4px) !important;
    flex: 1 1 calc(50% - 4px) !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-transition: 0.2s !important;
    transition: 0.2s !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.user-custom-btn {
    background: rgba(255, 180, 0, 0.03) !important;
    border: 1px dashed rgba(255, 180, 0, 0.2) !important;
    color: #ffb400 !important;
    display: none;
}

.preset-btn:hover,
.preset-btn.active {
    background: rgba(255, 180, 0, 0.1) !important;
    border-color: #ffb400 !important;
    color: #ffb400 !important;
}

.toggle-mixer-zone {
    padding: 10px 0;
    margin-bottom: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#saveCurrentMixBtn {
    background: #22c55e !important;
    color: #fff !important;
    border: none !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: none;
    -webkit-transition: 0.2s !important;
    transition: 0.2s !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

#advancedSliders {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 15px;
    margin-top: 5px;
    max-height: 220px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#advancedSliders::-webkit-scrollbar {
    width: 4px;
}

#advancedSliders::-webkit-scrollbar-thumb {
    background: rgba(255, 180, 0, 0.2);
    border-radius: 4px;
}

#anonsBadge {
    display: none;
    background: #22c55e;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 8px;
    -webkit-animation: pulseAnons 1s infinite alternate;
    animation: pulseAnons 1s infinite alternate;
}

@-webkit-keyframes pulseAnons {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

@keyframes pulseAnons {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* ==========================================================================
   15. RADYO TELİF KUTUSU
   ========================================================================== */
.radyo-telif-kutusu {
    position: relative;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(5, 5, 5, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    -webkit-box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
    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;
    -webkit-animation: kutuSinyali 6s ease-in-out infinite;
    animation: kutuSinyali 6s ease-in-out infinite;
}

.radyo-telif-kutusu .kutu-icerik {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.radyo-telif-kutusu .kutu-icerik i {
    font-size: 24px;
    color: #ffcc4d;
    -webkit-animation: pulseIcon 1.5s ease-in-out infinite alternate;
    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;
}

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

@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); }
}

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

@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); }
}

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

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

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

/* ==========================================================================
   17. EFFECT POPUP - MOBİL OPTİMİZASYON
   ========================================================================== */
#effectPopup {
    position: absolute;
    bottom: 95px;
    right: 20px;
    background: rgba(10, 10, 10, 0.96);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 24px;
    width: 320px;
    display: none;
    -webkit-box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
    z-index: 99999;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

@media (max-width: 768px) {
    /* === MOBİL NAVBAR === */
    .menu-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: 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);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 24px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
        display: none;
    }

    .nav-links.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

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

    /* === MOBİL HERO === */
    .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;
    }

    /* === MOBİL PLAYER CARD === */
    .player-card {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        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;
    }

    /* === MOBİL PLAYER BAR - TAMAMEN OPTİMİZE === */
    .player-bar {
        padding: 10px 20px !important;
        padding-bottom: env(safe-area-inset-bottom, 10px) !important;
    }

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

    .player-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        max-width: 45%;
        -ms-flex-negative: 1;
        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;
    }

    .controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: 55%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .play-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    #timeDisplay {
        font-size: 11px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        font-family: monospace !important;
    }

    .volume {
        display: none !important;
    }

    #mixerBtn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

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

    #effectPopup {
        right: 4% !important;
        left: 4% !important;
        width: 92% !important;
        bottom: 80px !important;
    }
}

/* ==========================================================================
   19. TÜM CİHAZLAR İÇİN APPLE OPTİMİZASYONU (WebKit)
   ========================================================================== */
@supports (-webkit-backdrop-filter: blur(1px)) {
    /* Apple cihazlarda GPU hızlandırması */
    .page-transition,
    .bg-animation .circle,
    .player-bar,
    #effectPopup,
    .broadcast-card,
    .comment-box,
    .info-box,
    .live-box,
    .player-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform, opacity;
    }

    /* Safari'de backdrop-filter hafifletme */
    #effectPopup {
        -webkit-backdrop-filter: blur(20px) !important;
        backdrop-filter: blur(20px) !important;
    }

    .navbar,
    .live-box,
    .player-card,
    .info-box,
    .comment-form-box,
    .contact-box {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }

    /* Touch optimizasyonu */
    a,
    button,
    .btn,
    .preset-btn,
    .play-btn,
    #mixerBtn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Scroll optimizasyonu */
    .comment-grid,
    #advancedSliders {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Range slider optimizasyonu */
    input[type="range"] {
        -webkit-appearance: slider-horizontal;
        appearance: auto;
    }
}

/* ==========================================================================
   20. DÜŞÜK PERFORMANS MODU (Çok yavaş cihazlar için)
   ========================================================================== */
.low-performance-mode * {
    -webkit-animation-duration: 0.001s !important;
    animation-duration: 0.001s !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.001s !important;
    transition-duration: 0.001s !important;
}

.low-performance-mode .bg-animation .circle {
    display: none !important;
}

.low-performance-mode #effectPopup {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(10, 10, 10, 0.98) !important;
}

.low-performance-mode .page-transition {
    opacity: 0 !important;
    visibility: hidden !important;
}

.low-performance-mode .navbar,
.low-performance-mode .live-box,
.low-performance-mode .player-card,
.low-performance-mode .info-box,
.low-performance-mode .comment-form-box,
.low-performance-mode .contact-box {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* ==========================================================================
   21. APPLE CİHAZLAR İÇİN ÖZEL DÜZELTMELER
   ========================================================================== */
/* Safari özel seçici (sadece Safari'de çalışır) */
_::-webkit-full-page-media, _:future, :root .safari-only {
    /* Bu boş seçici Safari'yi hedefler */
}

/* Safari'de tüm efektleri hafiflet */
_::-webkit-full-page-media, _:future, :root #effectPopup {
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-transition: all 0.15s ease !important;
    transition: all 0.15s ease !important;
}

_::-webkit-full-page-media, _:future, :root .bg-animation .circle {
    -webkit-animation-duration: 25s !important;
    animation-duration: 25s !important;
}

_::-webkit-full-page-media, _:future, :root .broadcast-card {
    -webkit-transition: -webkit-transform 0.15s ease !important;
    transition: transform 0.15s ease !important;
}

/* Eski Apple cihazları (iPhone 6, 7, 8, SE) için */
@media (max-width: 375px) and (max-height: 667px) {
    #effectPopup {
        -webkit-backdrop-filter: blur(5px) !important;
        backdrop-filter: blur(5px) !important;
        background: rgba(10, 10, 10, 0.95) !important;
    }

    .bg-animation .circle {
        -webkit-animation-duration: 40s !important;
        animation-duration: 40s !important;
    }

    .bg-animation {
        opacity: 0.7 !important;
    }

    .page-transition {
        -webkit-transition-duration: 0.15s !important;
        transition-duration: 0.15s !important;
    }

    .hero h1 {
        font-size: 36px !important;
    }
}