/* =========================================
   1. GLOBAL DƏYİŞƏNLƏR (DESIGN SYSTEM)
========================================= */
:root {
    --primary-bg: #0a0000;
    --gradient-glow: #920e0e;
    --brand-primary: #ff0000;
    --brand-hover: #d00000;
    --text-main: #e0fbfc;
    --text-muted: #a09d9d;
    
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(255, 0, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* =========================================
   2. RESET VƏ ƏSAS DİZAYN (BASE)
========================================= */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box !important; 
    font-family: 'Montserrat', sans-serif; 
}

html { overflow-x: hidden; }

/* MENYU AÇILDIQDA SCROLL-U BAĞLAMAQ ÜÇÜN KLASS */
body.no-scroll {
    overflow: hidden !important;
    touch-action: none;
}

body {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--primary-bg);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::after {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   content: "";
   /* you can control opacity of noise  */
   opacity: .05;  
   z-index: 10000;
   pointer-events: none;
   background: url(noise.gif) ;
}

/* Hərəkətli Qırmızı Arxa Plan */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--gradient-glow) 0%, rgba(10, 0, 0, 0) 60%);
    z-index: -1;
    opacity: 0.7;
    animation: moveGradient 50s ease-in-out infinite;
}

@keyframes moveGradient { 
    0% { transform: translate(0, 0); } 
    25% { transform: translate(-10%, -5%); } 
    50% { transform: translate(10%, 10%); } 
    75% { transform: translate(-10%, 10%); } 
    100% { transform: translate(0, 0); } 
}

.mt-4 { margin-top: 4rem; }
.mt-6 { margin-top: 6rem; }
.text-center { text-align: center; }

/* =========================================
   3. STANDART KOMPONENTLƏR (BUTTONS, INPUTS)
========================================= */
input, textarea { font-family: inherit; transition: var(--transition); }
.form-group input, .form-group textarea { resize: none; width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.45); padding: 1.1rem 1.4rem; color: white; font-size: 0.95rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-primary); }

.submit-btn { max-width: 200px; background: white; color: black; border: none; padding: 1.1rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { background: var(--brand-hover); color: white; transform: translateY(-3px); }

.read-more-btn, .post-link { color: white; text-decoration: none; font-weight: 600; transition: var(--transition); }
.read-more-btn { border-bottom: 2px solid var(--brand-primary); padding-bottom: 2px; }
.read-more-btn:hover, .post-link:hover { color: var(--brand-primary); }

/* =========================================
   4. HEADER VƏ NAVİQASİYA
========================================= */
header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; position: absolute; top: 0; left: 0; width: 100%; z-index: 9999; }
.logo { font-size: 1.5rem; font-weight: 600; display: flex; align-items: center; letter-spacing: -1px; z-index: 10001; text-decoration: none; color: white;} /* z-index artırıldı ki, açıq menyunun üstündə qalsın */
.logo span { font-size: 0.8rem; margin-left: 2px; }
.brand-logo { height: 50px; width: auto; display: block; transition: transform 0.3s ease, filter 0.3s ease; filter: brightness(0) invert(1); }
.logo:hover .brand-logo { transform: scale(1.05); }

@media (min-width: 993px) { nav { position: absolute; left: 50%; transform: translateX(-50%); } }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: var(--transition); }
nav a.active, nav a:hover { color: white; }

.header-right { display: flex; align-items: center; gap: 1.5rem; z-index: 10001; } /* z-index artırıldı */
.lang-dropdown { position: relative; }
.lang-btn { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 4px; transition: var(--transition); user-select: none; }
.lang-btn:hover { color: white; }
.lang-btn span { font-size: 0.6rem; transition: transform 0.3s ease; }
.lang-dropdown.active .lang-btn .arrow { transform: rotate(180deg); }

