        :root {
            --primary-color: #1a5fb4;
            --primary-dark: #0d4e9e;
            --primary-light: #4a8ad4;
            --secondary-color: #c64600;
            --accent-color: #26a269;
            --accent-light: #57d389;
            --dark-color: #2e3436;
            --light-color: #eee;
            --text-color: #2e3436;
            --text-light: #5c6162;
            --border-radius: 16px;
            --border-radius-sm: 8px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Tajawal', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            padding-bottom: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 0;
			margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }


        .logo i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 800;
        }

        .logo p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .last-update {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Main Content */
        main {
            padding: 40px 0;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 3px;
        }

        .section-title i {
            color: var(--secondary-color);
        }

        /* Dates Section */
        .dates-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .dates-container:hover {
            box-shadow: var(--shadow-lg);
        }

        .dates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
        }

        .date-item {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 18px 15px;
			box-shadow: rgb(80 80 80 / 80%) 0px 0px 3px 0px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .date-item::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .date-item:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }

        .date-item:hover::before {
            transform: scaleX(1);
        }

        .date-item.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 10px 20px rgba(26, 95, 180, 0.3);
        }

        .date-item.active::before {
            display: none;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            border-radius: var(--border-radius);
            width: 100%;
            max-width: 900px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-60px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            border-bottom: 1px solid #eee;
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .modal-title {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .hour-item {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .hour-item::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .hour-item:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow);
            border-color: var(--accent-light);
        }

        .hour-item:hover::before {
            transform: scaleX(1);
        }

        .hour-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hour-name {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .hour-size {
            font-size: 0.8rem;
            color: var(--secondary-color);
            background: rgba(198, 70, 0, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .hour-actions {
            display: flex;
            gap: 10px;
            margin-top: 5px;
        }

        .btn {
            padding: 10px 15px;
            border: none;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            flex: 1;
            justify-content: center;
            font-weight: 600;
        }

        .btn-play {
            background: var(--gradient-accent);
            color: white;
        }

        .btn-download {
            background: var(--gradient-primary);
            color: white;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Player Section */
        .player-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .player-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .player-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .player-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(26, 95, 180, 0.3);
        }

        .player-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(26, 95, 180, 0.4);
        }

        .player-btn:active {
            transform: scale(0.95);
        }

        .progress-container {
            background: #e0e0e0;
            border-radius: 10px;
            height: 10px;
            margin: 25px 0;
            overflow: hidden;
            cursor: pointer;
        }

        .progress-bar {
            background: var(--gradient-accent);
            height: 100%;
            width: 0%;
            transition: width 0.1s ease;
            border-radius: 10px;
            position: relative;
        }

        .progress-bar::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .time-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Loading Animation */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px;
            flex-direction: column;
            gap: 20px;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(26, 95, 180, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s linear infinite;
        }

        .loading-text {
            color: var(--text-light);
            font-size: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            text-align: center;
            padding: 25px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 100;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        /* Search Box */
		
        .search-box {
            position: relative;
            max-width: 500px;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: none;
            border-radius: var(--border-radius);
            background: white;
            box-shadow: var(--shadow);
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: var(--text-light);
        }

        .empty-state i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ddd;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .dates-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }

            .hours-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .dates-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                margin: 10px;
            }

            .footer-content {
                flex-direction: column;
                gap: 15px;
            }

            .hour-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .dates-container, .modal-body {
                padding: 20px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .logo h1 {
                font-size: 1.5rem;
            }
        }