/* ==========================================================================
   🌟 PROFESSIONAL NEWS WEBSITE - CREATIVE DESIGN 🌟
   Version: 3.0 - Revolutionary Creative Redesign
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   ✨ CSS VARIABLES - Creative Professional Color Scheme ✨
   ========================================================================== */
:root {
    /* Primary Colors - Deep Crimson Theme */
    --primary-color: #b8001f;
    --primary-dark: #8a0018;
    --primary-light: #d4233c;
    --primary-gradient: linear-gradient(135deg, #b8001f 0%, #8a0018 50%, #5c0010 100%);
    --primary-glow: 0 0 30px rgba(184, 0, 31, 0.4);

    /* Secondary Colors - Elegant Dark */
    --secondary-color: #0f0f1a;
    --secondary-light: #1a1a2e;
    --secondary-gradient: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);

    /* Accent Colors - Premium Gold & Blue */
    --accent-gold: #ffd700;
    --accent-gold-light: #ffe44d;
    --accent-blue: #0066ff;
    --accent-teal: #00d4aa;
    --accent-purple: #8b5cf6;

    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-light: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Neutral Colors */
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --bg-dark: #0f0f1a;
    --bg-gradient: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);

    /* Text Colors */
    --text-primary: #0f0f1a;
    --text-secondary: #3d4852;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: var(--primary-color);

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(184, 0, 31, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* ==========================================================================
   ✨ BASE STYLES - Creative Foundation ✨
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    direction: rtl;
    font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #d3d3d3;
    color: #1a1a2e;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
    position: relative;
    letter-spacing: -0.01em;
}

@media (max-width: 1439px) {
    body {
        overflow-x: hidden;

    }
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(184, 0, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   📦 CONTAINER - Responsive Wrapper
   ========================================================================== */
.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

/* ==========================================================================
   🎭 OVERLAY - Premium Modal Backdrop
   ========================================================================== */
.over-lay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    transition: all var(--transition-slow);
}

.over-lay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   🎨 SECTION HEADERS - Creative Titles
   ========================================================================== */
.slider-wrap {
    position: relative;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
}

.slider-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 12px 28px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(184, 0, 31, 0.25);
}

.section-header h2::before {
    display: none;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-dark);
}

/* Pulse Animation */
.pulse-animation {
    animation: none;
}

@keyframes pulse-elegant {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* ==========================================================================
   TOP DATE BADGE
   ========================================================================== */
.top_date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    /* background: var(--secondary-color); */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top_date::before {
    display: none;
}

.top_date::after {
    display: none;
}

/* ==========================================================================
   MAIN BOX - Professional Card Design
   ========================================================================== */
.main-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.main-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 16px 16px 0;
}

.main-box::after {
    display: none;
}

.main-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */
.slider-wrap .right-1,
.slider-wrap .left-1 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-wrap .right-1:hover,
.slider-wrap .left-1:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.slider-wrap .right-1:active,
.slider-wrap .left-1:active {
    transform: scale(0.95);
}

/* ==========================================================================
   PRODUCT SLIDE - Carousel
   ========================================================================== */
.product-slide .crates {
    padding: 20px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
}

.product-slide .crates::-webkit-scrollbar {
    display: none;
}

.product-slide .crates .crate {
    display: flex;
    gap: 20px;
    padding: 16px 8px;
    flex: none;
}

.product-slide .box {
    max-width: 300px;
    min-width: 260px;
    display: flex;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-slide .box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 12px 12px 0;
}

.product-slide .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-slide .box:hover::before {
    height: 100%;
}

.product-slide .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.product-slide .box:hover .title p {
    color: var(--primary-color);
}

.product-slide .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-slide .title span::before {
    display: none;
}

/* ==========================================================================
   MAIN SECTION - Grid Layout
   ========================================================================== */
.main-section {
    display: flex;
    align-items: flex-start;
    /* grid-template-areas: "content content content content content content content content side side side side"; */
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    /* max-width: 75%; */
    /* margin: auto; */
    position: relative;
}

.main-section::before {
    display: none;
}

@media (max-width: 860px) {
    .main-section {
        display: block;


        grid-template-areas:
            "content content content content"
            "side side side side";
        gap: var(--space-lg);
    }
}

.main-section .content {
    grid-area: content;
}

.main-section .side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.main-section .side .box-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-section .side .box-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.main-section .side .box-image:hover::before {
    opacity: 1;
}

.main-section .side .box-image .main-image {
    width: 370px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-spring);
}

