/* Font Face Definitions */
@font-face {
    font-family: 'Al Jazeera';
    src: url('assets/fonts/al-jazeera-arabic-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Al Jazeera';
    src: url('assets/fonts/al-jazeera-arabic-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --bg-dark-emerald: #061D12;
    --bg-emerald-deep: #0B2B1B;
    --bg-emerald-mid: #103D27;
    --bg-royal-blue: #0A162B;
    
    /* Gold Gradients & Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F3E0AA;
    --gold-dark: #A8811A;
    --gold-bright: #FFDF00;
    --gold-gradient: linear-gradient(135deg, #F5E6AD 0%, #D4AF37 50%, #997415 100%);
    --gold-gradient-glow: linear-gradient(135deg, rgba(243,224,170,0.8) 0%, rgba(212,175,55,0.8) 50%, rgba(168,129,26,0.8) 100%);
    
    /* Text Colors */
    --text-primary: #FAF8F2;
    --text-secondary: #E3DBCA;
    --text-muted: #B8AC97;
    
    /* Glassmorphism & UI Elements */
    --glass-bg: rgba(11, 43, 27, 0.55);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-border-hover: rgba(212, 175, 55, 0.6);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Al Jazeera', 'Amiri', 'Traditional Arabic', serif;
    --font-body: 'Cairo', system-ui, sans-serif;
    --font-kufi: 'Reem Kufi', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-emerald);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.7;
    direction: rtl;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, #0E3924 0%, #061D12 70%, #030F09 100%);
}

/* --------------------------------------------------------------------------
   Background Effects (Canvas, Patterns, Orbs)
   -------------------------------------------------------------------------- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Cpath d='M40 10l30 30-30 30-30-30z' fill='none' stroke='%23D4AF37' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Cpath d='M0 0l80 80M80 0L0 80' stroke='%23D4AF37' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 2;
    pointer-events: none;
    animation: floatOrb 12s infinite alternate ease-in-out;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.15);
    top: -100px;
    right: 15%;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(16, 61, 39, 0.4);
    bottom: -150px;
    left: 10%;
    animation-delay: -4s;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(10, 22, 43, 0.5);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
    100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   Main Container
   -------------------------------------------------------------------------- */
.main-container {
    position: relative;
    z-index: 10;
    width: 92%;
    max-width: 860px;
    margin: 40px auto;
    padding: 45px 35px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    animation: fadeInContainer 1.2s ease-out forwards;
}

@keyframes fadeInContainer {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --------------------------------------------------------------------------
   Header / Logo Section
   -------------------------------------------------------------------------- */
.header-section {
    margin-bottom: 25px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.9; }
}

.logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    max-width: 235px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-logo:hover {
    transform: scale(1.04);
}

.manuscript-wrapper {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-manuscript {
    max-width: 92%;
    width: 520px;
    height: auto;
    /* Inverts black calligraphy to brilliant white with a glowing gold aura */
    filter: invert(1) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.site-manuscript:hover {
    filter: invert(1) drop-shadow(0 0 22px rgba(212, 175, 55, 0.9)) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   Arabesque Dividers
   -------------------------------------------------------------------------- */
.arabesque-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    color: var(--gold-primary);
}

.arabesque-divider .line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.arabesque-divider .star {
    font-size: 1.3rem;
    color: var(--gold-light);
    animation: rotateStar 20s linear infinite;
}

.arabesque-divider .diamond {
    font-size: 0.6rem;
    opacity: 0.7;
}

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

.mini-divider {
    margin: 30px 0 15px 0;
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Content Card (Main Announcement)
   -------------------------------------------------------------------------- */
.content-card {
    padding: 20px 10px;
}

.badge-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.moon-icon {
    color: var(--gold-bright);
    font-size: 0.85rem;
    animation: pulseMoon 2s infinite alternate;
}

@keyframes pulseMoon {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.highlight-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.description-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-secondary);
    background: rgba(6, 29, 18, 0.4);
    border-right: 3px solid var(--gold-primary);
    border-left: 3px solid var(--gold-primary);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0 15px 0;
    max-width: 90%;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

/* --------------------------------------------------------------------------
   Live Radio Player Section
   -------------------------------------------------------------------------- */
.radio-section {
    margin-top: 30px;
    text-align: right;
}

.radio-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(10, 35, 23, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.live-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    animation: livePulse 1.8s infinite;
}

.live-pulse-dot.offline {
    background: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
    animation: none;
}

@keyframes livePulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.radio-player-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 55, 36, 0.75) 0%, rgba(8, 30, 20, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 22px 26px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.radio-player-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.18);
}

.radio-player-card.playing {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, rgba(18, 62, 41, 0.85) 0%, rgba(10, 35, 23, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
}

.player-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Artwork Box */
.player-artwork-box {
    position: relative;
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.35);
    animation: spinRing 12s linear infinite;
    animation-play-state: paused;
    transition: border-color 0.3s ease;
}

.playing .player-ring {
    animation-play-state: running;
    border-color: var(--gold-bright);
    border-style: solid;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

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

.player-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #061D12;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta Details */
.player-meta-box {
    flex: 1;
    min-width: 180px;
    text-align: right;
}

.player-station-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.listeners-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 1px 8px;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.player-track-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.player-track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

/* Visualizer */
.player-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.playing .player-visualizer {
    opacity: 1;
}

.vis-bar {
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    height: 3px;
    transition: height 0.2s ease;
}

.playing .vis-bar {
    animation-name: soundWave;
    animation-duration: 1.1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.vis-bar.bar-1  { animation-delay: 0.1s; }
.vis-bar.bar-2  { animation-delay: 0.4s; }
.vis-bar.bar-3  { animation-delay: 0.2s; }
.vis-bar.bar-4  { animation-delay: 0.6s; }
.vis-bar.bar-5  { animation-delay: 0.3s; }
.vis-bar.bar-6  { animation-delay: 0.8s; }
.vis-bar.bar-7  { animation-delay: 0.5s; }
.vis-bar.bar-8  { animation-delay: 0.2s; }
.vis-bar.bar-9  { animation-delay: 0.7s; }
.vis-bar.bar-10 { animation-delay: 0.4s; }
.vis-bar.bar-11 { animation-delay: 0.1s; }
.vis-bar.bar-12 { animation-delay: 0.5s; }

@keyframes soundWave {
    0% { height: 3px; }
    50% { height: 16px; }
    100% { height: 3px; }
}

/* Controls Box */
.player-controls-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: auto;
}

.btn-play-radio {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #061D12;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-play-radio:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-play-radio .play-icon {
    display: block;
    margin-right: -2px;
}

.btn-play-radio .pause-icon {
    display: none;
}

.btn-play-radio.playing .play-icon {
    display: none;
}

.btn-play-radio.playing .pause-icon {
    display: block;
}

.player-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 5px 10px;
}

.btn-volume-toggle {
    background: none;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-volume-toggle:hover {
    color: var(--gold-bright);
}

.volume-range {
    width: 65px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
    transition: transform 0.2s ease;
}

.volume-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.btn-visit-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-visit-radio:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold-bright);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* --------------------------------------------------------------------------
   Sub-sites & Links Section
   -------------------------------------------------------------------------- */
.links-section {
    margin-top: 35px;
    text-align: right;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 5px;
}

.title-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(10, 35, 23, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
    transition: right 0.6s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    background: rgba(16, 55, 36, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.project-card:hover::before {
    right: 100%;
}

.card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.gold-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-bright);
}

.radio-card-icon {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.4);
    color: #55efc4;
}

.project-card:hover .card-icon {
    background: var(--gold-gradient);
    color: #061D12;
    border-color: var(--gold-bright);
    transform: scale(1.05);
}

.card-content {
    flex: 1;
}

.card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.card-arrow {
    font-size: 1rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.project-card:hover .card-arrow {
    transform: translateX(-6px);
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Social Media Accounts Section
   -------------------------------------------------------------------------- */
.social-section {
    margin-top: 35px;
    text-align: right;
}

.social-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 5px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background: rgba(10, 35, 23, 0.65);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    background: rgba(16, 55, 36, 0.85);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-light);
    transition: all 0.35s ease;
}

.social-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-card:hover .social-name {
    color: var(--gold-light);
}

/* Brand-specific Hover Animations */
.facebook:hover .social-icon {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
    box-shadow: 0 0 18px rgba(24, 119, 242, 0.6);
}

.instagram:hover .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    border-color: #e6683c;
    box-shadow: 0 0 18px rgba(220, 39, 67, 0.6);
}

