* {
    box-sizing: border-box;
}

p {
    margin: 0;
    margin-bottom: 15px;
}

body {
    background: #fdfbf7;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
}

/* RTL Global Support */
[dir="rtl"] body,
html[lang="ar"] body {
    font-family: 'Cairo', 'Amiri', sans-serif;
    direction: rtl;
}

.header-bar {
    width: 100%;
    background: #ffffff;
    border-bottom: 3px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left,
.header-right,
.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-logo {
    max-height: 130px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.header-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.header-main-title {
    color: #006C35;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

[dir="rtl"] .header-main-title,
html[lang="ar"] .header-main-title {
    font-family: 'Amiri', serif;
    font-size: 24px;
    line-height: 1.3;
}

.header-subtitle {
    color: #A67C00;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

[dir="rtl"] .header-subtitle,
html[lang="ar"] .header-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
}

.slides-wrapper {
    position: relative;
    width: 95%;
    max-width: 1600px;
    height: calc(100vh - 170px);
    min-height: 650px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container {
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #D4AF37;
    border-left: 1px solid #F5ECD5;
    border-right: 1px solid #F5ECD5;
    border-bottom: 1px solid #F5ECD5;
    display: none;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    height: 100%;
    justify-content: center;
    overflow: auto;
    padding: 40px 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #111827;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.98);
}

[dir="rtl"] .slide-container,
html[lang="ar"] .slide-container {
    font-family: 'Cairo', sans-serif;
}

.slide-container.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

:fullscreen body,
:-webkit-full-screen body {
    background: #fdfbf7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding-bottom: 20px;
}

:fullscreen .header-bar,
:-webkit-full-screen .header-bar {
    position: relative;
}

.controls-bar {
    position: fixed;
    bottom: 25px;
    right: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #F5ECD5;
    backdrop-filter: blur(8px);
    z-index: 2000;
}

[dir="rtl"] .controls-bar,
html[lang="ar"] .controls-bar {
    right: auto;
    left: 35px;
}

.nav-btn {
    background: #006C35;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #D4AF37;
    transform: scale(1.08);
}

.slide-counter {
    font-weight: 700;
    color: #006C35;
    font-size: 16px;
    min-width: 60px;
    text-align: center;
}

.slide-container h1,
.slide-container h2,
.slide-container h3,
.slide-container h4 {
    color: #006C35;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin: 0;
    text-wrap: balance;
}

.slide-container p,
.slide-container li {
    text-wrap: pretty;
}

[dir="rtl"] .slide-container h1,
[dir="rtl"] .slide-container h2,
[dir="rtl"] .slide-container h3,
[dir="rtl"] .slide-container h4,
html[lang="ar"] .slide-container h1,
html[lang="ar"] .slide-container h2,
html[lang="ar"] .slide-container h3,
html[lang="ar"] .slide-container h4 {
    font-family: 'Amiri', serif;
}

.slide-container h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-container .slide-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 15px;
}

[dir="rtl"] .slide-container .slide-title,
html[lang="ar"] .slide-container .slide-title {
    text-align: right;
}

.slide-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-container p,
.slide-container li,
.slide-container th,
.slide-container td {
    font-size: 20px;
    line-height: 1.6;
}

.slide-container .subtitle {
    font-size: 22px;
    font-weight: 400;
    margin: 0 auto;
    color: #4a4a4a;
}

.slide-container .content-area {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
    z-index: 1;
}

/* Slide 1 Specifics */
.title-layout {
    text-align: center;
    max-width: 1000px;
    z-index: 1;
}

.title-layout hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    width: 60%;
    margin: 30px auto;
}

.title-layout h4 {
    color: #A67C00;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

[dir="rtl"] .title-layout h4,
html[lang="ar"] .title-layout h4 {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.5px;
}

.two-column {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
}

/* Slide 3 Category Bullet Cards */
.category-bullet-card {
    background: #FAFCFB;
    border: 1px solid #F5ECD5;
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 18px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 19px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.category-bullet-card:hover {
    transform: translateX(6px);
    border-left-color: #006C35;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 108, 53, 0.1);
}

[dir="rtl"] .category-bullet-card,
html[lang="ar"] .category-bullet-card {
    border-left: 1px solid #F5ECD5;
    border-right: 4px solid #D4AF37;
}

[dir="rtl"] .category-bullet-card:hover,
html[lang="ar"] .category-bullet-card:hover {
    transform: translateX(-6px);
    border-right-color: #006C35;
}

.category-bullet-card i {
    color: #006C35;
    font-size: 20px;
    background: #EAF3EC;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.category-bullet-card:hover i {
    background: #006C35;
    color: #ffffff;
}

/* Tiles */
.tiled-content {
    align-items: stretch;
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.tile {
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #F5ECD5;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.tile .icon {
    color: #A67C00;
    font-size: 42px;
    margin-bottom: 25px;
}

.tile p {
    font-size: 18px;
    color: #4a4a4a;
}

/* Bullet Points */
.bullet-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

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

.bullet-list li {
    margin-bottom: 20px;
    position: relative;
    background: #FAFCFB;
    padding: 20px 20px 20px 70px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #D4AF37;
    color: #111827;
}

.bullet-list i {
    color: #006C35;
    font-size: 24px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

[dir="rtl"] .bullet-list li,
html[lang="ar"] .bullet-list li {
    padding: 20px 70px 20px 20px;
    border-left: 1px solid #e5e7eb;
    border-right: 4px solid #D4AF37;
}

[dir="rtl"] .bullet-list i,
html[lang="ar"] .bullet-list i {
    left: auto;
    right: 20px;
}

.two-column ul {
    list-style: none;
    padding: 0;
}

.two-column li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #111827;
}

[dir="rtl"] .two-column li,
html[lang="ar"] .two-column li {
    padding-left: 0;
    padding-right: 30px;
}

/* Category Row Cards (table-free responsive list) */
.cat-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FAFCFB;
    border: 1px solid #F5ECD5;
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.cat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    flex: 0 0 auto;
    width: 36px;
    text-align: center;
}

.cat-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cat-name {
    color: #006C35;
    font-size: 19px;
}

.cat-detail {
    color: #4a4a4a;
    font-size: 15px;
}

.cat-age {
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* Table */
.table-layout {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.table-layout table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    background: #ffffff;
}

.table-layout th,
.table-layout td {
    padding: 18px 24px;
    text-align: left;
}

[dir="rtl"] .table-layout th,
[dir="rtl"] .table-layout td,
html[lang="ar"] .table-layout th,
html[lang="ar"] .table-layout td {
    text-align: right;
}

.table-layout th {
    background: #006C35;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #D4AF37;
}

.table-layout td {
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
}

.table-layout tr:nth-child(even) {
    background: #FAFCFB;
}

.table-layout tr:hover {
    background: #F5ECD5;
}

.table-layout tr:last-child td {
    border-bottom: none;
}

/* Timeline */
.timeline-layout {
    align-items: stretch;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.timeline-layout .timeline-line {
    background-color: #D4AF37;
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-1px);
    width: 100%;
    z-index: 0;
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    text-align: center;
    width: 23%;
}

.timeline-item::after {
    background-color: #ffffff;
    border-radius: 50%;
    border: 4px solid #006C35;
    content: '';
    height: 20px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3);
}

[dir="rtl"] .timeline-item::after,
html[lang="ar"] .timeline-item::after {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%);
}

.timeline-item .content-wrapper {
    left: 0;
    position: absolute;
    width: 100%;
    background: #ffffff;
    border: 1px solid #F5ECD5;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-top: 3px solid #006C35;
}

.timeline-item:nth-child(odd) .content-wrapper {
    bottom: 50%;
    margin-bottom: 30px;
}

.timeline-item:nth-child(even) .content-wrapper {
    margin-top: 30px;
    top: 50%;
}

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #006C35;
    font-family: 'Cormorant Garamond', serif;
}

[dir="rtl"] .timeline-item h3,
html[lang="ar"] .timeline-item h3 {
    font-family: 'Amiri', serif;
}

.timeline-item p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Chart */
.doughnut-chart-container {
    align-items: center;
    display: flex;
    gap: 80px;
    justify-content: center;
    width: 100%;
}

.doughnut-chart {
    border-radius: 50%;
    height: 360px;
    width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #F5ECD5;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.legend li {
    align-items: center;
    display: flex;
    font-size: 20px;
    color: #111827;
}

.legend .color-box {
    border-radius: 50%;
    height: 20px;
    margin-right: 15px;
    width: 20px;
}

[dir="rtl"] .legend .color-box,
html[lang="ar"] .legend .color-box {
    margin-right: 0;
    margin-left: 15px;
}

/* Highlight Numbers */
.highlight-numbers-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #F5ECD5;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #006C35;
    border-bottom: 4px solid #006C35;
}

.highlight-numbers-layout .number {
    color: #A67C00;
    font-size: 140px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

[dir="rtl"] .highlight-numbers-layout .number,
html[lang="ar"] .highlight-numbers-layout .number {
    font-family: 'Amiri', serif;
    font-size: 130px;
}

.highlight-numbers-layout .number-label {
    font-size: 28px;
    font-weight: 700;
    color: #006C35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-numbers-layout .desc {
    font-size: 22px;
    color: #4a4a4a;
    max-width: 800px;
    margin-top: 20px;
    line-height: 1.6;
}

/* Q&A */
.qa-layout {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    align-self: center;
    background: #ffffff;
    padding: 80px;
    border-radius: 8px;
    border: 1px solid #F5ECD5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-top: 6px solid #006C35;
}

.qa-layout h2 {
    font-size: 72px;
    margin-bottom: 25px;
    color: #006C35;
}

[dir="rtl"] .qa-layout h2,
html[lang="ar"] .qa-layout h2 {
    font-family: 'Amiri', serif;
}

.qa-layout p {
    font-size: 24px;
    color: #4a4a4a;
}

/* Mini Content Menu Drawer & Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    max-width: 100vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #D4AF37;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .menu-drawer,
html[lang="ar"] .menu-drawer {
    right: auto;
    left: -380px;
    border-left: none;
    border-right: 4px solid #D4AF37;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-drawer.active {
    right: 0;
}

[dir="rtl"] .menu-drawer.active,
html[lang="ar"] .menu-drawer.active {
    left: 0;
}

.menu-header {
    padding: 24px 30px;
    background: #FAFCFB;
    border-bottom: 1px solid #F5ECD5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-header h3 {
    margin: 0;
    color: #006C35;
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.menu-close-btn {
    background: transparent;
    border: none;
    color: #4a4a4a;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.menu-close-btn:hover {
    color: #006C35;
    background: #e5e7eb;
}

.menu-content-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    overflow-y: auto;
    flex: 1;
}

.menu-item-btn {
    width: 100%;
    padding: 14px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

[dir="rtl"] .menu-item-btn,
html[lang="ar"] .menu-item-btn {
    text-align: right;
    border-left: none;
    border-right: 4px solid transparent;
}

.menu-item-btn:hover {
    background: #F5ECD5;
    color: #006C35;
}

.menu-item-btn.active {
    background: #FAFCFB;
    color: #006C35;
    border-left-color: #D4AF37;
    font-weight: 700;
}

[dir="rtl"] .menu-item-btn.active,
html[lang="ar"] .menu-item-btn.active {
    border-right-color: #D4AF37;
}

.menu-item-num {
    background: #EAF3EC;
    color: #006C35;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.menu-item-btn.active .menu-item-num {
    background: #006C35;
    color: #ffffff;
}

/* Generic two-item flex row (stat/date/info cards) */
.two-col-flex {
    display: flex;
    width: 100%;
}

/* ==========================================
   MOBILE FIRST & RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablets and Laptops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .header-bar {
        padding: 10px 20px;
    }

    .header-logo {
        height: 77px;
    }

    .header-main-title {
        font-size: 17px;
    }

    .header-subtitle {
        font-size: 11px;
    }

    .slides-wrapper {
        width: 98%;
        height: calc(100vh - 130px);
        min-height: 520px;
        margin: 10px auto;
    }

    .slide-container {
        padding: 30px 30px;
    }

    .slide-container h1 {
        font-size: 38px;
    }

    .slide-container .slide-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .tiled-content {
        gap: 15px;
    }

    .tile {
        padding: 25px 15px;
    }

    .doughnut-chart-container {
        gap: 40px;
    }

    .doughnut-chart {
        width: 280px;
        height: 280px;
    }

    .highlight-numbers-layout .number {
        font-size: 90px;
    }

    .qa-layout {
        padding: 50px 30px;
    }

    .qa-layout h2 {
        font-size: 48px;
    }
}

/* Mobile Devices & Small Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    body {
        padding-bottom: 85px;
    }

    .header-bar {
        padding: 8px 12px;
        gap: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-left,
    .header-right {
        gap: 6px;
        flex: 0 0 auto;
    }

    .header-logo {
        height: 77px;
        width: auto;
    }

    .header-titles {
        padding: 0 4px;
        flex: 1 1 auto;
    }

    .header-main-title {
        font-size: 11px;
        line-height: 1.25;
    }

    .header-subtitle {
        font-size: 8px;
    }

    .slides-wrapper {
        width: 100%;
        height: auto;
        min-height: 75vh;
        margin: 5px auto;
        padding: 0 6px;
    }

    .slide-container {
        padding: 16px 12px;
        position: relative;
        height: auto;
        min-height: 65vh;
        overflow-y: visible;
    }

    .slide-container h1 {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .slide-container h4 {
        font-size: 11px;
    }

    .slide-container .slide-title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 6px;
        text-align: center;
    }

    .slide-container p,
    .slide-container li,
    .slide-container th,
    .slide-container td {
        font-size: 13px;
        line-height: 1.4;
    }

    .title-layout hr {
        margin: 10px auto;
    }

    .two-column {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .tiled-content {
        flex-direction: column;
        gap: 8px;
    }

    .tile {
        padding: 14px 10px;
        border-radius: 6px;
    }

    .tile .icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .tile h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .tile p {
        font-size: 12px;
        line-height: 1.35;
    }

    .bullet-list li {
        padding: 10px 10px 10px 36px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .bullet-list i {
        font-size: 15px;
        left: 10px;
    }

    .category-bullet-card {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 8px;
        gap: 10px;
    }

    .category-bullet-card i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    /* Category Row Cards on mobile: stack info under number, age wraps below */
    .cat-rows {
        gap: 10px;
    }

    .cat-row {
        gap: 10px;
        padding: 12px 16px;
    }

    .cat-num {
        font-size: 20px;
        width: 24px;
    }

    .cat-name {
        font-size: 15px;
    }

    .cat-detail {
        font-size: 12px;
    }

    .cat-age {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Mobile Table Responsiveness */
    .table-layout {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-layout table {
        min-width: 480px;
    }

    .table-layout th,
    .table-layout td {
        padding: 8px 10px;
        font-size: 12px;
        white-space: normal;
        word-break: break-word;
    }

    .table-layout th {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .table-layout td[style*="font-size"] {
        white-space: nowrap !important;
    }

    /* Vertical Timeline for Mobile */
    .timeline-layout {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .timeline-layout .timeline-line {
        display: none;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-item .content-wrapper,
    .timeline-item:nth-child(odd) .content-wrapper,
    .timeline-item:nth-child(even) .content-wrapper {
        position: relative;
        top: auto;
        bottom: auto;
        margin: 0;
        width: 100%;
        padding: 10px 12px;
    }

    /* Chart & Legend Stack for Mobile */
    .doughnut-chart-container {
        flex-direction: column;
        gap: 12px;
    }

    .doughnut-chart {
        width: 160px;
        height: 160px;
    }

    .legend {
        padding: 12px;
        gap: 8px;
        width: 100%;
    }

    .legend li {
        font-size: 12px;
    }

    .highlight-numbers-layout {
        padding: 20px 10px;
    }

    .highlight-numbers-layout .number {
        font-size: 46px;
    }

    .highlight-numbers-layout .number-label {
        font-size: 14px;
    }

    .highlight-numbers-layout .desc {
        font-size: 13px;
    }

    .qa-layout {
        padding: 25px 12px;
    }

    .qa-layout h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .qa-layout p {
        font-size: 14px;
    }

    .controls-bar {
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        padding: 6px 12px;
        gap: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    [dir="rtl"] .controls-bar,
    html[lang="ar"] .controls-bar {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    #fullscreenBtn {
        display: none;
    }

    .menu-drawer {
        width: 100vw;
        right: -100vw;
    }

    /* Stack two-item flex rows (stat/date/info cards) on mobile */
    .two-col-flex {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Commission composition badges */
    .badge-row {
        font-size: 12px !important;
        gap: 8px !important;
    }

    .badge-row span {
        padding: 4px 10px !important;
    }

    /* Prize amount / large inline numbers inside description text */
    .highlight-numbers-layout .desc strong {
        font-size: 18px !important;
    }

    /* Prize table amount cells: keep compact, let table scroll instead of wrapping digits */
    .table-layout td[style*="font-size: 24px"],
    .table-layout td[style*="font-size: 22px"] {
        font-size: 16px !important;
    }
}