.lang-menu { position: absolute; top: 150%; right: 0; background: rgba(10, 0, 0, 0.9); border: 1px solid var(--card-border); border-radius: var(--radius-sm); list-style: none; padding: 0.5rem 0; min-width: 70px; text-align: center; backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.lang-dropdown.active .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li a { display: block; padding: 0.6rem 1rem; color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: var(--transition); cursor: pointer; }
.lang-menu li a:hover { background: rgba(255, 255, 255, 0.05); color: white; }

.cta-btn { text-decoration: none; color: white; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.cta-btn:hover { opacity: 0.8; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 10002; } /* z-index artırıldı */
.hamburger span { width: 25px; height: 3px; background-color: white; border-radius: 5px; transition: all 0.3s ease-in-out; }

/* =========================================
   5. ANA SƏHİFƏ (HERO & STATS)
========================================= */
main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 0; text-align: center; z-index: 1;}
.hero { margin-top: 150px; text-align: center; }
.hero h1 { font-size: 4.5rem; font-weight: 800; color: var(--text-main); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem auto; line-height: 1.5; }
.hero .cta-btn { justify-content: center; font-size: 1rem; margin-bottom: 4rem; display: inline-flex;}

.stat-card, .team-card, .review-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); backdrop-filter: blur(10px); transition: var(--transition); }
.stat-card:hover, .review-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.06); }

.stats-container { display: grid; align-items: center; justify-content: center; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem 3rem; max-width: 250px; }
.stat-card h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; color: white; }
.stat-card p { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   6. HAQQIMIZDA (ABOUT) & TEAM
========================================= */
/* =========================================
   HAQQIMIZDA ƏSAS DİZAYN
   ========================================= */
.about-main { padding: 0; display: block; overflow-x: hidden; } /* Daşmanın qarşısını alır */
.about-content { padding: 6rem 0 0 0; width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; box-sizing: border-box; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; text-align: left; padding: 0 20px; box-sizing: border-box; }
.about-img { width: 100%; border-radius: var(--radius-md, 15px); object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: block; }
.about-heading, .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; color: white; }
.about-text { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; margin: 2.5rem 0; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Haqqımızda hissəsi üçün Mobil Yerdəyişmə (Şəkil aşağı, mətn yuxarı) */
@media (max-width: 768px) {
    .about-content {
        padding: 3rem 0 0 0;
    }
    .about-grid {
        display: flex; 
        flex-direction: column-reverse; /* Sağdakı mətni yuxarı qaldırır */
        gap: 2rem;
        padding: 0 15px;
    }
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }
    .about-text {
        text-align: center;
        margin: 1.5rem 0;
    }
    .about-stats {
        gap: 1rem;
    }
    .stat-card {
        text-align: center;
        padding: 15px 10px;
    }
    .stat-card h2 {
        font-size: 1.8rem;
    }
    .about-img {
        margin-top: 1rem;
    }
}


/* =========================================
   YENİ PEŞƏKAR KOMANDA DİZAYNI (Tam Orijinal)
   ========================================= */
