    :root {
        --primary-bg: #F7F4EF;
        --primary-text: #1D1D1F;
        --secondary-text: #6B6B6B;
        --accent: #C19A6B;
        --secondary-accent: #8C6B4F;
        --card-bg: #FFFFFF;
        --hover: rgba(193, 154, 107, 0.1);
        --shadow: rgba(0, 0, 0, 0.08);
        --shadow-hover: rgba(0, 0, 0, 0.12);
        --border: rgba(193, 154, 107, 0.2);
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.2);
        --apple-radius: 12px;
        --apple-radius-large: 20px;
        --apple-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --gradient-primary: linear-gradient(135deg, #C19A6B 0%, #8C6B4F 100%);
        --gradient-hero: linear-gradient(135deg, rgba(29, 29, 31, 0.85) 0%, rgba(108, 92, 76, 0.85) 100%);
    }

    /* ====== Base Styles ====== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Almarai', 'Cairo', sans-serif;
        background-color: var(--primary-bg);
        color: var(--primary-text);
        line-height: 1.8;
        overflow-x: hidden;
        font-size: 16px;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--apple-transition);
    }

    .container {
        width: 90%;
        max-width: 1400px;
        margin: auto;
    }

    .btn {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--apple-transition);
        font-family: inherit;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(193, 154, 107, 0.4);
    }

    /* ====== 🔹 Enhanced Glass Header with Arabic Patterns ====== */
    .header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        border: none;
        transition: var(--apple-transition);
        padding: 5px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="arabesque" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 C15,5 15,15 10,20 C5,15 5,5 10,0Z" fill="rgba(193,154,107,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23arabesque)"/></svg>');
        opacity: 0.3;
        pointer-events: none;
        z-index: -1;
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        box-shadow: 0 2px 30px rgba(0,0,0,0.08);
        padding: 5px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .logo a {
        color: var(--accent);
        font-size: 1.9rem;
        font-weight: 700;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        letter-spacing: -0.5px;
    }

    .logo i {
        font-size: 1.7rem;
    }

    .nav {
        display: flex;
        gap: 35px;
    }

    .nav a {
        position: relative;
        color: var(--secondary-text);
        font-weight: 500;
        padding: 10px 0;
        font-size: 1.08rem;
        text-decoration: none;
        transition: var(--apple-transition);
        font-family: -apple-system, BlinkMacSystemFont, 'Almarai', sans-serif;
    }

    .nav a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        right: 0;
        background-color: var(--accent);
        transition: var(--apple-transition);
    }

    .nav a:hover {
        color: var(--accent);
    }

    .nav a:hover:after {
        width: 100%;
    }

    .nav-actions {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .nav-btn {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--accent);
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--apple-transition);
        font-family: inherit;
        font-size: 1rem;
    }

    .nav-btn:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(193, 154, 107, 0.3);
    }

    .mobile-menu-btn {
        display: none;
        background: transparent;
        border: none;
        font-size: 1.6rem;
        color: var(--accent);
        cursor: pointer;
        padding: 8px;
        border-radius: var(--apple-radius);
        transition: var(--apple-transition);
    }

    .mobile-menu-btn:hover {
        background: rgba(193, 154, 107, 0.1);
    }

    /* ====== 🔍 نموذج البحث المحسن ====== */
    .header-search {
        position: relative;
        max-width: 400px;
        width: 100%;
        margin: 0 20px;
    }

    .header-search input {
        width: 100%;
        padding: 12px 50px 12px 20px;
        border: 1px solid var(--border);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        font-family: inherit;
        font-size: 1rem;
        transition: var(--apple-transition);
    }

    .header-search input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
        background: white;
    }

    .header-search button {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--accent);
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--apple-transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-search button:hover {
        background: var(--secondary-accent);
        transform: translateY(-50%) scale(1.1);
    }

    /* ====== 🎥 السلايدر الرئيسي المحسن ====== */
    .main-slider {
        margin-top: 80px;
        position: relative;
        overflow: hidden;
        border-radius: var(--apple-radius-large);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .slider-container {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 500px;
    }

    .slide {
        min-width: 100%;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide.active img {
        transform: scale(1.05);
    }

    .slide-content {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        padding: 30px;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    }

    .slide.active .slide-content {
        transform: translateY(0);
        opacity: 1;
    }

    .slide-content h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .slide-content p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 15px;
    }

    .read-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: white;
        border: 1px solid white;
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--apple-transition);
        font-size: 0.95rem;
    }

    .read-more-btn:hover {
        background: white;
        color: var(--primary-text);
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
    }

    .slide-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: var(--apple-transition);
        position: relative;
        overflow: hidden;
    }

    .indicator::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0%;
        height: 100%;
        background: white;
        transition: width 4s linear;
    }

    .indicator.active::after {
        width: 100%;
    }

    .indicator.active {
        transform: scale(1.2);
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.8);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--apple-transition);
        font-size: 1.2rem;
        color: var(--accent);
        opacity: 0;
    }

    .main-slider:hover .slider-nav {
        opacity: 1;
    }

    .slider-nav:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

    .slider-prev {
        right: 20px;
    }

    .slider-next {
        left: 20px;
    }

    /* ====== 🗞️ قسم الأخبار الرئيسي ====== */
    .main-news-section {
        padding: 60px 0;
    }

    .news-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .latest-articles-sidebar {
        background: var(--card-bg);
        border-radius: var(--apple-radius-large);
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .sidebar-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent);
        color: var(--primary-text);
        font-weight: 700;
    }

    .article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .article-item {
        display: flex;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: var(--apple-transition);
    }

    .article-item:hover {
        transform: translateX(-10px);
    }

    .article-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .article-thumb {
        width: 80px;
        height: 80px;
        border-radius: var(--apple-radius);
        overflow: hidden;
        flex-shrink: 0;
    }

    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .article-item:hover .article-thumb img {
        transform: scale(1.1);
    }

    .article-info {
        flex: 1;
    }

    .article-info h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .article-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        color: var(--secondary-text);
    }

    .article-date {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* ====== 📰 شبكة الأخبار ====== */
    .news-grid-section {
        padding: 60px 0;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .news-card {
        background: var(--card-bg);
        border-radius: var(--apple-radius-large);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: var(--apple-transition);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .news-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .news-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .news-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(193, 154, 107, 0.1), transparent);
        opacity: 0;
        transition: var(--apple-transition);
    }

    .news-card:hover .news-image::after {
        opacity: 1;
    }

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .news-content {
        padding: 20px;
        position: relative;
    }

    .news-content h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.4;
        transition: var(--apple-transition);
    }

    .news-card:hover .news-content h4 {
        color: var(--accent);
    }

    .news-content p {
        color: var(--secondary-text);
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .news-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        color: var(--secondary-text);
    }

    .news-date {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* ====== 🧭 Enhanced Categories Section with Arabic Patterns ====== */
    .categories {
        position: relative;
        padding: 120px 20px;
        background: linear-gradient(to bottom, var(--primary-bg), #f0ebe3);
        overflow: hidden;
    }

    .categories::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(193,154,107,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
        animation: slowMove 60s linear infinite;
    }

    @keyframes slowMove {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(20px, 15px) scale(1.05); }
        100% { transform: translate(0, 0) scale(1); }
    }

    .categories * {
        position: relative;
        z-index: 1;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
    }

    .category-card {
        background: var(--card-bg);
        border-radius: var(--apple-radius-large);
        overflow: hidden;
        box-shadow: 0 8px 25px var(--shadow);
        transition: var(--apple-transition);
        text-align: center;
        padding: 45px 30px;
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.8);
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .category-card.visible {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }

    .category-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 25px 50px var(--shadow-hover);
    }

    .category-icon {
        width: 100px;
        height: 100px;
        background: rgba(193, 154, 107, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        transition: var(--apple-transition);
        position: relative;
        overflow: hidden;
    }

    .category-card:hover .category-icon {
        background: var(--accent);
        transform: scale(1.15) translateY(-5px);
        animation: float 3s ease-in-out infinite;
    }

    .category-icon i {
        font-size: 2.4rem;
        color: var(--accent);
        transition: var(--apple-transition);
    }

    .category-card:hover .category-icon i {
        color: white;
        transform: scale(1.1);
    }

    .category-info h4 {
        color: var(--primary-text);
        margin-bottom: 18px;
        font-size: 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
        font-weight: 700;
        transition: var(--apple-transition);
    }

    .category-card:hover .category-info h4 {
        color: var(--accent);
    }

    .category-info p {
        opacity: 0.8;
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--secondary-text);
    }

    /* ====== 📀 Enhanced Latest Releases - Grid Mode ====== */
    .latest-releases {
        position: relative;
        padding: 80px 20px;
        background: linear-gradient(to bottom, var(--primary-bg), #f0ebe3);
    }

    .releases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .release-card {
        background: var(--card-bg);
        border-radius: var(--apple-radius-large);
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: var(--apple-transition);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .release-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .release-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .release-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .release-content {
        padding: 20px;
        position: relative;
    }

    .release-content h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.4;
        transition: var(--apple-transition);
        color: var(--primary-text);
    }

    .release-card:hover .release-content h4 {
        color: var(--accent);
    }

    .release-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        font-size: 0.85rem;
        color: var(--secondary-text);
    }

    .release-date {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .release-description {
        color: var(--secondary-text);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .release-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .release-category {
        background: rgba(193, 154, 107, 0.1);
        color: var(--accent);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* ====== 📊 قسم الإحصائيات ====== */
    .stats {
        padding: 100px 20px;
        background: var(--gradient-primary);
        color: white;
        text-align: center;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }

    .stat-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .stat-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-number {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 12px;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
    }

    .stat-label {
        font-size: 1.15rem;
        opacity: 0.9;
        font-weight: 300;
    }

    /* ====== Enhanced About Section ====== */
    .about-short {
        text-align: center;
        padding: 140px 20px;
        background: var(--primary-bg);
        position: relative;
    }

    .about-short:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(193,154,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>') repeat;
        opacity: 0.5;
        pointer-events: none;
    }

    .about-short h3 {
        color: var(--accent);
        font-size: 2.6rem;
        margin-bottom: 30px;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
        position: relative;
        display: inline-block;
        animation: typewriter 3s steps(40) 1s both;
        overflow: hidden;
        border-right: 3px solid var(--accent);
        white-space: nowrap;
    }

    .about-short h3:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        bottom: -15px;
        right: 20%;
        background: linear-gradient(to left, var(--accent), transparent);
        border-radius: 2px;
    }

    .about-short p {
        max-width: 850px;
        margin: 35px auto 0;
        opacity: 0.85;
        font-size: 1.2rem;
        line-height: 1.9;
        font-weight: 300;
        animation: fadeInUp 1s ease-out 0.5s both;
    }

    /* ====== Enhanced Newsletter Section ====== */
    .newsletter {
        padding: 100px 20px;
        background: linear-gradient(to right, #f0ebe3, var(--primary-bg));
        text-align: center;
    }

    .newsletter-box {
        background: var(--card-bg);
        border-radius: var(--apple-radius-large);
        padding: 60px 50px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        max-width: 750px;
        margin: 0 auto;
        animation: fadeInScale 0.8s ease-out;
    }

    .newsletter h4 {
        color: var(--accent);
        font-size: 2rem;
        margin-bottom: 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
    }

    .newsletter p {
        color: var(--secondary-text);
        margin-bottom: 35px;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .newsletter-form {
        display: flex;
        gap: 12px;
        max-width: 550px;
        margin: 0 auto;
    }

    .newsletter-input {
        flex: 1;
        padding: 18px 25px;
        border: 1px solid var(--border);
        border-radius: 50px;
        font-family: inherit;
        font-size: 1.05rem;
        transition: var(--apple-transition);
        background: rgba(255, 255, 255, 0.8);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.2);
        background: white;
    }

    /* ====== Enhanced Footer ====== */
    .footer {
        background: #1D1D1F;
        color: #ddd;
        padding: 80px 20px 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 45px;
        margin-bottom: 50px;
    }

    .footer-col h5 {
        color: var(--accent);
        font-size: 1.4rem;
        margin-bottom: 25px;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
        position: relative;
        display: inline-block;
    }

    .footer-col h5:after {
        content: '';
        position: absolute;
        width: 45px;
        height: 2px;
        bottom: -10px;
        right: 0;
        background-color: var(--accent);
        border-radius: 1px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #aaa;
        transition: var(--apple-transition);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
    }

    .footer-links a:hover {
        color: var(--accent);
        transform: translateX(-8px);
    }

    .footer-links i {
        font-size: 0.85rem;
    }

    .social-links {
        display: flex;
        gap: 18px;
        margin-top: 25px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        transition: var(--apple-transition);
    }

    .social-links a:hover {
        background: var(--accent);
        transform: translateY(-5px) scale(1.1);
    }

    .copyright {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #888;
        font-size: 0.95rem;
    }

    /* ====== Enhanced Section Headers ====== */
    .section-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-header h3 {
        font-size: 2.6rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
        position: relative;
        display: inline-block;
    }

    .section-header h3:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        bottom: -12px;
        right: 20%;
        background: linear-gradient(to left, var(--accent), transparent);
        border-radius: 2px;
    }

    .section-header p {
        max-width: 650px;
        margin: 0 auto;
        color: var(--secondary-text);
        font-size: 1.15rem;
        line-height: 1.7;
    }

    /* ====== Enhanced Animations ====== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes typewriter {
        from { width: 0; }
        to { width: 100%; }
    }

    /* ====== Enhanced Scroll Progress Bar ====== */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: var(--accent);
        z-index: 1001;
        transition: width 0.1s ease;
    }

    /* ====== Enhanced Back to Top Button ====== */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: var(--accent);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: var(--apple-transition);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(193, 154, 107, 0.4);
        z-index: 999;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(193, 154, 107, 0.5);
    }

    /* ====== Enhanced Loader Animation ====== */
    .loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    .loader-container.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .ball {
        width: 50px;
        height: 50px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        animation: bounce 1.2s infinite ease-in-out;
        box-shadow: 0 0 20px rgba(193, 154, 107, 0.4);
    }

    .shadow {
        width: 40px;
        height: 10px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        margin-top: 20px;
        animation: shadow 1.2s infinite ease-in-out;
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0) scale(1, 1);
        }
        50% {
            transform: translateY(-30px) scale(1.1, 0.9);
        }
    }

    @keyframes shadow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.7;
        }
        50% {
            transform: scale(0.8);
            opacity: 0.4;
        }
    }

    /* ====== Enhanced Responsive Design ====== */
    @media (max-width: 1200px) {
        .container {
            width: 95%;
            max-width: 1200px;
        }
        
        .section-header h3 {
            font-size: 2.3rem;
        }
        
        .header-search {
            max-width: 300px;
        }
        
        .news-layout {
            grid-template-columns: 1.5fr 1fr;
        }
    }

    @media (max-width: 992px) {
        .nav {
            gap: 25px;
        }
        
        .section-header h3 {
            font-size: 2rem;
        }
        
        .news-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .categories-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        
        .header-search {
            display: none;
        }
        
        .slider-container {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        
        .nav {
            position: fixed;
            top: 80px;
            right: -100%;
            background: var(--card-bg);
            width: 85%;
            height: calc(100vh - 80px);
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 50px;
            gap: 35px;
            transition: var(--apple-transition);
            box-shadow: -8px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        .nav.active {
            right: 0;
        }
        
        .nav-actions {
            flex-direction: column;
            width: 80%;
            margin-top: 40px;
        }
        
        .categories-grid {
            grid-template-columns: 1fr;
        }
        
        .release-card {
            min-width: 300px;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .slider-container {
            height: 350px;
        }
        
        .slide-content {
            padding: 20px;
        }
        
        .slide-content h3 {
            font-size: 1.5rem;
        }
        
        .slider-nav {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .section-header h3 {
            font-size: 1.8rem;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 35px;
        }
        
        .newsletter-box {
            padding: 40px 25px;
        }
        
        .about-short p {
            font-size: 1.1rem;
        }
        
        .slider-container {
            height: 300px;
        }
        
        .slide-content h3 {
            font-size: 1.3rem;
        }
        
        .news-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ====== Skip to Main Content for Accessibility ====== */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--accent);
        color: white;
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 0 0 4px 0;
        z-index: 1001;
        transition: top 0.3s;
    }

    .skip-link:focus {
        top: 0;
    }

    /* ====== Print Styles ====== */
    @media print {
        .header, .footer, .slider-nav, .carousel-controls, .nav-actions {
            display: none;
        }
        
        body {
            background: white;
            color: black;
            font-size: 12pt;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: none;
        }
        
        a {
            color: black;
            text-decoration: underline;
        }
        
        .btn, .nav-btn {
            display: none;
        }
    }

    /* ====== Enhanced Notification Popup ====== */
    .notification-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(5px);
    }

    .notification-popup.active {
        opacity: 1;
        pointer-events: auto;
    }

    .popup-content {
        background: linear-gradient(145deg, #fef9f3, #fff8e7);
        border: 2px solid var(--accent);
        padding: 35px 40px;
        border-radius: var(--apple-radius-large);
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        transform-origin: center;
    }

    .popup-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .popup-icon {
        font-size: 32px;
        color: var(--accent);
    }

    .popup-content h3 {
        font-size: 24px;
        color: var(--primary-text);
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Amiri', serif;
    }

    .popup-content p {
        font-size: 16px;
        margin-bottom: 25px;
        color: var(--secondary-text);
        line-height: 1.6;
    }

    .popup-content button.close-popup {
        position: absolute;
        top: 15px;
        right: 20px;
        background: var(--accent);
        color: #fff;
        border: none;
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--apple-transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-content button.close-popup:hover {
        transform: scale(1.1) rotate(90deg);
        background: var(--secondary-accent);
        box-shadow: 0 5px 15px rgba(193, 154, 107, 0.4);
    }

    @keyframes slideDown {
        0% { 
            transform: translateY(-50px) scale(0.9);
            opacity: 0;
        }
        100% { 
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    /* ====== إشعار الكوكيز ====== */
    .cookie-consent {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 600px;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .cookie-consent.show {
        opacity: 1;
        visibility: visible;
    }

    .cookie-consent p {
        margin: 0;
        font-size: 14px;
        color: #333;
    }

    .cookie-consent .btn {
        background-color: #a67c52;
        color: #fff;
        border: none;
        padding: 10px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
    }

    .cookie-consent .btn:hover {
        background-color: #8b6239;
    }
    
    /* ====== شريط التاريخ والوقت ====== */
    .date-time-bar {
        width: 100%;
        background-color: #c19a6b;
        color: white;
        text-align: center;
        font-size: 1rem;
        padding: 8px 0;
        font-family: 'Cairo', sans-serif;
        position: relative;
        z-index: 9999;
        margin-top: 80px;
        direction: rtl;
    }
    
    .date-time-bar span {
        margin: 0 10px;
    }