.twitter-x:hover .social-icon {
    background: #000000;
    color: #ffffff;
    border-color: var(--gold-primary);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
}

.telegram:hover .social-icon {
    background: #229ED9;
    color: #ffffff;
    border-color: #229ED9;
    box-shadow: 0 0 18px rgba(34, 158, 217, 0.6);
}

.youtube:hover .social-icon {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.tiktok:hover .social-icon {
    background: #000000;
    color: #00f2fe;
    border-color: #ff0050;
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.5);
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.footer-section {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-section strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .main-container {
        padding: 35px 20px;
        width: 95%;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .description-text {
        font-size: 1.2rem;
        padding: 10px 16px;
    }

    .player-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .player-meta-box {
        text-align: center;
        min-width: unset;
        width: 100%;
    }

    .player-station-badge {
        justify-content: center;
    }

    .player-track-title, .player-track-artist {
        max-width: 100%;
    }

    .player-visualizer {
        justify-content: center;
    }

    .player-controls-box {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 25px 15px;
    }

    .site-logo {
        max-width: 190px;
    }

    .site-manuscript {
        width: 100%;
    }

    .main-heading {
        font-size: 1.5rem;
    }

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

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .social-card {
        padding: 12px 6px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .social-name {
        font-size: 0.78rem;
    }
}