.team-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.team-subtitle {
    font-size: 16px;
    color: #777;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.team-card {
    background-color: #0d0d0d50;
    background-image: radial-gradient(circle at top right, rgba(255, 0, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 0, 0, 0.05) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04)
        1px, transparent 1px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Hover effekt */
.team-card:hover {
    transform: translateY(-4px); border-color: var(--card-border-hover); 
}

/* IMAGE */
.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

/* TEXT */
.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: #888;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .team-subtitle {
        font-size: 14px;
    }

    .team-card {
        padding: 15px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .team-section {
        padding: 40px 15px;
    }

    .team-grid {
        gap: 20px;
    }
}
/* =========================================
   7. XİDMƏTLƏR (BENTO BOX)
========================================= */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 4rem auto; }
.service-card { background-color: #0d0d0d50; background-image: radial-gradient(circle at top right, rgba(255, 0, 0, 0.08) 0%, transparent 60%), radial-gradient(circle at bottom left, rgba(255, 0, 0, 0.05) 0%, transparent 60%), linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px; background-position: top right, bottom left, center, center; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2.5rem; text-align: left; position: relative; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); border-color: var(--card-border-hover); }
.srv-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.srv-header svg { width: 26px; height: 26px; }
.srv-header h3 { font-size: 1.4rem; color: white; font-weight: 700; }
.text-red { color: var(--brand-primary); }
.srv-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.srv-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; position: relative; z-index: 2; }
.srv-list li { color: #ccc; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.srv-list .check { color: var(--brand-primary); font-weight: bold; }

.fake-search { background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; padding: 0.7rem 1.2rem; display: flex; align-items: center; gap: 10px; color: white; font-size: 0.9rem; margin-bottom: 1.5rem; width: 80%; }
.fake-search svg { width: 18px; height: 18px; color: #999; }
.srv-graph-bg { position: absolute; bottom: 0; right: -20px; width: 60%; height: 120px; opacity: 0.8; z-index: 1; }
.flex-layout { display: flex; gap: 2rem; align-items: center; flex: 1; }
.layout-bottom { align-items: flex-end; }
.flex-right { flex: 1; display: flex; }
.shield-graphic, .profile-graphic { position: relative; height: 120px; display: flex; align-items: center; justify-content: center; }
.profile-graphic { width: 110px; height: 110px; }
.main-shield { width: 80px; height: 80px; filter: drop-shadow(0 0 15px rgba(255,0,0,0.4)); }
.mini-srv { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.5rem; }
.mini-srv:last-child { margin-bottom: 0; }
.mini-srv svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 4px; }
.mini-content h4 { color: white; font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 700;}
.mini-content p { color: #999; font-size: 0.85rem; line-height: 1.5; }
.grey-avatar { width: 100px; height: 100px; }
.red-shield-icon { position: absolute; bottom: 5px; right: 5px; width: 38px; height: 38px; filter: drop-shadow(0 4px 10px rgba(255,0,0,0.5)); }

/* =========================================
   8. SƏNƏTÇİLƏR VƏ MUSİQİ 
========================================= */
.top-songs-section { width: 100%; margin: 6rem auto 2rem auto; }
.songs-list-container { display: flex; flex-direction: column; gap: 0.5rem; }
.song-item { display: flex; align-items: center; padding: 1rem 1.5rem; background: transparent; border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; text-decoration: none !important; border: none !important;}
.song-item:hover { background: rgba(255, 255, 255, 0.05); transform: translateX(5px); }
.song-item *, .song-rank, .song-title { text-decoration: none !important; border: none !important; }

.song-rank { font-size: 1.5rem; font-weight: 800; color: rgba(255, 255, 255, 0.2); width: 40px; margin-right: 1rem; text-align: left; transition: var(--transition); }
.song-item:hover .song-rank { color: var(--brand-primary); transform: scale(1.1); }
.song-cover { width: 55px; height: 55px; border-radius: 8px; object-fit: cover; margin-right: 1.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.song-info { flex-grow: 1; text-align: left; }
.song-title { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.song-artist { color: var(--text-muted); font-size: 0.9rem; }
.song-views { color: var(--text-muted); font-size: 0.95rem; font-weight: 600; margin-right: 1.5rem; min-width: 50px; text-align: right; letter-spacing: 0.5px; }
.song-play-btn { background: transparent; border: none; color: rgba(255, 255, 255, 0.3); width: 45px !important; height: 45px !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.song-play-btn svg { width: 24px; height: 24px; }
.song-item:hover .song-play-btn { color: white; background: var(--brand-primary); box-shadow: 0 0 15px rgba(255, 0, 0, 0.4); }

.partners-main { padding: 2rem 0 6rem; width: 100%; }
.artists-grid-modern { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.5rem; margin-top: 3rem; }
.artist-modern-card { display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.artist-img-wrapper { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.artist-img-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform 0.6s ease, filter 0.6s ease; }
.artist-modern-card:hover .artist-img-wrapper img { transform: scale(1.08); filter: grayscale(0%); }
.artist-socials-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem 0 1rem 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; justify-content: center; gap: 0.8rem; opacity: 0; transform: translateY(20px); transition: var(--transition); }
.artist-modern-card:hover .artist-socials-overlay { opacity: 1; transform: translateY(0); }
.social-icon-minimal { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); }
.social-icon-minimal svg { width: 18px; height: 18px; }
.social-icon-minimal:hover { background: var(--brand-primary); transform: scale(1.1); }
.artist-name-modern { color: white; font-size: 1.1rem; font-weight: 700; text-align: center; letter-spacing: 0.5px; transition: var(--transition); }
.artist-modern-card:hover .artist-name-modern { color: var(--brand-primary); }

/* =========================================
   9. RƏYLƏR (SLIDER)
========================================= */

.reviews-section {
    width: 100%;
}

.premium-slider-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center; /* Pəncərəni tam mərkəzə sıxır */
}

.premium-slider-viewport {
    padding: 10px 0;
    overflow: hidden; /* Bu pəncərədən kənara çıxan HƏR ŞEYİ gizlədir */
    /* Genişliyini JS tam olaraq 4 kart + boşluqlar qədər təyin edəcək */
}

.premium-slider-track {
    display: flex;
    gap: 20px; /* Kartlar arası məsafə */
    width: max-content;
}

.premium-review-card {
    flex-shrink: 0; 
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.premium-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
}

.quote-icon { font-size: 35px; color: var(--brand-primary); line-height: 1; opacity: 0.5; }
.review-text { font-size: 15px; color: #cccccc; line-height: 1.6; margin-bottom: 25px; font-style: italic; }
.reviewer-info { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }
.reviewer-name { font-size: 16px; color: #ffffff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; font-weight: 700;}
.verify-badge { background-color: var(--brand-primary); color: white; font-size: 10px; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; }

/* =========================================
   10. ƏLAQƏ SƏHİFƏSİ
========================================= */
.contact-main { padding: 0; display: flex; flex-direction: column; align-items: center; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 5rem; width: 100%; }
.contact-info { text-align: left; }
.contact-tag { color: rgba(255,255,255,0.47); font-size: 1rem; font-weight: 600; letter-spacing: 2px; margin-bottom: 10px; transition: opacity 0.5s ease;}
.contact-title { color: white; font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
.contact-desc { color: var(--text-muted); line-height: 1.8; font-size: 1rem; margin-bottom: 40px; }

.info-list-simple { display: flex; flex-direction: column; gap: 2rem; }
.info-item-simple h4 { color: white; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.info-item-simple p { color: var(--text-muted); font-size: 1rem; }
.social-links-contact { display: flex; gap: 1rem; margin-top: 0.8rem; }
.social-icon-btn { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.5); transition: var(--transition); }
.social-icon-btn svg { width: 20px; height: 20px; }
.social-icon-btn:hover { color: white; transform: translateY(-3px); }

.contact-form-wrapper { background-color: #0d0d0d67; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 3.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.contact-form { display: flex; flex-direction: column; gap: 15px; }

.map-section { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--card-border); filter: grayscale(100%) invert(90%) contrast(90%); opacity: 0.8; transition: var(--transition); }
.map-section:hover { filter: grayscale(0%) invert(0%); opacity: 1; }

/* =========================================
   11. FOOTER (TAM ORİJİNAL DİZAYNINA QAYTARILDI)
========================================= */
footer { 
    margin-top: 50px;
    padding: 4rem 5% 2rem; 
    border-top: 1px solid var(--card-border); 
    background: linear-gradient(to top, rgba(10, 0, 0, 0.8), transparent); 
    z-index: 1; 
    width: 100%;
}
.footer-content { 
    display: flex; 
    justify-content: space-between; 
    gap: 4rem; 
    margin-bottom: 3rem; 
    flex-wrap: wrap; 
    max-width: 1400px; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: left;
}
.footer-brand { flex: 1; min-width: 250px; max-width: 320px; }
.footer-brand h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icons svg { width: 18px; height: 18px; fill: white; transition: var(--transition); cursor: pointer; }
.social-icons svg:hover { opacity: 0.7; transform: translateY(-2px); }

.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.link-col { display: flex; flex-direction: column; gap: 1rem; min-width: 120px; }
.link-col h4 { font-size: 0.85rem; letter-spacing: 1.5px; margin-bottom: 0.5rem; color: white; text-transform: uppercase; }
.link-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.link-col a:hover { color: white; }

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding-top: 2rem; 
    display: flex; 
    justify-content: flex-start; 
    max-width: 1400px; 
    margin: 0 auto;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* =========================================
   12. BLOQ (AĞ MÖVZU)
========================================= */
.blog-single-main {
        padding-top: 130px; 
    }
    
    /* Mobil telefonlar üçün (Ekran genişliyi 768px-dən kiçik olanda) */
    @media (max-width: 768px) {
        .blog-single-main {
            padding-top: 150px; /* Telefon üçün hündürlüyü buradan tənzimləyə bilərsən */
        }
        .blog-single-content{
            padding: 0 20px; /* Telefon üçün yan boşluqları buradan tənzimləyə bilərsən */
        }
    }
body.light-page, body.light-page #nav-menu{ background-color: #ffffff; color: #111111; }
body.light-page::before { display: none; }
body.light-page header { background-color: rgb(255, 255, 255) !important; backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
body.light-page .logo { color: #000000; }
body.light-page nav a { color: #666666; }
body.light-page nav a.active, body.light-page nav a:hover { color: var(--brand-primary); }
body.light-page .lang-btn { color: #333333; }
body.light-page .header-cta { color: #ffffff; background-color: var(--brand-primary); padding: 10px 24px; border-radius: 50px; }
body.light-page .hamburger span { background-color: #000000; }
body.light-page footer { background: #f9f9f9; border-top: 1px solid #eaeaea; }
body.light-page .footer-brand h3, body.light-page .link-col h4 { color: #111111; }
body.light-page .footer-brand p, body.light-page .link-col a, body.light-page .footer-bottom p { color: #666666; }
body.light-page .link-col a:hover { color: var(--brand-primary); }
body.light-page .social-icons svg { fill: #111111; }
body.light-page .social-icons svg:hover { fill: var(--brand-primary); }
body.light-page .brand-logo { filter: brightness(0) invert(0); }

.blog-main { width: 100%; }
.blog-hero-slider { position: relative; width: 100%; height: 500px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 4rem; }
.blog-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.5s ease-in-out; display: flex; align-items: flex-end; }
.blog-slide.active { opacity: 1; z-index: 1; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.slide-content { text-align: left; position: relative; z-index: 2; padding: 3rem 5rem; max-width: 800px; }
.blog-tag { background: var(--brand-primary); color: white; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; display: inline-block; margin-bottom: 1rem; }
.slide-content h1 { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 0.8rem; line-height: 1.2; }
.slide-content p { color: #cccccc; font-size: 1rem; margin-bottom: 1.5rem; }

.blog-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 3; backdrop-filter: blur(5px); transition: var(--transition); }
.blog-arrow:hover { background: var(--brand-primary); }
.left-arrow { left: 20px; } .right-arrow { right: 20px; }
.blog-dots { position: absolute; bottom: 20px; right: 30px; z-index: 3; display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--brand-primary); transform: scale(1.3); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card { background: #fff; border: 1px solid #eaeaea; border-radius: 12px; overflow: hidden; transition: var(--transition); text-decoration: none;}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.post-card img { width: 100%; height: 200px; object-fit: cover; }
.post-info { display: flex; flex-direction: column; justify-content: space-between; text-align: left; padding: 1.5rem; }
.post-info .post-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.post-info p { margin-bottom: 1rem; color: #00000080; }
.post-date { color: #000000; font-size: 0.8rem; display: block; }
.post-info h3 { font-size: 1.1rem; color: #111; margin-bottom: 0.5rem; line-height: 1.4; }

/* =========================================
   13. QLOBAL GENİŞLİK VƏ BOŞLUQLAR (XİLASEDİCİ KOD)
========================================= */
/* Slayder və Footer-dən başqa bütün əsas qutuları mərkəzə yığır */
.stats-container, .about-grid, .team-grid, .service-grid, 
.partners-main, .blog-main, .contact-container, 
.map-section, .page-banner, .hero, .top-songs-section, 
.artists-grid-modern, .recent-posts-section, .trends-container, 
.hero-slide-content {
    max-width: 1400px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* =========================================
   14. ORTAQ SƏHİFƏ BAŞLIQLARI (PAGE BANNER)
========================================= */
.page-banner { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 0 3rem; text-align: center; }
.page-banner h1 { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 0.8rem; text-transform: capitalize; }
.page-banner p { color: var(--text-muted); font-size: 1.1rem; max-width: 800px; line-height: 1.6;}

/* =========================================
   15. TRENDLƏR SƏHİFƏSİ (SLAYDER VƏ LİSTLƏR)
========================================= */
/* --- HERO SLIDER --- */
.full-hero-slider { 
    width: 100%; 
    height: 85vh; 
    min-height: 500px; 
    position: relative; 
    overflow: hidden; 
    margin-top: 0; 
}

.slider-track { 
    display: flex; 
    overflow-x: auto; 
    overflow-y: hidden; 
    scroll-snap-type: x mandatory; 
    width: 100%; 
    height: 100%; 
    scrollbar-width: none; 
    gap: 0; 
}
.slider-track::-webkit-scrollbar { display: none; } 

.hero-slide { 
    flex: 0 0 100%; 
    width: 100%; 
    height: 100%; 
    scroll-snap-align: center; 
    position: relative; 
    display: block; 
    text-decoration: none; 
}

.hero-slide-overlay-blog { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 20%), 
                linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); 
    display: flex; 
    align-items: flex-end; 
}

.hero-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.6; 
    transition: transform 0.8s ease, opacity 0.8s ease; 
}

.hero-slide-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: flex-end; 
}

.hero-slide-content { 
    padding-bottom: 5rem !important;
}

.trend-tag { 
    background: var(--brand-primary); 
    color: white; 
    padding: 6px 14px; 
    border-radius: 4px; 
    font-size: 0.85rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    display: inline-block; 
    margin-bottom: 1rem; 
    box-shadow: 0 4px 15px rgba(255,0,0,0.4); 
}

.hero-slide-content h1 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: white; 
    margin-bottom: 0.5rem; 
    line-height: 1.1; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.6); 
}

.hero-slide-content p { 
    font-size: 1.1rem; 
    color: rgba(255, 255, 255, 0.74); 
    font-weight: 400; 
}

/* --- SECTION HEADERS --- */
.section-header { 
    margin: 3rem 0 1.5rem 0; 
    border-left: 4px solid var(--brand-primary); 
    padding-left: 15px; 
    text-align: left; 
}
.section-header h2 { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: white; 
    margin-bottom: 5px; 
}
.section-header p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
}

/* --- GRID 16:9 (WEEKLY TRENDS) --- */
.grid-16-9 { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 1.5rem; 
}

.trend-card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    transition: var(--transition); 
    backdrop-filter: blur(10px); 
    display: flex; 
    flex-direction: column; 
    text-decoration: none; 
}

.trend-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--card-border-hover); 
    box-shadow: 0 10px 30px rgba(255,0,0,0.1); 
}

.card-img-box { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    background: #000; 
}

.img-wide { 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    object-fit: cover; 
    transition: var(--transition); 
    display: block;
}

.trend-card:hover img { 
    transform: scale(1.05); 
    opacity: 0.9; 
}

.rank-badge { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    background: rgba(0,0,0,0.7); 
    color: white; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-weight: 800; 
    font-size: 0.9rem; 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255,255,255,0.1); 
    z-index: 2; 
}

.card-info { 
    padding: 1.2rem; 
    text-align: left; 
}

.card-info h4 { 
    margin: 0 0 6px 0; 
    font-size: 1rem; 
    color: white; 
    font-weight: 700; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}

.card-info .artist { 
    margin: 0 0 8px 0; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    font-weight: 600; 
}

.card-info .views { 
    margin: 0; 
    font-size: 0.8rem; 
    color: var(--brand-primary); 
    font-weight: 700; 
}

/* --- SIDE BY SIDE LISTS (TOP 5) --- */
.side-by-side-lists {
    width: 100%; 
    max-width: 1400px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    padding-left: 5% !important; 
    padding-right: 5% !important;
}
.list-column { display: flex; flex-direction: column; gap: 1rem; }

/* =========================================
   MOBIL CİHAZLAR ÜÇÜN RESPONSIVE DÜZƏLİŞLƏR
   ========================================= */

@media (max-width: 768px) {
    .hero-slide-content h1 {
        font-size: 2.2rem; /* Başlığı mobildə kiçiltdik */
    }
    
    .side-by-side-lists {
        grid-template-columns: 1fr; /* Siyahıları alt-alta saldıq */
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    /* Həftəlik Trendlərin 2-2 düzülməsi */
    .grid-16-9 {
        grid-template-columns: 1fr 1fr; /* Məhz bura 2-2 düzülməni təmin edir */
        gap: 10px;
        padding: 0 10px;
    }

    .trend-card {
        border-radius: 12px;
    }

    .card-info {
        padding: 0.8rem;
    }

    .card-info h4 {
        font-size: 0.85rem;
        -webkit-line-clamp: 2; /* Maksimum 2 sətir */
    }

    .rank-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }

    .hero-slide-content {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-bottom: 3rem !important;
    }

    .hero-slide-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
}

/* =========================================
   16. BLOQ - ƏTRAFLI SƏHİFƏSİ
========================================= */
.blog-single-header { text-align: center; margin-bottom: 3rem; }
.blog-single-header h1 { font-size: 3rem; font-weight: 800; color: var(--text-dark); margin: 1.5rem 0; line-height: 1.2; }
.single-tag { background: #ff0000; color: white; padding: 0.5rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;}
.single-date { color: var(--text-muted); font-size: 1rem; font-weight: 600; display: block; margin-top: 1rem; }

.blog-single-img { width: 100%; max-height: 600px; object-fit: cover; border-radius: 20px; margin-bottom: 4rem; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.blog-single-content { font-size: 1.25rem; line-height: 2; color: #333; max-width: 900px; margin: 0 auto; text-align: left; }
.blog-single-content p { margin-bottom: 1.8rem; }
.blog-single-content h2, .blog-single-content h3 { margin: 3rem 0 1.5rem 0; color: #111; font-weight: 800; }
.blog-single-content ul, .blog-single-content ol { margin-left: 2rem; margin-bottom: 2rem; }
.blog-single-content li { margin-bottom: 0.8rem; }
.blog-single-content strong { color: #000; }
.blog-single-content blockquote { border-left: 5px solid #ff0000; padding-left: 1.5rem; font-style: italic; color: #555; background: #f9f9f9; padding: 1.5rem; margin-bottom: 2rem; border-radius: 0 12px 12px 0;}

body:not(.light-page) .blog-single-header h1 { color: white; }
body:not(.light-page) .blog-single-content { color: #ddd; }
body:not(.light-page) .blog-single-content h2, 
body:not(.light-page) .blog-single-content h3,
body:not(.light-page) .blog-single-content strong { color: white; }
body:not(.light-page) .blog-single-content blockquote { background: #222; color: #ccc; }

/* Axtarış Qutusu Dizaynı */
.search-wrapper { position: relative; width: 100%; max-width: 600px; margin: 2rem auto; padding: 0 1rem; box-sizing: border-box; }
.search-form { display: flex; width: 100%; position: relative; z-index: 10; }

/* min-width: 0 kodu kənara daşmanın qarşısını alır */
.search-form input { flex: 1; min-width: 0; padding: 14px 20px; border: 2px solid #eaeaea; border-radius: 30px 0 0 30px; font-size: 16px; outline: none; transition: border-color 0.3s; font-family: 'Montserrat', sans-serif; box-sizing: border-box; }
.search-form input:focus { border-color: var(--brand-primary, #e60000); }

/* white-space: nowrap yazının alt sətrə düşməsini əngəlləyir */
.search-form button { padding: 14px 28px; background: var(--brand-primary, #e60000); color: white; border: none; border-radius: 0 30px 30px 0; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; font-family: 'Montserrat', sans-serif; white-space: nowrap; box-sizing: border-box; }
.search-form button:hover { background: #cc0000; }

/* Dropdown Nəticələr Dizaynı */
.search-dropdown { position: absolute; top: 100%; left: 1rem; right: 1rem; background: white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 10px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 9; overflow: hidden; border: 1px solid #f0f0f0; }
.search-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #f5f5f5; text-decoration: none; color: #111; transition: background 0.2s; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: #f9f9f9; }
.dropdown-img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.dropdown-text h4 { margin: 0; font-size: 14px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.dropdown-text span { font-size: 11px; color: #888; font-weight: 600; text-transform: uppercase; }
.dropdown-empty { padding: 16px; text-align: center; color: #888; font-size: 14px; }

/* Pagination Dizaynı */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 3rem 0; flex-wrap: wrap; }
.page-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f5f5f5; color: #333; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.page-link:hover { background: #e0e0e0; }
.page-link.active { background: var(--brand-primary, #e60000); color: white; }
.page-link.wide { width: auto; padding: 0 20px; border-radius: 20px; }

/* =========================================
   Mobil Cihazlar Üçün Xüsusi Ölçüləndirmə 
   ========================================= */
@media (max-width: 480px) {
    .search-wrapper {
        padding: 0 10px; /* Mobildə kənar boşluqları azaltdıq */
    }
    .search-form input {
        padding: 12px 14px;
        font-size: 16px; /* Yazı ölçüsünü ekrana uyğunlaşdırdıq */
    }
    .search-form button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* =========================================
   17. BLOQ ƏTRAFLI SƏHİFƏSİ ÜÇÜN DİZAYNLAR
========================================= */

/* Navbar-ın məqalənin üstünü örtməməsi üçün dinamik boşluq */
.blog-single-main {
    padding-top: 130px; 
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .blog-single-main {
        padding-top: 80px; 
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Əlaqəli Bloqlar Dizaynı */
.related-blogs-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}
.related-blogs-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 800;
}
.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.related-blog-card {
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f9f9f9;
}
.related-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.15);
    border-color: #ffeeee;
}
.related-blog-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.related-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.related-content h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #111;
    line-height: 1.4;
}
.related-content span {
    font-size: 12px;
    color: #888;
}

/* =========================================
   ANA SƏHİFƏ - SON BLOQLAR (TÜND TEMA ÜÇÜN)
========================================= */
.blog-page-header {
    text-decoration: none;
}
.blog-page-header h1{
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}
.blog-page-header p{
    font-size: 16px;
    color: #777;
}

.home-latest-blogs {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
}

.home-latest-blogs .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1rem;
}

.home-latest-blogs h2 {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin: 0;
}

.view-all-btn {
    font-size: 0.95rem;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-btn:hover {
    color: var(--brand-hover);
    transform: translateX(5px);
}

.blogs-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.home-blog-card {
    background: var(--card-bg); /* Sənin premium qaranlıq arxaplanın */
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.home-blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.home-blog-img-box {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.home-blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-blog-card:hover .home-blog-img-box img {
    transform: scale(1.08);
}

.home-blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.home-blog-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.home-blog-title {
    text-align: left;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.5;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.home-blog-card:hover .home-blog-title {
    color: var(--brand-primary);
}

.home-blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Telefon və Planşet Uyğunluğu */
@media (max-width: 992px) {
    .home-latest-blogs h2 { font-size: 1.8rem; }
    .blogs-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .blogs-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .home-blog-img-box { height: 140px; }
    .home-blog-title { font-size: 1rem; }
}

@media (max-width: 480px) {
    .blogs-grid-5 { grid-template-columns: 1fr; }
}
/* =========================================
   18. GLOBAL RESPONSİV QAYDALARI (MEDIA QUERIES)
========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; } 
    .stats-container, .service-grid { grid-template-columns: repeat(2, 1fr); }
    .hamburger { display: flex; } .header-cta { display: none; }
    .footer-content { flex-direction: column; gap: 3rem; } 
    .footer-links { width: 100%; justify-content: space-between; gap: 2rem;}
    
    nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100dvh; background-color: var(--primary-bg); display: flex; align-items: center; justify-content: center; transition: right 0.4s ease-in-out; }
    nav ul { flex-direction: column; gap: 2.5rem; text-align: center; }
    nav a { display: flex; align-items: end; justify-content: center; font-size: 1.2rem; text-align: center; } nav.active { right: 0; }
    
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .about-col { display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .about-grid, .contact-container, .service-grid { grid-template-columns: 1fr; gap: 3rem; }
    .page-banner h1, .contact-title { font-size: 2.8rem; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-content h1 { font-size: 2rem; }
    .side-by-side-lists { grid-template-columns: 1fr; gap: 4rem; } 
    .hero-slide-content h1 { font-size: 2.2rem; }
    .full-hero-slider { height: 50vh; min-height: 300px; }
}

@media (max-width: 768px) {
    .slider-wrapper { width: 350px; }
    .artists-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 600px) {
    header { padding: 1.5rem 5%; } 
    .hero h1 { font-size: 2.5rem; } 
    .hero p { font-size: 0.95rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .header-right { gap: 1rem; } 
    .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { max-width: 100%; } 
    .link-col { min-width: auto; }
    
    .service-card { padding: 1.5rem; }
    .flex-layout { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .flex-right { justify-content: flex-start; }
    .fake-search { width: 100%; }
    .srv-graph-bg { width: 100%; right: 0; opacity: 0.4;}
    
    .song-item { padding: 0.8rem 1rem; }
    .song-rank { font-size: 1.2rem; width: 30px; margin-right: 0.5rem; }
    .song-cover { width: 45px; height: 45px; margin-right: 1rem; }
    .song-title { font-size: 1rem; }
    .song-artist { font-size: 0.8rem; }
    .song-play-btn { width: 30px; height: 30px; }
    .song-play-btn svg { width: 18px; height: 18px; }
    .song-views { font-size: 0.8rem; margin-right: 0.8rem; min-width: 40px; }
    
    .posts-grid { grid-template-columns: 1fr; }
    .blog-hero-slider { height: 400px; }
    .slide-content { padding: 2rem; }
    .slide-content h1 { font-size: 1.5rem; }
    
    .hero-slide-content h1 { font-size: 1.8rem; }
    .hero-slide-content p { font-size: 0.9rem; }
    .hero-slide-content { padding-bottom: 3rem !important; }
}

@media (max-width: 480px) {
    /* Statistika (250+ vs) telefonda da 2x2 qaldı! */
    .slider-wrapper { width: 300px; }
    .review-card { width: 300px; padding: 2rem 1.5rem; }
    .artists-grid-modern { grid-template-columns: repeat(1, 1fr); }
    .service-grid { grid-template-columns: 1fr; } 
}