/* Ù…Ø¤Ø´Ø± Ø§Ù„ØªÙˆØªØ± Ø§Ù„Ø³ÙŠØ§Ø³ÙŠ */
.political-tension {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
}

.political-tension h3 {
    color: var(--section-title-color);
    margin-bottom: 15px;
    font-size: var(--font-size-18);
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    font-weight: 700;
}

.tension-countries {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tension-country {
    display: flex;
    flex-direction: column;
    position: relative;
}

.country-tension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.country-name {
    font-size: var(--font-size-18);
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--main-title-color);
}

.tension-value {
    font-size: var(--font-size-18);
    color: var(--main-title-color);
}

.tension-meter {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.tension-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.tension-low {
    background-color: #4CAF50; /* Ø£Ø®Ø¶Ø± */
}

.tension-medium {
    background-color: #FFC107; /* Ø£ØµÙØ± */
}

.tension-high {
    background-color: #FF9800; /* Ø¨Ø±ØªÙ‚Ø§Ù„ÙŠ */
}

.tension-critical {
    background-color: var(--red-color); /* Ø£Ø­Ù…Ø± */
}

.tension-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 200px;
    z-index: 100;
    display: none;
}

.tension-country:hover .tension-tooltip {
    display: block;
}

.tension-event {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tension-event:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-title {
    font-weight: bold;
    margin-bottom: 3px;
}

.event-points {
    display: flex;
    justify-content: space-between;
}

.event-type {
    opacity: 0.8;
}

/* Ù‚Ø³Ù… Ø§Ù„ØªØ­Ù‚ÙŠÙ‚ Ø§Ù„Ù…ÙØªÙˆØ­ */
.open-investigation {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.investigation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.investigation-header h2 {
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    margin: 0;
    font-weight: 700;
}

.investigation-badge {
    background-color: var(--section-title-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.investigation-content {
    padding: 15px;
}

.investigation-title {
    font-size: var(--font-size-18);
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.investigation-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.investigation-progress {
    margin-bottom: 15px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px;
}

.investigation-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--background-btn);
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.investigation-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contribute-btn {
    background-color: var(--background-btn);
    color: white;
}

.share-btn {
    background-color: #f0f0f0;
    color: #333;
}

/* Ù‚Ø³Ù… Ø¹Ø¯Ø³Ø© Ø§Ù„Ø¬Ù…Ù‡ÙˆØ± */
.audience-lens {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.audience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.audience-header h2 {
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    margin: 0;
    font-weight: 700;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
}

.audience-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    background: #fff;
    border: 3px solid #f5f5f5;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.audience-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-color: var(--background-btn, #0056b3);
}

.audience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
}

.audience-location {
    font-size: var(--font-size-18);
    font-weight: bold;
    margin-bottom: 3px;
}

.audience-contributor {
    font-size: 12px;
    opacity: 0.8;
}

/* إذا أردت بوردر داخلي حول الصورة فقط */
.audience-img-border {
    border: 3px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/* Ù‚Ø³Ù… Ø§Ù„Ø­ÙˆØ§Ø¯Ø« */
.accidents {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.accidents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.accidents-header h2 {
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    font-weight: 700;
    margin: 0;
}

.accidents-list {
    padding: 15px;
}

.accident-item {
    display: flex;
    /* margin-bottom: 15px;
    padding-bottom: 15px; */
    border-bottom: 1px solid #e0e0e0;
/* 
    margin-top: 15px;
    padding-top: 15px; */
}

.accident-item:last-child {
    margin-bottom: 15px;
    border-bottom: none;
    margin-top: 15px;
}

.accident-time {
    min-width: 80px;
    text-align: center;
    padding-left: 15px;
    /* background: #f5f5f5; */
    text-align: center;
    padding: 10px;
    margin-left: 10px;
        margin-right: 10px;
}

.accident-hour {
    font-size: 18px;
    font-weight: bold;
    color: var(--background-btn);
}

.accident-date {
    font-size: 12px;
    color: #666;
}

.accident-content h3 {
    font-size: var(--font-size-18);
    color: var(--main-title-color);
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 25px;
}

.accident-location {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.accident-location i {
    margin-left: 5px;
}

.accident-description {
    font-size: 14px;
    color: #333;
}

/* Ù‚Ø³Ù… ØªÙ‚Ø§Ø±ÙŠØ± Ù…Ø±Ø§Ø³Ù„ÙŠÙ†Ø§ */
.reporter-reports {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.reports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.reports-header h2 {
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    font-weight: 700;
    margin: 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}

.report-item {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
}

.report-image {
    position: relative;
    aspect-ratio: 16/9;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--red-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.report-content {
    padding: 15px;
}

.report-content h3 {
    font-size: var(--font-size-18);
    color: var(--main-title-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.reporter-info {
    display: flex;
    align-items: center;
}

.reporter-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 5px;
}

.reporter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-date {
    /* font-style: italic; */
}

/* Ù‚Ø³Ù… Ø±ÙŠÙ„Ø²Ø§Øª */
.reels {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.reels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.reels-header h2 {
    color: var(--background-btn);
    font-size: 18px;
    margin: 0;
}

.reels-container {
    display: flex;
}

.reel-item {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reel-thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #e0e0e0;
}

.reel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reel-views {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Ù‚Ø³Ù… Ù…Ù‚Ø§Ù„Ø§Øª Ø§Ù„Ø±Ø£ÙŠ */
.opinion-articles {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--main-title-color);
}

.opinion-header h2 {
    color: var(--section-title-color);
    font-size: var(--font-size-18);
    font-weight: 700;
    margin: 0;
}

.opinion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}

.opinion-item {
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--main-text-color);
}

.author-title {
    font-size: 12px;
    color: var(--main-text-color);
}

.opinion-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--main-text-color);
    line-height: 28px;
}

.opinion-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--background-btn);
    font-size: 14px;
}

.read-more i {
    margin-left: 5px;
}

/* ØªØ­Ø³ÙŠÙ†Ø§Øª Ù„Ù„Ø¬ÙˆØ§Ù„ */
@media (max-width: 767px) {
    /* .main-header {
        flex-direction: column;
        align-items: flex-start;
    } */
    
    .logo {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .main-nav li {
        margin-bottom: 0;
    }
    
    .social-icons {
        margin-top: 15px;
    }
    
    .hot-files {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .country-stories {
        justify-content: flex-start;
        gap: 12px;
        scroll-snap-type: x mandatory;
    }
    
    .country-story {
        scroll-snap-align: start;
        min-width: 80px;
    }
    
    .country-flag {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .country-name {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .new-indicator {
        width: 12px;
        height: 12px;
        top: -1px;
        right: -1px;
    }
    
    .audience-grid,
    .opinion-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .reels-container {
        padding-bottom: 10px;
    }
    
    .reel-item {
        width: 120px;
    }
    
    .reel-thumbnail {
        width: 120px;
        height: 120px;
    }
    
    .floating-notebook-btn {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) {
    .audience-grid,
    .opinion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .opinion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pagination Modern Style */
.nav-pagination {
    margin: 32px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-pagination ul.nav-x {
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-pagination ul.nav-x li {
    display: flex;
}

.nav-pagination ul.nav-x a,
.nav-pagination ul.nav-x span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0056b3;
    background: #f5f7fa;
    border: 1.5px solid #e0e6ed;
    transition: all 0.18s;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.nav-pagination ul.nav-x a.uc-active,
.nav-pagination ul.nav-x a:hover {
    background: var(--background-btn, #0056b3);
    color: #fff;
    border-color: var(--background-btn, #0056b3);
    box-shadow: 0 2px 8px rgba(0,86,179,0.08);
}

.nav-pagination ul.nav-x .uc-disabled span {
    color: #b0b8c1;
    background: #f5f7fa;
    border: 1.5px solid #e0e6ed;
    cursor: not-allowed;
    opacity: 0.7;
}

.nav-pagination ul.nav-x li .icon {
    font-size: 1.2em;
    margin: 0 2px;
}

@media (max-width: 600px) {
    .nav-pagination ul.nav-x a,
    .nav-pagination ul.nav-x span {
        min-width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}