.main-section .side .box-image .main-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.center-content {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*md*/
@media (max-width: 768px) {
    .center-content {
        flex-wrap: wrap;
    }
}



/* ==========================================================================
   SIDE BOX - Professional Sidebar Cards (Dark Theme)
   ========================================================================== */
.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(180deg, #1e2a4a 0%, #0f1629 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.side-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.side-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.side-box .side-title {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-box .side-title::before {
    display: none;
}

.side-box .side-title h2 {
    background: transparent;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    width: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.side-box .side-title h2::before {
    content: '';
    width: 5px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary-color), #ff6b6b);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(184, 0, 31, 0.5);
}

.side-box .content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-box .content-box .image-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.side-box .content-box .image-title:hover {
    padding-right: 8px;
}

.side-box .content-box .image-title .image {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.side-box .content-box .image-title .image::after {
    display: none;
}

.side-box .content-box .image-title .image:hover::after {
    opacity: 0;
}

.side-box .content-box .image-title .image img {
    width: 370px;
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.side-box .content-box .image-title .image:hover img {
    transform: scale(1.08);
}

.side-box .content-box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title .head {
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
}

.side-box .content-box .image-title .title .head h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    transition: color var(--transition-fast);
}

.side-box .content-box .image-title .title .head h3:hover {
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .head span {
    font-size: 2rem;
    font-style: italic;
    padding: var(--space-sm);
    color: #ff6b6b;
    font-weight: 700;
    border-right: 3px solid #ff6b6b;
    opacity: 0.8;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .image-title .title p i {
    margin-left: var(--space-sm);
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .image-title .title .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .image-title .title .social li a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   OTHER NEWS - Numbered Items (Most Read Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .other-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-box .content-box .other-news .trick {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.side-box .content-box .other-news .trick:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(184, 0, 31, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.side-box .content-box .other-news .trick .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--primary-color) 0%, #a30020 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow:
        0 6px 16px rgba(184, 0, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.side-box .content-box .other-news .trick:hover .number {
    transform: scale(1.12) rotate(-8deg);
    box-shadow:
        0 10px 25px rgba(184, 0, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.side-box .content-box .other-news .trick .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.side-box .content-box .other-news .trick .title .descr {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .other-news .trick:hover .title .descr {
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box .content-box .other-news .trick .title .share p {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .other-news .trick .title .share p i {
    margin-left: 6px;
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .other-news .trick .title .share .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: block;
}

.side-box .content-box .other-news .trick .title .share .social li a:hover {
    color: #ff6b6b;
    transform: scale(1.15);
}

/* ==========================================================================
   Side Box - Box Items (Read Also Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .box {
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
}

.side-box .content-box .box:hover {
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .box img {
    width: 130px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.side-box .content-box .box:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.side-box .content-box .box .title p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .box:hover .title p {
    color: #ff6b6b;
}

.side-box .content-box .box .title .time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-box .content-box .box .title .time i {
    color: #ff6b6b;
}

/* ==========================================================================
   MAIN BOX - Card with Title Bar
   ========================================================================== */
.main-box {
    position: relative;
    padding: var(--space-lg) var(--space-lg) 60px;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.main-box:hover {
    box-shadow: var(--shadow-lg);
}

.main-box .main-button {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    padding: 10px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-box .main-button:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.main-box .main-title {
    margin: var(--space-md) 0;
    border-bottom: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.main-box .main-title h1 {
    margin: 0;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    width: fit-content;
    border-radius: var(--radius-sm);
    position: relative;
}

.main-box .main-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-dark);
}

.main-box .main-title .main-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.main-box .main-title .main-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.main-box .main-title .main-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.08);
}

/* ==========================================================================
   HEADER - Professional News Header
   ========================================================================== */
.header {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0f1629 0%, #1e2a4a 50%, #0f1629 100%);
    border-bottom: none;
    position: relative;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); */
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.header .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* overflow: hidden; */
    backdrop-filter: blur(10px);
}

.header .side-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.header .center-section {
    position: relative;
    z-index: 1;
    padding: 8px;
}

.header .center-section img {
    width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.header .center-section img:hover {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(255, 255, 255, 0.2));
}

.header .side-section p {
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: none;
}

.header .side-section p:first-of-type {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 800;
}

/* ==========================================================================
   🧭 NAVIGATION - Premium Sticky Nav
   ========================================================================== */


ul.nav li {
    position: relative;
}

ul.nav>li>a {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 22px;
    position: relative;
    letter-spacing: -0.01em;
}

ul.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--primary-gradient);
    transition: transform var(--transition-normal);
    border-radius: 2px 2px 0 0;
}

ul.nav>li:last-of-type {
    margin-left: var(--space-md);
}

ul.nav>li>a:hover,
ul.nav>li>a.active {
    color: var(--primary-color);
    background: transparent;
}

ul.nav>li>a:hover::after,
ul.nav>li>a.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1000px) {

    .center-section,
    ul.nav {
        display: none;
    }
}

/* Mega Menu Dropdown */
ul.nav>li .mega-menu {
    position: absolute;
    background: var(--bg-secondary);
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 220px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav>li .mega-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

ul.nav>li .mega-menu li a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    padding-right: 20px;
}

ul.nav>li:not(:last-of-type) .mega-menu {
    right: 0;
}

ul.nav>li:last-of-type .mega-menu {
    left: 0;
}

ul.nav>li:hover .mega-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Search in Nav */
ul.nav span {
    position: relative;
    cursor: pointer;
    padding: var(--space-sm);
}

ul.nav span form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: calc(100% + 10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 320px;
    left: 0;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav span form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

ul.nav span form .input-search {
    padding-inline: 0;
    position: relative;
    width: 100%;
}

ul.nav span form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

ul.nav span form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

ul.nav span form .input-search input:focus {
    border-color: var(--primary-color);
}

/* ==========================================================================
   SMALL HEADER - Mobile Header
   ========================================================================== */
.header-small {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-md);
    background: var(--bg-secondary);
}

.header-small form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: 100%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 90%;
    left: 50%;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

.header-small form.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-small form .input-search {
    position: relative;
    width: 100%;
}

.header-small form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.header-small form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.header-small form .input-search input:focus {
    border-color: var(--primary-color);
}

.header-small .bars i,
.header-small .search i {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header-small .bars i:hover,
.header-small .search i:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.header-small .logo img {
    width: 80px;
}

@media (min-width: 1000px) {
    .header-small {
        display: none;
    }
}

/* ==========================================================================
   POPUP NAV - Mobile Navigation Drawer
   ========================================================================== */
.popup-nav {
    padding: var(--space-xl) 0;
    position: fixed;
    background: var(--bg-secondary);
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    right: 0;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: transform var(--transition-slow);
    transform: translateX(100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    /* overflow-y: auto; */
}

.popup-nav.active {
    transform: translateX(0);
}

.close {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.close:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.popup-nav form {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.popup-nav form .input-search {
    position: relative;
    width: 100%;
}

.popup-nav form .input-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.popup-nav form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 14px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    transition: border-color var(--transition-fast);
}

.popup-nav form .input-search input:focus {
    border-color: var(--primary-color);
}

.popup-nav .links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0 var(--space-lg);
}

.popup-nav .links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.popup-nav .links a:hover {
    color: var(--primary-color);
    padding-right: var(--space-sm);
}

.popup-nav .social-media {
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-bottom: var(--space-lg);
}

.popup-nav .social-media a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-fast);
}

.popup-nav .social-media a:hover {
    color: var(--text-white);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   EGYPT NEWS SECTION
   ========================================================================== */
.egypt-news .image-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.egypt-news .image-title .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.egypt-news .image-title .image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.egypt-news .image-title .image:hover img {
    transform: scale(1.03);
}

.egypt-news .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.egypt-news .image-title .title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.egypt-news .image-title .title h2:hover {
    color: var(--primary-color);
}

.egypt-news .image-title .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.egypt-news .image-title .title .time span,
.egypt-news .image-title .title .time i {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.egypt-news .description {
    padding: var(--space-xl) 0;
}

.egypt-news .description p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.egypt-news .description .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-lg);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.egypt-news .description .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.egypt-news .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.egypt-news .links .part-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (max-width: 520px) {
    .egypt-news .links {
        grid-template-columns: 1fr;
    }

    .egypt-news .links .part-links {
        gap: var(--space-md);
    }
}

.egypt-news .links .part-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    transition: all var(--transition-fast);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
}

.egypt-news .links .part-links a i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.egypt-news .links .part-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.egypt-news .links .part-links a:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   SPORTS SECTION - Card Grid
   ========================================================================== */
.sports {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 650px) {
    .sports {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .sports {
        grid-template-columns: 1fr;
    }
}

.sports .spor {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.sports .spor:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sports .spor .image {
    position: relative;
    overflow: hidden;
}

.sports .spor .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sports .spor:hover .image img {
    transform: scale(1.05);
}

.sports .spor .image .tick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.sports .spor h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 var(--space-md);
    transition: color var(--transition-fast);
}

.sports .spor:hover h3 {
    color: var(--primary-color);
}

.sports .spor .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 var(--space-md) var(--space-md);
}

/* ==========================================================================
   SCHOOL & UNIVERSITY SECTION
   ========================================================================== */
.school-univ .first-box {
    padding: var(--space-lg) 0;
    padding-bottom: 0px !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 650px) {
    .school-univ .first-box {
        grid-template-columns: 1fr;
    }
}

.school-univ .first-box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.school-univ .first-box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.school-univ .first-box .title-descrip p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.school-univ .first-box .title-descrip .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.school-univ .first-box img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

@media (max-width: 650px) {
    .school-univ .first-box img {
        order: -1;
    }
}

.school-univ .boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 650px) {
    .school-univ .boxs {
        grid-template-columns: 1fr;
    }
}

.sports .boxs .box {
    padding: 0px !important
}



.school-univ .boxs .box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.school-univ .boxs .box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.school-univ .boxs .box .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.school-univ .boxs .box .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.school-univ .boxs .box:hover .title p {
    color: var(--primary-color);
}

.school-univ .boxs .box .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.school-univ .boxs .box .image,
.sports .boxs .box .image {
    width: 140px;
    flex-shrink: 0;
}

.school-univ .boxs .box .image img,
.sports .boxs .box .image img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ==========================================================================
   ECONOMY SECTION
   ========================================================================== */
.economy {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* .economy .box {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
} */

.economy .box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

@media (max-width: 650px) {
    .economy .box {
        flex-direction: column;
    }
}

.economy .box .title {
    flex: 70%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.economy .box .title h2 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.economy .box:hover .title h2 {
    color: var(--primary-color);
}

.economy .box .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.economy .box .title p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.economy .box .image {
    flex: 30%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

@media (max-width: 650px) {
    .economy .box .image {
        order: -1;
    }
}

.economy .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.economy .box:hover .image img {
    transform: scale(1.05);
}

.economy .smallBoxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;


}

@media (max-width: 650px) {
    .economy .smallBoxs {
        grid-template-columns: repeat(1, 1fr);

    }
}

/* ==========================================================================
   ARAB & WORLD SECTION
   ========================================================================== */
.arab-world {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.arab-world>div {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.arab-world>div:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.arab-world .image {
    position: relative;
    overflow: hidden;
}

.arab-world .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.arab-world>div:hover .image img {
    transform: scale(1.05);
}

.arab-world .image .trick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
}

.arab-world .title {
    padding: var(--space-md);
}

.arab-world .title h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.arab-world>div:hover .title h3 {
    color: var(--primary-color);
}

.arab-world .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ==========================================================================
   COLLECTION SECTION
   ========================================================================== */
.collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    column-gap: var(--space-lg);
    row-gap: var(--space-md);
}

.collection .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.collection .big-box .box {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.collection .big-box .box:hover {
    background: var(--bg-tertiary);
    transform: translateX(-4px);
}

.collection .big-box .box img {
    width: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

.collection .box .title p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.collection .big-box .box:hover .title p {
    color: var(--primary-color);
}

.collection .box .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================================================
   NEWS PAGE - Category & Listings
   ========================================================================== */
.categ {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.categ a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.categ a:hover {
    color: var(--primary-color);
}

.categ span {
    color: var(--text-muted);
}

.news .content-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .news .content-news {
        grid-template-columns: 1fr;
    }
}

.news .content-news .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news .content-news .big-box .box {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.news .content-news .big-box .box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(184, 0, 31, 0.15);
}

@media (max-width: 560px) {
    .news .content-news .big-box .box {
        flex-direction: column;
    }
}

.news .content-news .big-box .box .image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.news .content-news .big-box .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news .content-news .big-box .box:hover .image img {
    transform: scale(1.05);
}

.news .content-news .big-box .box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.news .content-news .big-box .box .title-descrip h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.news .content-news .big-box .box:hover .title-descrip h3 {
    color: var(--primary-color);
}

.news .content-news .big-box .box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news .content-news .big-box .box .title-descrip p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .content-news .big-box .box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    margin-top: auto;
    padding: 10px 20px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    width: fit-content;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

.news .content-news .big-box .box .title-descrip .more:hover {
    background: #8a0018;
    transform: translateX(-4px);
}

/* ==========================================================================
   NEWS DETAILS PAGE
   ========================================================================== */
.news-details .title-image-social {
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}



.news-details .title-image-social .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news-details .title-image-social .title h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
}

.news-details .title-image-social .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-details .title-image-social .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.news-details .title-image-social .image img {
    width: 100%;
}

.news-details .title-image-social .social-views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.news-details .title-image-social .social-views .views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding-right: var(--space-lg);
}

.news-details .title-image-social .social-views .social .media {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social .media:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .news-details .title-image-social .social-views .social .media {
        padding: 8px 12px;
    }
}

.news-details .title-image-social .social-views .social a .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.news-details .title-image-social .social-views .social a .facebook {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.news-details .title-image-social .social-views .social>.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.news-details .title-image-social .social-views .social>.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.news-details .title-image-social .social-views .social .media i {
    font-size: 1.125rem;
}

.news-details .title-image-social .social-views .social .media span {
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .news-details .title-image-social .social-views .social .media span {
        display: none;
    }
}

.news-details .title-image-social .social-views .views .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.news-details .title-image-social .social-views .views::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--border-medium);
}

.news-details .title-image-social .social-views .views .box span:first-child {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.news-details .title-image-social .social-views .views .box span:last-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-details .discription {
    padding: var(--space-xl) 0;
}

.news-details .discription p {
    line-height: 2;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: justify;
    color: var(--text-secondary);
}

.about-details .description p {
    padding: var(--space-lg);
    line-height: 1.9;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.about-details .description .image {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ==========================================================================
   FOOTER - Professional Footer
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #1e2a4a 0%, #0f1629 100%);
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer .content-footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.footer .content-footer .logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .content-footer .logo img {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.4s ease;
}

.footer .content-footer .logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.footer .content-footer .logo p {
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.footer .content-footer .links h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer .content-footer .links h4::before {
    display: none;
}

.footer .content-footer .links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, #ffd93d);
    border-radius: 3px;
}

.footer .content-footer .links .content-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

@media (max-width: 1030px) {
    .footer .content-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .content-footer .logo {
        align-items: center;
    }

    .footer .content-footer .links {
        align-items: center;
    }

    .footer .content-footer .links h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer .content-footer .links .content-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .content-footer .links .content-links .link a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
}

.footer .content-footer .links .content-links .link a::before {
    content: '◄';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b6b;
    font-size: 0.7rem;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #ffffff;
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    padding-left: 30px;
}

.footer .content-footer .links .content-links .link a:hover::before {
    opacity: 1;
    left: 10px;
}

.footer .content-footer .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer .content-footer .big-box .box {
    display: flex;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.footer .content-footer .big-box .box:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer .content-footer .big-box .box img {
    width: 120px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer .content-footer .big-box .box:hover img {
    transform: scale(1.05);
}

.footer .content-footer .box .title p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer .content-footer .big-box .box:hover .title p {
    color: #ffffff;
}

.footer .content-footer .box .title .time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .content-footer .box .title .time::before {
    content: '🕐';
    font-size: 0.75rem;
}

.footer .copy-right {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.35);
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.footer .copy-right a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer .copy-right a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HERO SLIDER - Professional Full-Width Slider
   ========================================================================== */
.slider-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10;
}

.slider-container .slider {
    width: 100%;
    height: 45vw;
    max-height: 550px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 750px) {
    .slider-container .slider {
        height: 60vw;
    }
}

.slider-container .slider .image::after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    z-index: 1;
}

.slider-container .slider .image {
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-container .slider .image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-container .slider .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.slider-container .slider .image.active img {
    transform: scale(1.08);
}

.slider-container .slider .image .title {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    right: 40px;
    width: 85%;
    max-width: 850px;
    padding-left: var(--space-xl);
    pointer-events: none;
}

.slider-container .slider .image .title * {
    pointer-events: auto;
}

.slider-container .slider .image .title h2 {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.7;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slider-container .slider .image .title h2 a {
    transition: all var(--transition-normal);
    display: inline;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold));
    background-size: 0% 2px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.slider-container .slider .image .title h2 a:hover {
    color: var(--accent-gold);
    background-size: 100% 2px;
    background-position: left bottom;
}

@media (max-width: 680px) {
    .slider-container .slider .image .title {
        bottom: 25px;
        right: 20px;
        gap: var(--space-md);
    }
}

.slider-container .slider .image .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Thumbnails - Premium Style */
.slider-container .thumbnails {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    position: absolute;
    bottom: -80px;
    width: 100%;
    right: 0;
    padding: 0 var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-container .thumbnails::-webkit-scrollbar {
    display: none;
}

.slider-container .thumbnails img {
    width: 90px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0.5;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-sm);
}

.slider-container .thumbnails img:hover {
    opacity: 0.85;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-container .thumbnails img.active {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

/* Navigation Buttons - Premium */
.slider-container .navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    z-index: 10;
    pointer-events: none;
}

.slider-container button {
    padding: 22px 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-spring);
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    pointer-events: auto;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 650px) {
    .slider-container button {
        padding: 16px 12px;
        font-size: 1.1rem;
    }
}

.slider-container button:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--primary-glow);
    border-color: transparent;
}

/* ==========================================================================
   📊 TOP BAR - Premium Header Bar
   ========================================================================== */
.topbar {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 11;
    background: linear-gradient(135deg, #0f1629 0%, #1e2a4a 50%, #0f1629 100%);
    border-bottom: 1px solid var(--glass-border);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    backdrop-filter: blur(10px);
}

.container,
.container_full {
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.header .container {
    height: 100%;
}

.container {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 16px);
    }
}

/* Navigation Row */
.topbar .nav_row,
.topbar .nav_icon {
    height: 40px;
}

.topbar .nav_row,
.topbar .search_no_expand .search_input {
    line-height: 40px;
}

.topbar .nav_row {
    height: 40px;
    line-height: 40px;
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Alignment Classes */
.nav_left {
    margin-right: auto;
}

.nav_center {
    margin: 0 auto;
}

.nav_right {
    margin-left: auto;
}

.nav_grow {
    flex: 1;
}

.nav_alignleft {
    justify-content: flex-start;
}

.nav_aligncenter {
    justify-content: center;
}

.nav_alignright {
    justify-content: flex-end;
}

/* Item Wrap */
.item_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav Items */
.topbar .nav_item {
    padding: 0 var(--space-md);
    border-right: 1px solid var(--border-light);
}

.nav_item:last-child {
    padding-right: 0;
    border-right: none;
}

.nav_item:first-child {
    padding-left: 0;
}

/* Main Menu */
.main_menu>li,
.menu>li {
    float: right;
    text-align: right;
    position: relative;
    padding-right: 1.2em;
}

.menu>li {
    text-align: left;
}

.menu>li:first-child {
    padding-right: 0;
}

.menu>li:last-child {
    border-right-width: 0;
}

.menu a {
    display: block;
    position: relative;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.menu a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   TICKER / BREAKING NEWS - Modern Marquee
   ========================================================================== */
.ticker-header {
    padding: 0;
    background: var(--bg-secondary);
}

.ticker-container {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.news-label {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    letter-spacing: 0.5px;
}

.news-label::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 16px;
    background: var(--primary-dark);
    transform: skewX(-10deg);
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    background: var(--bg-secondary);
    display: flex;
    padding: 8px 0;
}

.ticker-move {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item a {
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.ticker-item a:hover {
    color: var(--primary-color);
}

.ticker-item .dot {
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: inline-block;
    margin-left: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover effect */
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.ticker-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 15px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin-right: 10px;
}

.ticker-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b6b;
    transform: scale(1.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.map {
    flex: 2;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-sm);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.contact-info span {
    font-weight: 600;
    color: var(--text-primary);
}

.social-media {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-media span {
    font-weight: 600;
    margin-left: var(--space-md);
    color: var(--text-primary);
}

.social-link {
    font-size: 1.25rem;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--primary-glow);
}

/* ==========================================================================
   🎨 UTILITY CLASSES & PREMIUM ENHANCEMENTS
   ========================================================================== */

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border-medium), var(--text-muted));
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-tertiary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Premium Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 0, 31, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(184, 0, 31, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Animate on Scroll Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Floating Elements */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glow Effect */
.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Image Placeholder */
img[src=""],
img:not([src]) {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-light) 100%);
    min-height: 100px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--transition-spring);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Print Styles */
@media print {

    .header-small,
    .popup-nav,
    .ticker-container,
    .navigation,
    .thumbnails,
    .footer {
        display: none !important;
    }

    body {
        background-color: #d3d3d3;
        color: black;
    }

    .main-box,
    .side-box {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slider-container .slider .image.active img {
        transform: none;
    }

    .ticker-move {
        animation: none;
    }
}

/* ==========================================================================
   🌙 DARK MODE SUPPORT (Optional)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0f0f1a;
        --bg-secondary: #1a1a2e;
        --bg-tertiary: #252540;
        --text-primary: #f5f5f7;
        --text-secondary: #c5c5c7;
        --border-light: rgba(255, 255, 255, 0.1);
        --glass-light: rgba(255, 255, 255, 0.03);
        --glass-dark: rgba(0, 0, 0, 0.4);
    }
}

س
/* ==========================================================================
   🌟 PROFESSIONAL NEWS WEBSITE - CREATIVE DESIGN 🌟
   Version: 3.0 - Revolutionary Creative Redesign
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   ✨ CSS VARIABLES - Creative Professional Color Scheme ✨
   ========================================================================== */
:root {
    /* Primary Colors - Deep Crimson Theme */
    --primary-color: #b8001f;
    --primary-dark: #8a0018;
    --primary-light: #d4233c;
    --primary-gradient: linear-gradient(135deg, #b8001f 0%, #8a0018 50%, #5c0010 100%);
    --primary-glow: 0 0 30px rgba(184, 0, 31, 0.4);

    /* Secondary Colors - Elegant Dark */
    --secondary-color: #0f0f1a;
    --secondary-light: #1a1a2e;
    --secondary-gradient: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);

    /* Accent Colors - Premium Gold & Blue */
    --accent-gold: #ffd700;
    --accent-gold-light: #ffe44d;
    --accent-blue: #0066ff;
    --accent-teal: #00d4aa;
    --accent-purple: #8b5cf6;

    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-light: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Neutral Colors */
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --bg-dark: #0f0f1a;
    --bg-gradient: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);

    /* Text Colors */
    --text-primary: #0f0f1a;
    --text-secondary: #3d4852;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: var(--primary-color);

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(184, 0, 31, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* ==========================================================================
   ✨ BASE STYLES - Creative Foundation ✨
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* overflow-x: hidden; */
}

body {
    direction: rtl;
    font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #d3d3d3;
    color: #1a1a2e;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
    position: relative;
    letter-spacing: -0.01em;
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(184, 0, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   📦 CONTAINER - Responsive Wrapper
   ========================================================================== */
.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

/* ==========================================================================
   🎭 OVERLAY - Premium Modal Backdrop
   ========================================================================== */
.over-lay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    transition: all var(--transition-slow);
}

.over-lay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   🎨 SECTION HEADERS - Creative Titles
   ========================================================================== */
.slider-wrap {
    position: relative;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
}

.slider-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 12px 28px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(184, 0, 31, 0.25);
}

.section-header h2::before {
    display: none;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-dark);
}

/* Pulse Animation */
.pulse-animation {
    animation: none;
}

@keyframes pulse-elegant {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* ==========================================================================
   TOP DATE BADGE
   ========================================================================== */
.top_date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    /* background: var(--secondary-color); */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top_date::before {
    display: none;
}

.top_date::after {
    display: none;
}

/* ==========================================================================
   MAIN BOX - Professional Card Design
   ========================================================================== */
.main-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.main-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 16px 16px 0;
}

.main-box::after {
    display: none;
}

.main-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */
.slider-wrap .right-1,
.slider-wrap .left-1 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-wrap .right-1:hover,
.slider-wrap .left-1:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.slider-wrap .right-1:active,
.slider-wrap .left-1:active {
    transform: scale(0.95);
}

/* ==========================================================================
   PRODUCT SLIDE - Carousel
   ========================================================================== */
.product-slide .crates {
    padding: 20px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
}

.product-slide .crates::-webkit-scrollbar {
    display: none;
}

.product-slide .crates .crate {
    display: flex;
    gap: 20px;
    padding: 16px 8px;
    flex: none;
}

.product-slide .box {
    max-width: 300px;
    min-width: 260px;
    display: flex;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-slide .box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 12px 12px 0;
}

.product-slide .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-slide .box:hover::before {
    height: 100%;
}

.product-slide .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.product-slide .box:hover .title p {
    color: var(--primary-color);
}

.product-slide .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-slide .title span::before {
    display: none;
}

/* ==========================================================================
   MAIN SECTION - Grid Layout
   ========================================================================== */
.main-section {
    /* display: grid;
    grid-template-areas: "content content content content content content content content side side side side"; */
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    position: relative;
}

.main-section::before {
    display: none;
}

@media (max-width: 860px) {
    .main-section {
        grid-template-areas:
            "content content content content"
            "side side side side";
        gap: var(--space-lg);
    }
}

.main-section .content {
    grid-area: content;
}

.main-section .side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.main-section .side .box-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-section .side .box-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.main-section .side .box-image:hover::before {
    opacity: 1;
}

.main-section .side .box-image .main-image {
    width: 370px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-spring);
}

.main-section .side .box-image .main-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   SIDE BOX - Professional Sidebar Cards (Dark Theme)
   ========================================================================== */
.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(180deg, #1e2a4a 0%, #0f1629 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.side-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.side-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.side-box .side-title {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-box .side-title::before {
    display: none;
}

.side-box .side-title h2 {
    background: transparent;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    width: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.side-box .side-title h2::before {
    content: '';
    width: 5px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary-color), #ff6b6b);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(184, 0, 31, 0.5);
}

.side-box .content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-box .content-box .image-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.side-box .content-box .image-title:hover {
    padding-right: 8px;
}

.side-box .content-box .image-title .image {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.side-box .content-box .image-title .image::after {
    display: none;
}

.side-box .content-box .image-title .image:hover::after {
    opacity: 0;
}

.side-box .content-box .image-title .image img {
    width: 370px;
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.side-box .content-box .image-title .image:hover img {
    transform: scale(1.08);
}

.side-box .content-box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title .head {
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
}

.side-box .content-box .image-title .title .head h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    transition: color var(--transition-fast);
}

.side-box .content-box .image-title .title .head h3:hover {
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .head span {
    font-size: 2rem;
    font-style: italic;
    padding: var(--space-sm);
    color: #ff6b6b;
    font-weight: 700;
    border-right: 3px solid #ff6b6b;
    opacity: 0.8;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .image-title .title p i {
    margin-left: var(--space-sm);
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .image-title .title .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .image-title .title .social li a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   OTHER NEWS - Numbered Items (Most Read Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .other-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-box .content-box .other-news .trick {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.side-box .content-box .other-news .trick:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(184, 0, 31, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.side-box .content-box .other-news .trick .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--primary-color) 0%, #a30020 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow:
        0 6px 16px rgba(184, 0, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.side-box .content-box .other-news .trick:hover .number {
    transform: scale(1.12) rotate(-8deg);
    box-shadow:
        0 10px 25px rgba(184, 0, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.side-box .content-box .other-news .trick .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.side-box .content-box .other-news .trick .title .descr {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .other-news .trick:hover .title .descr {
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box .content-box .other-news .trick .title .share p {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .other-news .trick .title .share p i {
    margin-left: 6px;
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .other-news .trick .title .share .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: block;
}

.side-box .content-box .other-news .trick .title .share .social li a:hover {
    color: #ff6b6b;
    transform: scale(1.15);
}

/* ==========================================================================
   Side Box - Box Items (Read Also Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .box {
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
}

.side-box .content-box .box:hover {
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .box img {
    width: 130px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.side-box .content-box .box:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.side-box .content-box .box .title p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .box:hover .title p {
    color: #ff6b6b;
}

.side-box .content-box .box .title .time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-box .content-box .box .title .time i {
    color: #ff6b6b;
}

/* ==========================================================================
   MAIN BOX - Card with Title Bar
   ========================================================================== */
.main-box {
    position: relative;
    padding: var(--space-lg) var(--space-lg) 60px;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.main-box:hover {
    box-shadow: var(--shadow-lg);
}

.main-box .main-button {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    padding: 10px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-box .main-button:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.main-box .main-title {
    margin: var(--space-md) 0;
    border-bottom: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.main-box .main-title h1 {
    margin: 0;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    width: fit-content;
    border-radius: var(--radius-sm);
    position: relative;
}

.main-box .main-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-dark);
}

.main-box .main-title .main-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.main-box .main-title .main-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.main-box .main-title .main-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.08);
}

/* ==========================================================================
   HEADER - Professional News Header
   ========================================================================== */
.header {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1629 0%, #1e2a4a 50%, #0f1629 100%);
    border-bottom: none;
    flex-wrap: wrap;
    position: relative;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); */
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.header .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.header .side-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.header .center-section {
    position: relative;
    z-index: 1;
    padding: 8px;
}

.header .center-section img {
    width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.header .center-section img:hover {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(255, 255, 255, 0.2));
}

.header .side-section p {
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: none;
}

.header .side-section p:first-of-type {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 800;
}

.tarwisa {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px !important;
}


@media (max-width: 991px) {
    .tarwisa {
        display: none;
    }
}

.news-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* @media (max-width: 991px) {
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
} */





/* ==========================================================================
   🧭 NAVIGATION - Premium Sticky Nav
   ========================================================================== */
ul.nav {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 5px solid var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0 30px;
}

ul.nav li {
    position: relative;
}

ul.nav>li>a {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 22px;
    position: relative;
    letter-spacing: -0.01em;
}

ul.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--primary-gradient);
    transition: transform var(--transition-normal);
    border-radius: 2px 2px 0 0;
}

ul.nav>li:last-of-type {
    margin-left: var(--space-md);
}

ul.nav>li>a:hover,
ul.nav>li>a.active {
    color: var(--primary-color);
    background: transparent;
}

ul.nav>li>a:hover::after,
ul.nav>li>a.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1000px) {

    .center-section,
    ul.nav {
        display: none;
    }
}

/* Mega Menu Dropdown */
ul.nav>li .mega-menu {
    position: absolute;
    background: var(--bg-secondary);
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 220px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav>li .mega-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

ul.nav>li .mega-menu li a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    padding-right: 20px;
}

ul.nav>li:not(:last-of-type) .mega-menu {
    right: 0;
}

ul.nav>li:last-of-type .mega-menu {
    left: 0;
}

ul.nav>li:hover .mega-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Search in Nav */
ul.nav span {
    position: relative;
    cursor: pointer;
    padding: var(--space-sm);
}

ul.nav span form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: calc(100% + 10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 320px;
    left: 0;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav span form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

ul.nav span form .input-search {
    padding-inline: 0;
    position: relative;
    width: 100%;
}

ul.nav span form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

ul.nav span form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

ul.nav span form .input-search input:focus {
    border-color: var(--primary-color);
}

/* ==========================================================================
   SMALL HEADER - Mobile Header
   ========================================================================== */
.header-small {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-md);
    background: var(--bg-secondary);
}

.header-small form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: 100%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 90%;
    left: 50%;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

.header-small form.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-small form .input-search {
    position: relative;
    width: 100%;
}

.header-small form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.header-small form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.header-small form .input-search input:focus {
    border-color: var(--primary-color);
}

.header-small .bars i,
.header-small .search i {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header-small .bars i:hover,
.header-small .search i:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.header-small .logo img {
    width: 80px;
}

@media (min-width: 1000px) {
    .header-small {
        display: none;
    }
}

/* ==========================================================================
   POPUP NAV - Mobile Navigation Drawer
   ========================================================================== */
.popup-nav {
    padding: var(--space-xl) 0;
    position: fixed;
    background: var(--bg-secondary);
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    right: 0;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: transform var(--transition-slow);
    transform: translateX(100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.popup-nav.active {
    transform: translateX(0);
}

.close {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.close:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.popup-nav form {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.popup-nav form .input-search {
    position: relative;
    width: 100%;
}

.popup-nav form .input-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.popup-nav form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 14px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    transition: border-color var(--transition-fast);
}

.popup-nav form .input-search input:focus {
    border-color: var(--primary-color);
}

.popup-nav .links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0 var(--space-lg);
}

.popup-nav .links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.popup-nav .links a:hover {
    color: var(--primary-color);
    padding-right: var(--space-sm);
}

.popup-nav .social-media {
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-bottom: var(--space-lg);
}

.popup-nav .social-media a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-fast);
}

.popup-nav .social-media a:hover {
    color: var(--text-white);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   EGYPT NEWS SECTION
   ========================================================================== */
.egypt-news .image-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.egypt-news .image-title .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.egypt-news .image-title .image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.egypt-news .image-title .image:hover img {
    transform: scale(1.03);
}

.egypt-news .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.egypt-news .image-title .title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.egypt-news .image-title .title h2:hover {
    color: var(--primary-color);
}

.egypt-news .image-title .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.egypt-news .image-title .title .time span,
.egypt-news .image-title .title .time i {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.egypt-news .description {
    padding: var(--space-xl) 0;
}

.egypt-news .description p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.egypt-news .description .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-lg);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.egypt-news .description .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.egypt-news .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.egypt-news .links .part-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (max-width: 520px) {
    .egypt-news .links {
        grid-template-columns: 1fr;
    }

    .egypt-news .links .part-links {
        gap: var(--space-md);
    }
}

.egypt-news .links .part-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    transition: all var(--transition-fast);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
}

.egypt-news .links .part-links a i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.egypt-news .links .part-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.egypt-news .links .part-links a:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   SPORTS SECTION - Card Grid
   ========================================================================== */
.sports {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg); */
}

@media (max-width: 650px) {
    .sports {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .sports {
        grid-template-columns: 1fr;
    }
}

.sports .spor {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.sports .spor:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sports .spor .image {
    position: relative;
    overflow: hidden;
}

.sports .spor .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sports .spor:hover .image img {
    transform: scale(1.05);
}

.sports .spor .image .tick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.spor h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 var(--space-md);
    transition: color var(--transition-fast);
}

.sports .spor:hover h3 {
    color: var(--primary-color);
}

.spor .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 var(--space-md) var(--space-md);
}

/* ==========================================================================
   SCHOOL & UNIVERSITY SECTION
   ========================================================================== */
.school-univ .first-box {
    padding: var(--space-lg) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 650px) {
    .school-univ .first-box {
        grid-template-columns: 1fr;
    }
}

.school-univ .first-box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.school-univ .first-box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.school-univ .first-box .title-descrip h3 {
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.school-univ .first-box .title-descrip .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.school-univ .first-box img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

@media (max-width: 650px) {
    .school-univ .first-box img {
        order: -1;
    }
}

.school-univ .boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 650px) {

    .school-univ .boxs,
    .sports .boxs {
        grid-template-columns: 1fr;
    }
}



.school-univ .boxs .box,
.sports .boxs .box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.school-univ .boxs .box:hover,
.sports .boxs .box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.school-univ .boxs .box .title,
.sports .boxs .box .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.school-univ .boxs .box .title p,
.sports .boxs .box .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.school-univ .boxs .box:hover .title p {
    color: var(--primary-color);
}

.school-univ .boxs .box .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.school-univ .boxs .box .image,
.sports .boxs .box .image {
    width: 140px;
    flex-shrink: 0;
}

.school-univ .boxs .box .image img,
.sports .boxs .box .image img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ==========================================================================
   ECONOMY SECTION
   ========================================================================== */
.economy {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.economy .box {
    display: flex;
    gap: var(--space-lg);


}

.economy .mainEconomyNews {
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
    background: var(--bg-secondary);



}

.economy .box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

@media (max-width: 650px) {
    .economy .box {
        flex-direction: column;
    }
}

.economy .box .title {
    flex: 70%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.economy .box .title h2 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.economy .box:hover .title h2 {
    color: var(--primary-color);
}

.economy .box .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.economy .box .title p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.economy .box .image {
    flex: 30%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

@media (max-width: 650px) {
    .economy .box .image {
        order: -1;
    }
}

.economy .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.economy .box:hover .image img {
    transform: scale(1.05);
}

/* ==========================================================================
   ARAB & WORLD SECTION
   ========================================================================== */
.arab-world {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.arab-world>div {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.arab-world>div:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.arab-world .image {
    position: relative;
    overflow: hidden;
}

.arab-world .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.arab-world>div:hover .image img {
    transform: scale(1.05);
}

.arab-world .image .trick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
}

.arab-world .title {
    padding: var(--space-md);
}

.arab-world .title h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.arab-world>div:hover .title h3 {
    color: var(--primary-color);
}

.arab-world .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ==========================================================================
   COLLECTION SECTION
   ========================================================================== */
.collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    column-gap: var(--space-lg);
    row-gap: var(--space-md);
}

.collection .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.collection .big-box .box {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.collection .big-box .box:hover {
    background: var(--bg-tertiary);
    transform: translateX(-4px);
}

.collection .big-box .box img {
    width: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

.collection .box .title p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.collection .big-box .box:hover .title p {
    color: var(--primary-color);
}

.collection .box .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================================================
   NEWS PAGE - Category & Listings
   ========================================================================== */
.categ {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.categ a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.categ a:hover {
    color: var(--primary-color);
}

.categ span {
    color: var(--text-muted);
}

.news .content-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .news .content-news {
        grid-template-columns: 1fr;
    }
}

.news .content-news .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news .content-news .big-box .box {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.news .content-news .big-box .box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(184, 0, 31, 0.15);
}

@media (max-width: 560px) {
    .news .content-news .big-box .box {
        flex-direction: column;
    }
}

.news .content-news .big-box .box .image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.news .content-news .big-box .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news .content-news .big-box .box:hover .image img {
    transform: scale(1.05);
}

.news .content-news .big-box .box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.news .content-news .big-box .box .title-descrip h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.news .content-news .big-box .box:hover .title-descrip h3 {
    color: var(--primary-color);
}

.news .content-news .big-box .box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news .content-news .big-box .box .title-descrip p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .content-news .big-box .box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    margin-top: auto;
    padding: 10px 20px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    width: fit-content;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

.news .content-news .big-box .box .title-descrip .more:hover {
    background: #8a0018;
    transform: translateX(-4px);
}

.dual-sections {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    gap: 30px;
    margin: 20px 0;

}

.horizontal-news-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* ==========================================================================
   NEWS DETAILS PAGE
   ========================================================================== */
.news-details .title-image-social {
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.news-details .title-image-social .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news-details .title-image-social .title h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bg-primary);
}

.news-details .title-image-social .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-details .title-image-social .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.news-details .title-image-social .image img {
    width: 100%;
}

.news-details .title-image-social .social-views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.news-details .title-image-social .social-views .views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding-right: var(--space-lg);
}

.news-details .title-image-social .social-views .social .media {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social .media:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .news-details .title-image-social .social-views .social .media {
        padding: 8px 12px;
    }
}

.news-details .title-image-social .social-views .social a .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.news-details .title-image-social .social-views .social a .facebook {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.news-details .title-image-social .social-views .social>.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.news-details .title-image-social .social-views .social>.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.news-details .title-image-social .social-views .social .media i {
    font-size: 1.125rem;
}

.news-details .title-image-social .social-views .social .media span {
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .news-details .title-image-social .social-views .social .media span {
        display: none;
    }
}

.news-details .title-image-social .social-views .views .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.news-details .title-image-social .social-views .views::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--border-medium);
}

.news-details .title-image-social .social-views .views .box span:first-child {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.news-details .title-image-social .social-views .views .box span:last-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-details .discription {
    padding: var(--space-xl) 0;
}

.news-details .discription p {
    line-height: 2;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: justify;
    color: var(--bg-primary);
}

.about-details .description p {
    padding: var(--space-lg);
    line-height: 1.9;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.about-details .description .image {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ==========================================================================
   FOOTER - Professional Footer
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #1e2a4a 0%, #0f1629 100%);
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ff6b6b 25%,
            #ffd93d 50%,
            #6bcb77 75%,
            var(--primary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer .content-footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.footer .content-footer .logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .content-footer .logo img {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.4s ease;
}

.footer .content-footer .logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.footer .content-footer .logo p {
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.footer .content-footer .links h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer .content-footer .links h4::before {
    display: none;
}

.footer .content-footer .links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, #ffd93d);
    border-radius: 3px;
}

.footer .content-footer .links .content-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

@media (max-width: 1030px) {
    .footer .content-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .content-footer .logo {
        align-items: center;
    }

    .footer .content-footer .links {
        align-items: center;
    }

    .footer .content-footer .links h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer .content-footer .links .content-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .content-footer .links .content-links .link a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
}

.footer .content-footer .links .content-links .link a::before {
    content: '◄';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b6b;
    font-size: 0.7rem;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #ffffff;
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    padding-left: 30px;
}

.footer .content-footer .links .content-links .link a:hover::before {
    opacity: 1;
    left: 10px;
}

.footer .content-footer .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer .content-footer .big-box .box {
    display: flex;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.footer .content-footer .big-box .box:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer .content-footer .big-box .box img {
    width: 120px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer .content-footer .big-box .box:hover img {
    transform: scale(1.05);
}

.footer .content-footer .box .title p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer .content-footer .big-box .box:hover .title p {
    color: #ffffff;
}

.footer .content-footer .box .title .time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .content-footer .box .title .time::before {
    content: '🕐';
    font-size: 0.75rem;
}

.footer .copy-right {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.35);
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.footer .copy-right a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer .copy-right a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HERO SLIDER - Professional Full-Width Slider
   ========================================================================== */
.slider-container {
    position: relative;
    /* margin-bottom: 80px; */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10;
}

.slider-container .slider {
    width: 100%;
    height: 45vw;
    max-height: 550px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 750px) {
    .slider-container .slider {
        height: 60vw;
    }
}

.slider-container .slider .image::after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    z-index: 1;
}

.slider-container .slider .image {
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-container .slider .image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-container .slider .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.slider-container .slider .image.active img {
    transform: scale(1.08);
}

.slider-container .slider .image .title {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    right: 40px;
    width: 85%;
    max-width: 850px;
    padding-left: var(--space-xl);
    pointer-events: none;
}

.slider-container .slider .image .title * {
    pointer-events: auto;
}

.slider-container .slider .image .title h2 {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.7;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slider-container .slider .image .title h2 a {
    transition: all var(--transition-normal);
    display: inline;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold));
    background-size: 0% 2px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.slider-container .slider .image .title h2 a:hover {
    color: var(--accent-gold);
    background-size: 100% 2px;
    background-position: left bottom;
}

@media (max-width: 680px) {
    .slider-container .slider .image .title {
        bottom: 25px;
        right: 20px;
        gap: var(--space-md);
    }
}

.slider-container .slider .image .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Thumbnails - Premium Style */
.slider-container .thumbnails {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    position: absolute;
    bottom: -80px;
    width: 100%;
    right: 0;
    padding: 0 var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-container .thumbnails::-webkit-scrollbar {
    display: none;
}

.slider-container .thumbnails img {
    width: 90px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0.5;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-sm);
}

.slider-container .thumbnails img:hover {
    opacity: 0.85;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-container .thumbnails img.active {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

/* Navigation Buttons - Premium */
.slider-container .navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    z-index: 10;
    pointer-events: none;
}

.slider-container button {
    padding: 22px 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-spring);
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    pointer-events: auto;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 650px) {
    .slider-container button {
        padding: 16px 12px;
        font-size: 1.1rem;
    }
}

.slider-container button:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--primary-glow);
    border-color: transparent;
}

/* ==========================================================================
   📊 TOP BAR - Premium Header Bar
   ========================================================================== */
.topbar {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 11;
    background: linear-gradient(135deg, #0f1629 0%, #1e2a4a 50%, #0f1629 100%);
    border-bottom: 1px solid var(--glass-border);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    backdrop-filter: blur(10px);
}

.container,
.container_full {
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.header .container {
    height: 100%;
}

.container {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 16px);
    }
}

/* Navigation Row */
.topbar .nav_row,
.topbar .nav_icon {
    height: 40px;
}

.topbar .nav_row,
.topbar .search_no_expand .search_input {
    line-height: 40px;
}

.topbar .nav_row {
    height: 40px;
    line-height: 40px;
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Alignment Classes */
.nav_left {
    margin-right: auto;
}

.nav_center {
    margin: 0 auto;
}

.nav_right {
    margin-left: auto;
}

.nav_grow {
    flex: 1;
}

.nav_alignleft {
    justify-content: flex-start;
}

.nav_aligncenter {
    justify-content: center;
}

.nav_alignright {
    justify-content: flex-end;
}

/* Item Wrap */
.item_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav Items */
.topbar .nav_item {
    padding: 0 var(--space-md);
    border-right: 1px solid var(--border-light);
}

.nav_item:last-child {
    padding-right: 0;
    border-right: none;
}

.nav_item:first-child {
    padding-left: 0;
}

/* Main Menu */
.main_menu>li,
.menu>li {
    float: right;
    text-align: right;
    position: relative;
    padding-right: 1.2em;
}

.menu>li {
    text-align: left;
}

.menu>li:first-child {
    padding-right: 0;
}

.menu>li:last-child {
    border-right-width: 0;
}

.menu a {
    display: block;
    position: relative;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.menu a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   TICKER / BREAKING NEWS - Modern Marquee
   ========================================================================== */
.ticker-header {
    padding: 0;
    background: var(--bg-secondary);
}

.ticker-container {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.news-label {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    letter-spacing: 0.5px;
}

.news-label::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 16px;
    background: var(--primary-dark);
    transform: skewX(-10deg);
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    background: var(--bg-secondary);
    display: flex;
    padding: 8px 0;
}

.ticker-move {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item a {
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.ticker-item a:hover {
    color: var(--primary-color);
}

.ticker-item .dot {
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: inline-block;
    margin-left: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover effect */
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.ticker-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 15px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin-right: 10px;
}

.ticker-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b6b;
    transform: scale(1.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.map {
    flex: 2;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-sm);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.contact-info span {
    font-weight: 600;
    color: var(--text-primary);
}

.social-media {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-media span {
    font-weight: 600;
    margin-left: var(--space-md);
    color: var(--text-primary);
}

.social-link {
    font-size: 1.25rem;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--primary-glow);
}

/* ==========================================================================
   🎨 UTILITY CLASSES & PREMIUM ENHANCEMENTS
   ========================================================================== */

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border-medium), var(--text-muted));
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-tertiary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Premium Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 0, 31, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(184, 0, 31, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Animate on Scroll Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Floating Elements */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glow Effect */
.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Image Placeholder */
img[src=""],
img:not([src]) {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-light) 100%);
    min-height: 100px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--transition-spring);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Print Styles */
@media print {

    .header-small,
    .popup-nav,
    .ticker-container,
    .navigation,
    .thumbnails,
    .footer {
        display: none !important;
    }

    body {
        background-color: #d3d3d3;
        color: black;
    }

    .main-box,
    .side-box {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slider-container .slider .image.active img {
        transform: none;
    }

    .ticker-move {
        animation: none;
    }
}

/* ==========================================================================
   🌙 DARK MODE SUPPORT (Optional)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0f0f1a;
        --bg-secondary: #1a1a2e;
        --bg-tertiary: #252540;
        --text-primary: #f5f5f7;
        --text-secondary: #c5c5c7;
        --border-light: rgba(255, 255, 255, 0.1);
        --glass-light: rgba(255, 255, 255, 0.03);
        --glass-dark: rgba(0, 0, 0, 0.4);
    }
}



.swal-icon--error {
    border-color: #f27474;
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s;
}

.swal-icon--error__x-mark {
    position: relative;
    display: block;
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s;
}

.swal-icon--error__line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #f27474;
    display: block;
    top: 37px;
    border-radius: 2px;
}

.swal-icon--error__line--left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}

.swal-icon--error__line--right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}

@-webkit-keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

.swal-icon--warning {
    border-color: #f8bb86;
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate;
}

.swal-icon--warning__body {
    width: 5px;
    height: 47px;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
    position: absolute;
    left: 50%;
    background-color: #f8bb86;
}

.swal-icon--warning__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -4px;
    bottom: -11px;
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

.swal-icon--success {
    border-color: #a5dc86;
}

.swal-icon--success:after,
.swal-icon--success:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 280px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal-icon--success:before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.swal-icon--success:after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px;
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.swal-icon--success__ring {
    width: 80px;
    height: 80px;
    border: 4px solid hsla(98, 55%, 69%, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.swal-icon--success__hide-corners {
    width: 5px;
    height: 90px;
    background-color: #fff;
    padding: 1px;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal-icon--success__line {
    height: 5px;
    background-color: #a5dc86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.swal-icon--success__line--tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.swal-icon--success__line--long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.swal-icon--info {
    border-color: #c9dae1;
}

.swal-icon--info:before {
    width: 5px;
    height: 29px;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--info:after,
.swal-icon--info:before {
    content: "";
    position: absolute;
    left: 50%;
    background-color: #c9dae1;
}

.swal-icon--info:after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
}

.swal-icon {
    width: 80px;
    height: 80px;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    margin: 20px auto;
}

.swal-icon:first-child {
    margin-top: 32px;
}

.swal-icon--custom {
    width: auto;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
}

.swal-icon img {
    max-width: 100%;
    max-height: 100%;
}

.swal-title {
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: block;
    padding: 13px 16px;
    font-size: 27px;
    line-height: normal;
    text-align: center;
    margin-bottom: 0;
}

.swal-title:first-child {
    margin-top: 26px;
}

.swal-title:not(:first-child) {
    padding-bottom: 0;
}

.swal-title:not(:last-child) {
    margin-bottom: 13px;
}

.swal-text {
    font-size: 16px;
    position: relative;
    float: none;
    line-height: normal;
    vertical-align: top;
    text-align: left;
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.64);
    max-width: calc(100% - 20px);
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.swal-text:first-child {
    margin-top: 45px;
}

.swal-text:last-child {
    margin-bottom: 45px;
}

.swal-footer {
    text-align: right;
    padding-top: 13px;
    margin-top: 13px;
    padding: 13px 16px;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.swal-button-container {
    margin: 5px;
    display: inline-block;
    position: relative;
}

.swal-button {
    background-color: #7cd1f9;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.swal-button:not([disabled]):hover {
    background-color: #78cbf2;
}

.swal-button:active {
    background-color: #70bce0;
}

.swal-button:focus {
    outline: none;
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(43, 114, 165, 0.29);
}

.swal-button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.swal-button::-moz-focus-inner {
    border: 0;
}

.swal-button--cancel {
    color: #555;
    background-color: #efefef;
}

.swal-button--cancel:not([disabled]):hover {
    background-color: #e8e8e8;
}

.swal-button--cancel:active {
    background-color: #d7d7d7;
}

.swal-button--cancel:focus {
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(116, 136, 150, 0.29);
}

.swal-button--danger {
    background-color: #e64942;
}

.swal-button--danger:not([disabled]):hover {
    background-color: #df4740;
}

.swal-button--danger:active {
    background-color: #cf423b;
}

.swal-button--danger:focus {
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(165, 43, 43, 0.29);
}

.swal-content {
    padding: 0 20px;
    margin-top: 20px;
    font-size: medium;
}

.swal-content:last-child {
    margin-bottom: 20px;
}

.swal-content__input,
.swal-content__textarea {
    -webkit-appearance: none;
    background-color: #fff;
    border: none;
    font-size: 14px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 10px 13px;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.swal-content__input:focus,
.swal-content__textarea:focus {
    outline: none;
    border-color: #6db8ff;
}

.swal-content__textarea {
    resize: vertical;
}

.swal-button--loading {
    color: transparent;
}

.swal-button--loading~.swal-button__loader {
    opacity: 1;
}

.swal-button__loader {
    position: absolute;
    height: auto;
    width: 43px;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    pointer-events: none;
    opacity: 0;
}

.swal-button__loader div {
    display: inline-block;
    float: none;
    vertical-align: baseline;
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    margin: 2px;
    opacity: 0.4;
    border-radius: 7px;
    background-color: hsla(0, 0%, 100%, 0.9);
    transition: background 0.2s;
    -webkit-animation: swal-loading-anim 1s infinite;
    animation: swal-loading-anim 1s infinite;
}

.swal-button__loader div:nth-child(3n + 2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.swal-button__loader div:nth-child(3n + 3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

@-webkit-keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

@keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

.swal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.swal-overlay:before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.swal-overlay--show-modal {
    opacity: 1;
    pointer-events: auto;
}

.swal-overlay--show-modal .swal-modal {
    opacity: 1;
    pointer-events: auto;
    box-sizing: border-box;
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
    will-change: transform;
}

.swal-modal {
    width: 478px;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    position: static;
    margin: 20px auto;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 10001;
    transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.2s;
    transition:
        transform 0.3s,
        opacity 0.2s,
        -webkit-transform 0.3s;
}

@media (max-width: 500px) {
    .swal-modal {
        width: calc(100% - 20px);
    }
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


._button_10caf_25 {
    border-radius: 8px;
    border: unset;
    cursor: pointer;
    transition: 0.3s;
}

._button_10caf_25:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

._button_default_10caf_35 {
    background: transparent;
    color: #43434e;
}

._button_default_10caf_35:hover {
    background: #f3f4f7;
}

._button_default_10caf_35:active {
    background: #8e8e8e;
}

._button_default_10caf_35 ._svg_10caf_45 * {
    fill: #43434e;
}

._button_primary_10caf_48 {
    background: #007eff;
    color: #fff;
}

._button_primary_10caf_48:hover {
    background: #3398ff;
}

._button_primary_10caf_48:active {
    background: #66b2ff;
}

._button_primary_10caf_48 ._svg_10caf_45 * {
    fill: #fff;
}

._button_link_10caf_61 {
    background: transparent;
    color: #007eff;
}

._button_link_10caf_61:hover {
    color: #3398ff;
}

._button_link_10caf_61:active {
    color: #66b2ff;
}

._button_link_10caf_61 ._svg_10caf_45 * {
    fill: #007eff;
}

._button_link_10caf_61 ._svg_10caf_45 *:hover {
    fill: #3398ff;
}

._button_link_10caf_61 ._svg_10caf_45 *:active {
    fill: #66b2ff;
}

._button_large_10caf_80 {
    padding: 12px 16px;
}

._button_large_10caf_80 * {
    font-size: 16px;
}

._button_medium_10caf_86 {
    padding: 8px 16px;
}

._button_medium_10caf_86 * {
    font-size: 16px;
}

._button_small_10caf_92 {
    padding: 4px;
    min-height: 24px;
}

._button_small_10caf_92 * {
    font-size: 12px;
}

._flexBox_9xdww_14 {
    flex-flow: unset;
}

._gap_extraTiny_9xdww_18 {
    gap: 2px;
}

._gap_tiny_9xdww_22 {
    gap: 4px;
}

._gap_extraSmall_9xdww_26 {
    gap: 6px;
}

._gap_small_9xdww_30 {
    gap: 8px;
}

._gap_medium_9xdww_34 {
    gap: 16px;
}

._gap_normal_9xdww_38 {
    gap: 24px;
}

._gap_large_9xdww_42 {
    gap: 32px;
}

._gap_xLarge_9xdww_46 {
    gap: 48px;
}

._gap_xxLarge_9xdww_50 {
    gap: 56px;
}

._gap_extraLarge_9xdww_54 {
    gap: 64px;
}

._column_9xdww_58 {
    flex-direction: column !important;
}

._flexWrap_9xdww_62 {
    flex-wrap: wrap;
}

._popover_12uvb_1 {
    position: fixed;
    padding: 8px 10px;
    z-index: 2147483647;
    background: #31363de6;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

._buttons_12uvb_11 {
    position: fixed;
    top: 0;
    right: 0;
    padding: 8px;
    z-index: 2147483647;
}

._popup_hcu7e_1 {
    position: fixed;
    z-index: 2147483649;
    background: #ffffffe6;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    line-height: 1.286;
    width: 350px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 7px -5px #000;
}

._popup_hcu7e_1:before {
    border-color: rgba(255, 255, 255, 0.9) transparent;
    border-width: 0 7px 7px 7px;
    left: 7px;
    top: -7px;
    border-style: solid;
    content: ".";
    display: block;
    height: 0;
    position: absolute;
    text-indent: -30000px;
    width: 0;
}

._color_hcu7e_27 {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

._styleContainer_hcu7e_34 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

._extraTiny_dg7lc_14 {
    padding: 2px;
}

._extraTinyVR_dg7lc_18 {
    padding-top: 2px;
    padding-bottom: 2px;
}

._extraTinyHR_dg7lc_23 {
    padding-left: 2px;
    padding-right: 2px;
}

._extraTinyTop_dg7lc_28 {
    padding-top: 2px;
}

._extraTinyRight_dg7lc_32 {
    padding-right: 2px;
}

._extraTinyBottom_dg7lc_36 {
    padding-bottom: 2px;
}

._extraTinyLeft_dg7lc_40 {
    padding-left: 2px;
}

._tiny_dg7lc_44 {
    padding: 4px;
}

._tinyVR_dg7lc_48 {
    padding-top: 4px;
    padding-bottom: 4px;
}

._tinyHR_dg7lc_53 {
    padding-left: 4px;
    padding-right: 4px;
}

._tinyTop_dg7lc_58 {
    padding-top: 4px;
}

._tinyRight_dg7lc_62 {
    padding-right: 4px;
}

._tinyBottom_dg7lc_66 {
    padding-bottom: 4px;
}

._tinyLeft_dg7lc_70 {
    padding-left: 4px;
}

._extraSmall_dg7lc_74 {
    padding: 6px;
}

._extraSmallVR_dg7lc_78 {
    padding-top: 6px;
    padding-bottom: 6px;
}

._extraSmallHR_dg7lc_83 {
    padding-left: 6px;
    padding-right: 6px;
}

._extraSmallTop_dg7lc_88 {
    padding-top: 6px;
}

._extraSmallRight_dg7lc_92 {
    padding-right: 6px;
}

._extraSmallBottom_dg7lc_96 {
    padding-bottom: 6px;
}

._extraSmallLeft_dg7lc_100 {
    padding-left: 6px;
}

._small_dg7lc_104 {
    padding: 8px;
}

._smallVR_dg7lc_108 {
    padding-top: 8px;
    padding-bottom: 8px;
}

._smallHR_dg7lc_113 {
    padding-left: 8px;
    padding-right: 8px;
}

._smallTop_dg7lc_118 {
    padding-top: 8px;
}

._smallRight_dg7lc_122 {
    padding-right: 8px;
}

._smallBottom_dg7lc_126 {
    padding-bottom: 8px;
}

._smallLeft_dg7lc_130 {
    padding-left: 8px;
}

._medium_dg7lc_134 {
    padding: 16px;
}

._mediumVR_dg7lc_138 {
    padding-top: 16px;
    padding-bottom: 16px;
}

._mediumHR_dg7lc_143 {
    padding-left: 16px;
    padding-right: 16px;
}

._mediumTop_dg7lc_148 {
    padding-top: 16px;
}

._mediumRight_dg7lc_152 {
    padding-right: 16px;
}

._mediumBottom_dg7lc_156 {
    padding-bottom: 16px;
}

._mediumLeft_dg7lc_160 {
    padding-left: 16px;
}

._normal_dg7lc_164 {
    padding: 24px;
}

._normalVR_dg7lc_168 {
    padding-top: 24px;
    padding-bottom: 24px;
}

._normalHR_dg7lc_173 {
    padding-left: 24px;
    padding-right: 24px;
}

._normalTop_dg7lc_178 {
    padding-top: 24px;
}

._normalRight_dg7lc_182 {
    padding-right: 24px;
}

._normalBottom_dg7lc_186 {
    padding-bottom: 24px;
}

._normalLeft_dg7lc_190 {
    padding-left: 24px;
}

._large_dg7lc_194 {
    padding: 32px;
}

._largeVR_dg7lc_198 {
    padding-top: 32px;
    padding-bottom: 32px;
}

._largeHR_dg7lc_203 {
    padding-left: 32px;
    padding-right: 32px;
}

._largeTop_dg7lc_208 {
    padding-top: 32px;
}

._largeRight_dg7lc_212 {
    padding-right: 32px;
}

._largeBottom_dg7lc_216 {
    padding-bottom: 32px;
}

._largeLeft_dg7lc_220 {
    padding-left: 32px;
}

._xLarge_dg7lc_224 {
    padding: 48px;
}

._xLargeVR_dg7lc_228 {
    padding-top: 48px;
    padding-bottom: 48px;
}

._xLargeHR_dg7lc_233 {
    padding-left: 48px;
    padding-right: 48px;
}

._xLargeTop_dg7lc_238 {
    padding-top: 48px;
}

._xLargeRight_dg7lc_242 {
    padding-right: 48px;
}

._xLargeBottom_dg7lc_246 {
    padding-bottom: 48px;
}

._xLargeLeft_dg7lc_250 {
    padding-left: 48px;
}

._xxLarge_dg7lc_254 {
    padding: 56px;
}

._xxLargeVR_dg7lc_258 {
    padding-top: 56px;
    padding-bottom: 56px;
}

._xxLargeHR_dg7lc_263 {
    padding-left: 56px;
    padding-right: 56px;
}

._xxLargeTop_dg7lc_268 {
    padding-top: 56px;
}

._xxLargeRight_dg7lc_272 {
    padding-right: 56px;
}

._xxLargeBottom_dg7lc_276 {
    padding-bottom: 56px;
}

._xxLargeLeft_dg7lc_280 {
    padding-left: 56px;
}

._extraLarge_dg7lc_284 {
    padding: 64px;
}

._extraLargeVR_dg7lc_288 {
    padding-top: 64px;
    padding-bottom: 64px;
}

._extraLargeHR_dg7lc_293 {
    padding-left: 64px;
    padding-right: 64px;
}

._extraLargeTop_dg7lc_298 {
    padding-top: 64px;
}

._extraLargeRight_dg7lc_302 {
    padding-right: 64px;
}

._extraLargeBottom_dg7lc_306 {
    padding-bottom: 64px;
}

._extraLargeLeft_dg7lc_310 {
    padding-left: 64px;
}

._size_tiny_ldink_23,
._size_tiny_ldink_23 * {
    font-size: 12px;
}

._size_small_ldink_27,
._size_small_ldink_27 * {
    font-size: 16px;
}

._size_medium_ldink_31,
._size_medium_ldink_31 * {
    font-size: 18px;
}

._size_large_ldink_35,
._size_large_ldink_35 * {
    font-size: 32px;
}

._weight_thin_ldink_39,
._weight_thin_ldink_39 * {
    font-weight: 100;
}

._weight_extraLight_ldink_43,
._weight_extraLight_ldink_43 * {
    font-weight: 200;
}

._weight_light_ldink_47,
._weight_light_ldink_47 * {
    font-weight: 300;
}

._weight_normal_ldink_51,
._weight_normal_ldink_51 * {
    font-weight: 400;
}

._weight_medium_ldink_55,
._weight_medium_ldink_55 * {
    font-weight: 500;
}

._weight_semiBold_ldink_59,
._weight_semiBold_ldink_59 * {
    font-weight: 600;
}

._weight_bold_ldink_63,
._weight_bold_ldink_63 * {
    font-weight: 700;
}

._weight_extraBold_ldink_67,
._weight_extraBold_ldink_67 * {
    font-weight: 800;
}

._lineHeight_ldink_71 {
    line-height: 100%;
}

._secondary_ldink_75 {
    color: #8e8e8e;
}

._modal_ib2ay_25 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483649;
}

._modal_ib2ay_25 ._background_ib2ay_36 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
    overflow: auto;
    background-color: color-mix(in srgb, #000000 60%, white 0%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

._modal_ib2ay_25 ._window_ib2ay_48 {
    min-width: 280px;
    max-width: 560px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: scale(0.01);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 6px 2px #00000026,
        0 1px 2px #0000004d;
    overflow: auto;
}

._modal_ib2ay_25 ._window_ib2ay_48 ._loading_ib2ay_64 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000b3;
}

._modal_ib2ay_25 ._window_ib2ay_48 ._loading_ib2ay_64 img {
    width: 100px;
}

._modal_visible_ib2ay_76 ._background_ib2ay_36 {
    opacity: 1;
}

._modal_visible_ib2ay_76 ._window_ib2ay_48 {
    opacity: 1;
    transform: scale(1);
}

._modal_hidden_ib2ay_83 ._background_ib2ay_36 {
    opacity: 0;
}

._modal_hidden_ib2ay_83 ._window_ib2ay_48 {
    opacity: 0;
    transform: scale(0.01);
}

._modal_hiddenDone_ib2ay_90 ._background_ib2ay_36 {
    opacity: 0;
}

._modal_hiddenDone_ib2ay_90 ._window_ib2ay_48 {
    opacity: 0;
    transform: scale(0.01);
}

._color_13dyv_1 {
    padding: 0 8px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 0 7px -5px #000;
    font-weight: 800;
    flex-shrink: 0;
}