
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Header */
    .hero-section {
        background: linear-gradient(135deg, #00bfde 0%, #4A90E2 50%, #00bfde 100%);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .hero-content {
        position: relative;
        text-align: center;
        z-index: 1;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-content p {
        font-size: 1.5rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    /* Search and Categories */
    .search-section {
        background: #F5F5F5;
        padding: 2rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .search-wrapper {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }

    .search-box {
        position: relative;
        flex: 1;
    }

    .search-box input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 3rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
    }

    .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    button {
        font-family: 'Cairo', sans-serif;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        border: 1px solid #00bfde;
        background: white;
        color: #00bfde;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.9rem;
    }

    .category-btn:hover,
    .category-btn.active {
        background: #00bfde;
        color: white;
    }

    /* Featured Articles */
    .featured-section {
        padding: 5rem 0;
        background: white;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        animation: fadeInUp 0.8s ease-out;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 2rem;
    }

    .article-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        cursor: pointer;
        animation: fadeInUp 0.6s ease-out;
    }

    .article-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .article-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .article-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .article-card:hover .article-image {
        transform: scale(1.1);
    }

    .article-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

    .featured-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: #F5A623;
        color: black;
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: bold;
    }

    .article-meta-overlay {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        color: white;
        font-size: 0.85rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .author-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .article-title {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-excerpt {
        color: #666;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .tag {
        background: rgba(108, 74, 182, 0.1);
        color: #00bfde;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
    }

    .article-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .article-stats {
        display: flex;
        gap: 1rem;
        color: #999;
        font-size: 0.85rem;
    }

    .read-more-btn {
        padding: 0.5rem 1rem;
        border: 1px solid #00bfde;
        background: white;
        color: #00bfde;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .read-more-btn:hover {
        background: #00bfde;
        color: white;
    }

    /* All Articles Section */
    .articles-section {
        padding: 5rem 0;
        background: #F5F5F5;
    }

    .articles-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .articles-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .article-list-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        cursor: pointer;
    }

    .article-list-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        transform: translateX(5px);
    }

    .article-list-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 0;
    }

    .article-list-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .article-list-details {
        padding: 1.5rem;
    }

    .category-badge {
        background: rgba(108, 74, 182, 0.1);
        color: #00bfde;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        font-size: 0.8rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    /* Sidebar */
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .sidebar-title {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .trending-item {
        display: flex;
        gap: 1rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background 0.3s;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .trending-item:hover {
        background: #f5f5f5;
    }

    .trending-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: #00bfde;
        width: 2rem;
        flex-shrink: 0;
    }

    .trending-title {
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newsletter-card {
        background: linear-gradient(135deg, #00bfde, #4A90E2);
        color: white;
    }

    .newsletter-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        color: white;
        margin-bottom: 0.75rem;
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-btn {
        width: 100%;
        padding: 0.75rem;
        background: #F5A623;
        border: none;
        border-radius: 6px;
        color: black;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

    .newsletter-btn:hover {
        background: #e6951f;
    }

    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tag-cloud-item {
        padding: 0.25rem 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s;
    }

    .tag-cloud-item:hover {
        background: #00bfde;
        color: white;
        border-color: #00bfde;
    }

    /* Modal */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        animation: fadeIn 0.3s;
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal-content {
        background: white;
        border-radius: 12px;
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        animation: scaleIn 0.3s;
    }

    .modal-header {
        position: relative;
        height: 320px;
    }

    .modal-header-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal-header-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

    .modal-header-content {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        left: 1.5rem;
        color: white;
    }

    .modal-close-btn {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-article-content {
        line-height: 1.8;
        color: #555;
    }

    .modal-article-content p {
        margin-bottom: 1rem;
    }

    .modal-footer {
        border-top: 1px solid #eee;
        padding-top: 1.5rem;
        margin-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .action-buttons {
        display: flex;
        gap: 1rem;
    }

    .action-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        background: white;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .action-btn:hover {
        border-color: #00bfde;
        color: #00bfde;
    }

    /* CTA Section */
    .cta-section {
        padding: 5rem 0;
        background: linear-gradient(to left, #00bfde, #4A90E2);
        color: white;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-description {
        font-size: 1.3rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: #F5A623;
        color: black;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cta-button:hover {
        background: #e6951f;
    }

    .no-results {
        text-align: center;
        padding: 3rem;
    }

    .no-results-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
        opacity: 0.4;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Responsive */
    @media(max-width: 1024px) {
        .articles-layout {
            grid-template-columns: 1fr;
        }

        .featured-grid {
            grid-template-columns: 1fr;
        }
    }

    @media(max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .article-list-content {
            grid-template-columns: 1fr;
        }

        .search-wrapper {
            flex-direction: column;
        }
    }

    /* Icons */
    .icon {
        width: 16px;
        height: 16px;
        display: inline-block;
    }

