        :root { 
            --glass-bg: rgba(12, 30, 53, 0.85); 
            --glass-border: rgba(255, 255, 255, 0.1); 
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); 
            --text-color: #ffffff; 
            --accent-gold: #FFD700; 
            --accent-blue: #4facfe; 
            --accent-green: #2ecc71; 
        }
        
        body { margin: 0; font-family: 'Montserrat', sans-serif; color: var(--text-color); min-height: 100vh; background: #000; overflow-x: hidden; padding-bottom: 160px; }
        
        .bg-image { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images/bg-mic.jpg'); background-size: cover; background-position: center; z-index: -3; }
        .bg-tint { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 20%, rgba(30, 60, 114, 0.6), rgba(12, 30, 53, 0.8), rgba(0, 0, 0, 0.9)); z-index: -2; }

        /* --- NAVIGATION (UPDATED PADDING) --- */
        .nav-wrapper { 
            position: sticky; top: 0; z-index: 100; 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%); 
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border); 
            box-shadow: var(--glass-shadow); 
            /* Added 10px extra to top padding as requested */
            padding-top: 20px; 
            padding-bottom: 10px;
        }
        .nav-container { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
        .nav-links { display: flex; gap: 25px; align-items: center; }
        
        .nav-link { 
            color: white; 
            text-decoration: none; 
            font-size: 0.95rem; 
            font-weight: 700;   
            text-transform: uppercase; 
            letter-spacing: 1px; 
            transition: 0.3s; 
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6); 
        }
        
        .nav-link:hover { 
            color: var(--accent-gold); 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); 
            transform: scale(1.05); 
        }
        
        .nav-link.active { 
            color: var(--accent-gold); 
            font-weight: 800; 
            border-bottom: 2px solid var(--accent-gold); 
        }
        
        .top-countdown { font-size: 0.9rem; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 5px 20px; border-radius: 20px; text-decoration: none; white-space: nowrap; border: 1px solid rgba(255,255,255,0.05); font-weight: 600; }
        .top-countdown:hover { background: rgba(255,255,255,0.2); }

        @media (min-width: 992px) {
            .nav-container { justify-content: center; position: relative; }
            .top-countdown { position: absolute; right: 20px; }
            .nav-link { white-space: nowrap; }
        }

        @media (max-width: 991px) {
            /* nav-wrapper padding handles the space, no extra needed here */
            .top-countdown { display: none !important; }
            .nav-container { flex-direction: column; gap: 15px; padding: 0; width: 100%; max-width: 100%; }
            .nav-links { gap: 20px; width: 100%; justify-content: center; flex-wrap: wrap; padding: 0 10px; box-sizing: border-box; }
            .nav-link { white-space: nowrap; font-size: 0.9rem; }
        }

        @media (max-width: 480px) {
            .nav-links { gap: 5px; justify-content: space-between; flex-wrap: nowrap; }
            .nav-link { font-size: 0.75rem; white-space: normal; line-height: 1.1; max-width: 60px; display: flex; align-items: center; justify-content: center; height: 35px; }
        }

        .container { max-width: 900px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 25px; }
        .header-card { padding: 20px 35px !important; }
        
        .glass-card { 
            background: var(--glass-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border); border-radius: 20px; padding: 35px; box-shadow: var(--glass-shadow); text-align: center; transition: transform 0.3s; 
        }
        .glass-card:hover { border-color: rgba(255,255,255,0.3); }

        .logo-img { max-width: 210px; height: auto; margin: 20px 0; transition: transform 0.3s; }

        h1 { 
            font-family: 'Amiri', serif; font-size: 3.5rem; margin: 5px 0 10px 0;
            background: linear-gradient(to bottom, #FFD700 0%, #FDB931 50%, #B8860B 100%); 
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
            filter: drop-shadow(0px 2px 0px rgba(139, 101, 8, 1)); line-height: 1.3; white-space: nowrap; 
        }
        @media (max-width: 600px) { h1 { font-size: 8vw; } }

        .subtitle { letter-spacing: 4px; font-size: 0.9rem; text-transform: uppercase; color: #ffffff; font-weight: 600; }
        .intro-text { font-size: 1.05rem; line-height: 1.7; opacity: 0.9; font-weight: 300; margin-top: 15px; }

        .gold-dust { color: #ffffff; position: relative; font-weight: 400; text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4); display: inline-block; }
        .gold-dust::after { content: '✦ . * . ✦'; position: absolute; top: -5px; left: 0; width: 100%; height: 100%; color: #FFD700; font-size: 10px; opacity: 0; animation: risingDust 3s infinite linear; pointer-events: none; letter-spacing: 5px; }
        .gold-dust::before { content: '. * ✦ . *'; position: absolute; top: 5px; left: 0; width: 100%; height: 100%; color: #FDB931; font-size: 8px; opacity: 0; animation: risingDust 4s infinite linear 1s; pointer-events: none; letter-spacing: 8px; }
        @keyframes risingDust { 0% { transform: translateY(5px) scale(0.8); opacity: 0; } 50% { opacity: 0.8; } 100% { transform: translateY(-20px) scale(1.2); opacity: 0; } }

        .app-btn-container { display: flex; justify-content: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; margin-bottom: 25px; }
        .glass-btn { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; color: white; text-decoration: none; transition: 0.3s; font-size: 0.8rem; }
        .glass-btn:hover { background: white; color: #000; }

        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .spin-anim { animation: spin 1s linear infinite; }

        .prayer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
        .countdown { font-size: 2rem; font-family: 'Reem Kufi', monospace; color: var(--accent-gold); }
        .prayer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; }
        .prayer-item { background: rgba(0,0,0,0.3); padding: 15px 5px; border-radius: 12px; transition: 0.3s; border: 1px solid transparent; text-align: center; }
        .prayer-item.active { background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), transparent); border: 1px solid var(--accent-blue); transform: translateY(-3px); }
        .prayer-name { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; display: block; }
        .prayer-time { font-size: 1.1rem; font-weight: 600; display: block; }

        .divider { height: 1px; background: rgba(255,255,255,0.1); margin: 30px 0; }
        .contact-section { padding-top: 10px; }
        .social-container { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
        .social-icon { color: white; font-size: 1.8rem; transition: 0.3s; opacity: 0.8; text-decoration: none; }
        .social-icon:hover { opacity: 1; transform: scale(1.2); }
        .fa-youtube:hover { color: #FF0000; } .fa-facebook:hover { color: #1877F2; } .fa-instagram:hover { color: #E1306C; }
        footer { text-align: center; font-size: 0.8rem; opacity: 0.5; padding: 30px; }

        /* --- FIXED BOTTOM PLAYER (SINGLE LINE TEXT) --- */
        .fixed-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px; 
            
            background: #0c1e35;
            
            border-top: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
            
            padding-bottom: env(safe-area-inset-bottom);
            height: calc(120px + env(safe-area-inset-bottom));
        }

        .fp-info { display: flex; align-items: center; flex: 1; min-width: 0; /* Prevents overflow */ }
        .fp-text { display: flex; flex-direction: column; justify-content: center; width: 100%; }
        
        /* New Wrapper to keep Prayer Name and Timer in 1 Line */
        .fp-main-line { display: flex; align-items: baseline; gap: 8px; width: 100%; }
        
        .fp-prayer-name { color: var(--accent-gold); font-size: 1rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
        .fp-timer { font-family: 'Reem Kufi', monospace; font-size: 1.5rem; color: #ffffff; line-height: 1; text-shadow: 0 2px 4px rgba(0,0,0,0.3); white-space: nowrap; }
        
        .fp-status { color: #888; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

        .fp-btn {
            background: transparent;
            border: 2px solid var(--accent-gold);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            margin-left: 15px; 
            padding: 0;
            overflow: hidden;
            box-shadow: none; 
            flex-shrink: 0;
        }
        .fp-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        .fp-btn:hover { opacity: 0.8; transform: scale(1.05); }
        .fp-btn.playing { border-color: #fff; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        
        /* Mobile adjustment for smaller screens if text gets too long */
        @media (max-width: 360px) {
            .fp-timer { font-size: 1.3rem; }
            .fp-prayer-name { font-size: 0.9rem; }
            .fp-btn { width: 85px; height: 85px; }
        }

    </style>
    <style>
        .notice-banner {
            background: rgba(220, 53, 69, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            padding: 12px 20px;
            position: relative;
            z-index: 90;
            animation: slideDown 0.5s ease-out;
        }
        .notice-link {
            color: white; text-decoration: none; font-weight: 600; letter-spacing: 0.5px;
            font-size: 0.95rem; display: flex; justify-content: center; align-items: center; gap: 10px;
        }
        .notice-link:hover { text-decoration: underline; }
        .notice-badge { background: white; color: #dc3545; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
        @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    </style>
        :root { 
            --glass-bg: rgba(15, 23, 42, 0.85); 
            --glass-border: rgba(255, 255, 255, 0.1); 
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); 
            --text-color: #ffffff; 
            --accent-gold: #FFD700; 
            --accent-blue: #4facfe; 
        }
        body { margin: 0; font-family: 'Montserrat', sans-serif; color: white; min-height: 100vh; background: #000; overflow-x: hidden; }
        .bg-image { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images/bg-mic.jpg'); background-size: cover; background-position: center; z-index: -3; }
        .bg-tint { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 20%, rgba(30, 60, 114, 0.5), rgba(42, 82, 152, 0.6), rgba(0, 0, 0, 0.8)); z-index: -2; }

        /* --- NAVIGATION --- */
        .nav-wrapper { 
            position: sticky; top: 0; z-index: 100; 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%); 
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border); 
            box-shadow: var(--glass-shadow); 
            padding: 10px 0;
        }
        .nav-container { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
        .nav-links { display: flex; gap: 25px; align-items: center; }
        
        .nav-link { 
            color: white; 
            text-decoration: none; 
            font-size: 0.95rem; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            transition: 0.3s; 
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6); 
            white-space: nowrap; 
        }
        .nav-link:hover { color: var(--accent-gold); text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); transform: scale(1.05); }
        .nav-link.active { color: var(--accent-gold); font-weight: 800; border-bottom: 2px solid var(--accent-gold); }

        .top-countdown { font-size: 0.9rem; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 5px 20px; border-radius: 20px; white-space: nowrap; text-decoration: none; border: 1px solid rgba(255,255,255,0.05); font-weight: 600; }
        .top-countdown:hover { background: rgba(255,255,255,0.2); }

        @media (min-width: 992px) {
            .nav-container { justify-content: center; position: relative; }
            .top-countdown { position: absolute; right: 20px; }
            .nav-link { white-space: nowrap; }
            .d-mobile { display: none; }
        }
        @media (max-width: 991px) {
            .nav-wrapper { padding-top: 0; padding-bottom: 10px; }
            .nav-container { flex-direction: column; gap: 15px; padding: 0; width: 100%; max-width: 100%; }
            .top-countdown { order: -1; width: 100%; justify-content: center; font-size: 1rem; background: rgba(0, 0, 0, 0.4); border: none; border-radius: 0; padding: 12px; margin: 0; box-sizing: border-box; }
            .nav-links { gap: 20px; width: 100%; justify-content: center; flex-wrap: wrap; padding: 0 10px; box-sizing: border-box; }
            .nav-link { white-space: nowrap; font-size: 0.9rem; }
            .d-desktop { display: none; }
        }
        @media (max-width: 480px) {
            .nav-links { gap: 5px; justify-content: space-between; flex-wrap: nowrap; }
            .nav-link { font-size: 0.75rem; white-space: normal; line-height: 1.1; max-width: 60px; display: flex; align-items: center; justify-content: center; height: 35px; }
        }

        .container { max-width: 900px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 25px; }
        
        .glass-card { 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            padding: 30px; 
            box-shadow: var(--glass-shadow); 
        }

        h2 { 
            margin-top: 0; color: var(--accent-gold); font-family: 'Amiri', serif; text-align: center;
            white-space: nowrap; font-size: clamp(1.5rem, 5vw, 2.5rem);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 20px;
        }

        /* --- CONTROL BAR (Dropdown & Date) --- */
        .controls-wrapper { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        
        .glass-input {
            background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.2);
            color: white; padding: 0 15px; height: 40px; line-height: 40px; border-radius: 30px;
            font-family: 'Montserrat', sans-serif; font-size: 0.9rem; cursor: pointer; outline: none;
            transition: 0.3s; box-sizing: border-box; -webkit-appearance: none; appearance: none;
        }
        .glass-input:focus, .glass-input:hover { border-color: var(--accent-gold); background: rgba(0, 0, 0, 0.5); }

        /* MOBILE DATE PICKER FIXES */
        input[type="date"].glass-input { text-align: center; color: white; min-width: 150px; color-scheme: dark; display: inline-block; position: relative; }
        input[type="date"]:required:invalid::-webkit-datetime-edit { color: transparent; }
        input[type="date"]:required:invalid::before { content: "dd / mm / yyyy"; color: rgba(255, 255, 255, 0.7); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
        ::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.7; cursor: pointer; margin-left: 5px; }

        .table-wrapper { overflow-x: auto; max-height: 65vh; margin-top: 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
        table { width: 100%; border-collapse: collapse; }
        th, td { padding: 8px 6px; font-size: 0.85rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
        @media (max-width: 600px) { th, td { padding: 8px 2px; font-size: 0.75rem; } }
        th { background: rgba(0,0,0,0.8); color: var(--accent-gold); position: sticky; top: 0; z-index: 10; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; backdrop-filter: blur(10px); }
        tr { scroll-margin-top: 45px; } tr:hover { background: rgba(255,255,255,0.05); }

        .prayer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
        .countdown { font-size: 2rem; font-family: 'Reem Kufi', monospace; color: var(--accent-gold); }
        .prayer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; }
        .prayer-item { background: rgba(0,0,0,0.3); padding: 15px 5px; border-radius: 12px; transition: 0.3s; border: 1px solid transparent; text-align: center; }
        .prayer-item.active { background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), transparent); border: 1px solid var(--accent-blue); transform: translateY(-3px); }
        .prayer-name { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; display: block; }
        .prayer-time { font-size: 1.1rem; font-weight: 600; display: block; }
        
        footer { text-align: center; font-size: 0.8rem; opacity: 0.5; padding: 30px; }
    </style>
    <style>
        .notice-banner {
            background: rgba(220, 53, 69, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            text-align: center; padding: 12px 20px;
            position: relative; z-index: 90;
            animation: slideDown 0.5s ease-out;
        }
        .notice-link { color: white; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; font-size: 0.95rem; display: flex; justify-content: center; align-items: center; gap: 10px; }
        .notice-link:hover { text-decoration: underline; }
        .notice-badge { background: white; color: #dc3545; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
        @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    </style>
        :root { 
            /* Reverted to original darker background for better contrast */
            --glass-bg: rgba(15, 23, 42, 0.85); 
            --glass-border: rgba(255, 255, 255, 0.1); 
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); 
            --text-color: #ffffff; 
            --accent-gold: #FFD700; 
            --accent-blue: #4facfe; 
        }
        body { margin: 0; font-family: 'Montserrat', sans-serif; color: white; min-height: 100vh; background: #000; overflow-x: hidden; }
        .bg-image { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images/bg-mic.jpg'); background-size: cover; background-position: center; z-index: -3; }
        .bg-tint { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 20%, rgba(30, 60, 114, 0.5), rgba(42, 82, 152, 0.6), rgba(0, 0, 0, 0.8)); z-index: -2; }

        /* --- NAVIGATION --- */
        .nav-wrapper { 
            position: sticky; top: 0; z-index: 100; 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%); 
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border); 
            box-shadow: var(--glass-shadow); 
            padding: 10px 0;
        }
        .nav-container { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
        .nav-links { display: flex; gap: 25px; align-items: center; }
        
        /* BOLDER MENU STYLES */
        .nav-link { 
            color: white; 
            text-decoration: none; 
            font-size: 0.95rem; 
            font-weight: 700;   /* Bold */
            text-transform: uppercase; 
            letter-spacing: 1px; 
            transition: 0.3s; 
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6); 
        }
        
        .nav-link:hover { 
            color: var(--accent-gold); 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); 
            transform: scale(1.05);
        }
        
        .nav-link.active { 
            color: var(--accent-gold); 
            font-weight: 800; /* Extra bold */
            border-bottom: 2px solid var(--accent-gold);
        }

        .top-countdown { font-size: 0.9rem; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 5px 20px; border-radius: 20px; white-space: nowrap; text-decoration: none; border: 1px solid rgba(255,255,255,0.05); font-weight: 600; }
        .top-countdown:hover { background: rgba(255,255,255,0.2); }

        /* Desktop View */
        @media (min-width: 992px) {
            .nav-container { justify-content: center; position: relative; }
            .top-countdown { position: absolute; right: 20px; }
            .nav-link { white-space: nowrap; }
        }

        /* Tablet & Mobile View */
        @media (max-width: 991px) {
            .nav-wrapper { padding-top: 0; padding-bottom: 10px; }
            .nav-container { flex-direction: column; gap: 15px; padding: 0; width: 100%; max-width: 100%; }
            .top-countdown { order: -1; width: 100%; justify-content: center; font-size: 1rem; background: rgba(0, 0, 0, 0.4); border: none; border-radius: 0; padding: 12px; margin: 0; box-sizing: border-box; }
            .nav-links { gap: 20px; width: 100%; justify-content: center; flex-wrap: wrap; padding: 0 10px; box-sizing: border-box; }
            .nav-link { white-space: nowrap; font-size: 0.9rem; }
        }

        /* Small Phone Specifics */
        @media (max-width: 480px) {
            .nav-links { gap: 5px; justify-content: space-between; flex-wrap: nowrap; }
            .nav-link { font-size: 0.75rem; white-space: normal; line-height: 1.1; max-width: 60px; display: flex; align-items: center; justify-content: center; height: 35px; }
        }

        .container { max-width: 1000px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; }
        
        /* --- Social Intro Card (Updated to Darker Theme) --- */
        .social-intro { 
            text-align: center; 
            margin-bottom: 30px; 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 30px; 
            border-radius: 20px; 
            border: 1px solid var(--glass-border); 
            box-shadow: var(--glass-shadow); 
        }
        .social-intro p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; }
        .social-icons-lg { display: flex; justify-content: center; gap: 25px; }
        .social-icon-lg { color: white; font-size: 2rem; transition: 0.3s; opacity: 0.8; }
        .social-icon-lg:hover { opacity: 1; transform: scale(1.1); }
        .fa-youtube:hover { color: #FF0000; } .fa-facebook:hover { color: #1877F2; } .fa-instagram:hover { color: #E1306C; }

        .shows-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        
        /* --- Show Cards (Updated to Darker Theme) --- */
        .show-card { 
            background: var(--glass-bg); 
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: transform 0.3s; 
            box-shadow: var(--glass-shadow); 
            display: flex; 
            flex-direction: column; 
        }
        .show-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.3); }
        .show-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .show-content { padding: 20px; text-align: center; direction: rtl; }
        .show-title { font-family: 'Amiri', serif; font-size: 1.8rem; color: var(--accent-gold); margin: 0 0 10px 0; font-weight: bold; }
        .show-host { font-family: 'Amiri', serif; font-size: 1.1rem; opacity: 0.9; line-height: 1.6; margin: 0; }
        
        footer { text-align: center; font-size: 0.8rem; opacity: 0.5; padding: 30px; margin-top: 30px; }
        @media (max-width: 600px) { .shows-grid { grid-template-columns: 1fr; } }
    </style>
    <style>
        .notice-banner {
            background: rgba(220, 53, 69, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            text-align: center; padding: 12px 20px;
            position: relative; z-index: 90;
            animation: slideDown 0.5s ease-out;
        }
        .notice-link { color: white; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; font-size: 0.95rem; display: flex; justify-content: center; align-items: center; gap: 10px; }
        .notice-link:hover { text-decoration: underline; }
        .notice-badge { background: white; color: #dc3545; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
        @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    </style>
.notice-banner { background: rgba(220, 53, 69, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.2); text-align: center; padding: 12px 20px; position: relative; z-index: 90; animation: slideDown 0.5s ease-out; }
.notice-link { color: white; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; font-size: 0.95rem; display: flex; justify-content: center; align-items: center; gap: 10px; }
.notice-badge { background: white; color: #dc3545; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.nav-wrapper { padding-top: calc(20px + env(safe-area-inset-top)); }
.fixed-player { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
