/* ===== ROOT ===== */
:root {
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dark: #b8960c;
    --dark: #0a1628;
    --text: #1a1a2e;
    --text-muted: #5a5a6e;
    --bg: #f6f7f9;
    --white: #ffffff;
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url(images/med) center/cover no-repeat;
}



.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.75);
    z-index: 1;
}

.hero-grid {
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
}
  .hero-image-overlay {
    filter: blur(3px);
     width: 100%;
   
     height: 100%;
     top: 0;
     right: 0;
  }

.hero-img{
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  scale: 1.2;
  opacity: 1;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
  z-index: 1;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.h-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.h-stat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.h-stat:hover .h-stat-icon {
    background: rgba(212, 175, 55, 0.35);
    border-color: var(--gold);
    transform: scale(1.1);
}

.h-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.h-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 40px;
}

.hero-featured {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hero-featured:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(8px);
}

.hero-featured:hover::before {
    transform: scaleY(1);
}

.hero-featured-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.hero-featured-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hero-featured-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.hero-featured-date {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== MAIN ===== */
.main-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
    position: relative;
    z-index: 3;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-header h2 span { color: var(--gold); }

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== TIMELINE ===== */
.timeline-wrap { margin-bottom: 80px; }

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.2));
}

.t-year { position: relative; margin-bottom: 32px; }

.t-year-label {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-year-label::before {
    content: '';
    width: 14px; height: 14px;
    background: var(--bg);
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    left: -32px; top: 4px;
}

.t-item {
    position: relative;
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    cursor: pointer;
}

.t-item:hover {
    transform: translateX(6px);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.t-item::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: -26px; top: 28px;
}

.t-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.t-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
}

.t-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ===== NEWS CARDS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    align-items: start;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.news-card.active {
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
}

.nc-img {
    width: 100%; 
    height: 260px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.nc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 40%, transparent 100%);
    z-index: 1;
}

.nc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-card:hover .nc-img img { transform: scale(1.1); }

.nc-img-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.nc-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.nc-img-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nc-img-date {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nc-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.nc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-card:hover .nc-toggle {
    background: rgba(212, 175, 55, 0.15);
}

.news-card.active .nc-toggle {
    background: var(--gold);
    color: var(--dark);
}

.nc-toggle i {
    transition: transform 0.3s ease;
}

.news-card.active .nc-toggle i {
    transform: rotate(180deg);
}

/* Accordion */
.nc-accordion {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, #fafafa, var(--white));
}

.news-card.active .nc-accordion {
    max-height: 600px;
}

.nc-acc-content {
    padding: 0 20px 24px;
}

.nc-acc-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.nc-acc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nc-acc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.nc-acc-list li i {
    color: var(--gold);
    margin-top: 2px;
    font-size: 12px;
}

.nc-acc-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.nc-acc-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nc-acc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nc-acc-meta i {
    color: var(--gold);
}

.nc-acc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nc-acc-btn:hover {
    background: var(--gold-dark);
    transform: translateX(2px);
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-box {
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
}

.faq-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    color: var(--text);
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: var(--white);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.faq-q {
    font-size: 14px;
    font-weight: 700;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.faq-q:hover {
    background: rgba(212, 175, 55, 0.04);
}

.faq-item.active .faq-q {
    background: rgba(212, 175, 55, 0.08);
    color: var(--dark);
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-q-text::before {
    content: 'Q:';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(180deg);
}

.faq-a {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-item.active .faq-a {
    padding: 16px 20px 20px;
    max-height: 400px;
}

.faq-a::before {
    content: 'A:';
    color: var(--gold);
    font-weight: 800;
    margin-right: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { min-height: auto; padding: 60px 0; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
        padding: 60px 30px;
    }
    .hero p { margin: 0 auto 36px; }
    .hero-stats { justify-content: center; }
    .hero-right { 
        padding-left: 0; 
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-featured { text-align: left; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .main-wrap { padding: 0 30px 60px; }
}

@media (max-width: 768px) {
    .hero-grid { padding: 50px 20px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; max-width: 100%; }
    .hero-stats { 
        flex-direction: column; 
        gap: 20px; 
        align-items: center; 
    }
    .h-stat { justify-content: center; }
    .scroll-hint { display: none; }
    .main-wrap { padding: 0 20px 50px; }
    .section-header { padding-top: 40px; }
    .section-header h2 { font-size: 24px; }
    .section-header { margin-bottom: 32px; }
    .news-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 50px;
    }
    .nc-img { height: 240px; }
    .timeline { padding-left: 24px; }
    .t-year-label::before { left: -24px; }
    .t-item::before { left: -20px; }
    .t-item { padding: 16px 18px; }
    .faq-box { padding: 24px; }
    .hero-featured { padding: 18px; }
    .hero-featured-title { font-size: 14px; }
    .timeline-wrap { margin-bottom: 50px; }
    .nc-acc-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .h-stat-num { font-size: 22px; }
    .h-stat-icon { width: 40px; height: 40px; font-size: 16px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .section-header h2 { font-size: 20px; }
    .nc-img { height: 220px; }
    .nc-img-title { font-size: 15px; }
    .nc-desc { font-size: 13px; }
    .t-title { font-size: 14px; }
    .t-desc { font-size: 12px; }
    .faq-q { font-size: 13px; padding: 14px 16px; }
    .faq-a { font-size: 12px; }
    .hero-featured-desc { display: none; }
    .hero-featured { padding: 14px 16px; }
    .hero-featured-date { margin-top: 6px; }
    .nc-acc-list li { font-size: 12px; }
}





/* ===== MEDIA TABS ===== */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-top: 40px;
    flex-wrap: wrap;
}

.media-tab {
    padding: 14px 36px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: inherit;
}

.media-tab:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.media-tab.active {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* ===== TAB CONTENT ===== */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== COMPACT NEWS CARDS ===== */
.news-grid.compact {
    gap: 16px;
}

.news-grid.compact .news-card {
    transform: scale(0.92);
    transform-origin: center top;
}

.news-grid.compact .nc-img {
    height: 190px;
}

.news-grid.compact .nc-img-title {
    font-size: 14px;
}

.news-grid.compact .nc-body {
    padding: 14px;
}

.news-grid.compact .nc-desc {
    font-size: 13px;
    margin-bottom: 10px;
}

.news-grid.compact .nc-toggle {
    padding: 8px;
    font-size: 12px;
}

.news-grid.compact .nc-acc-content {
    padding: 0 14px 18px;
}

.news-grid.compact .nc-acc-text {
    font-size: 13px;
}

.news-grid.compact .nc-acc-list li {
    font-size: 12px;
    padding: 6px 10px;
}

.news-grid.compact .nc-acc-footer {
    margin-top: 12px;
    padding-top: 12px;
}

.news-grid.compact .nc-acc-btn {
    padding: 6px 12px;
    font-size: 11px;
}

/* ===== MEDIA SCROLL (Video & Photo) ===== */
.media-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.media-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.media-scroll::-webkit-scrollbar {
    display: none;
}

.media-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    cursor: pointer;
}

.media-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.media-thumb {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-item:hover .media-thumb img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.media-item:hover .play-overlay {
    background: rgba(10, 22, 40, 0.25);
}

.media-item:hover .play-overlay i {
    transform: scale(1.15);
    opacity: 1;
}

.media-info {
    padding: 16px;
}

.media-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.media-info span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.media-info span i {
    color: var(--gold);
}

/* Scroll Buttons */
.media-scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.media-scroll-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

/* ===== DARK MODE SUPPORT ===== */
/* When body has dark-mode class (from darkmode.js) */
body.dark-mode .news-card,
body.dark-mode .media-item,
body.dark-mode .faq-box {
    background: #1a1a2e;
    border-color: rgba(212, 175, 55, 0.25);
}

body.dark-mode .nc-accordion {
    background: linear-gradient(to bottom, #1a1a2e, #1a1a2e);
}

body.dark-mode .nc-acc-list li {
    background: rgba(212, 175, 55, 0.08);
}

body.dark-mode .media-scroll-btn {
    background: #1a1a2e;
}

body.dark-mode .media-info h4 {
    color: #f0f0f0;
}

body.dark-mode .media-info span {
    color: #a0a0b0;
}

/* Also support [data-theme="dark"] attribute */
[data-theme="dark"] .news-card,
[data-theme="dark"] .media-item,
[data-theme="dark"] .faq-box {
    background: #1a1a2e;
    border-color: rgba(212, 175, 55, 0.25);
}

[data-theme="dark"] .nc-accordion {
    background: linear-gradient(to bottom, #1a1a2e, #1a1a2e);
}

[data-theme="dark"] .nc-acc-list li {
    background: rgba(212, 175, 55, 0.08);
}

[data-theme="dark"] .media-scroll-btn {
    background: #1a1a2e;
}

[data-theme="dark"] .media-info h4 {
    color: #f0f0f0;
}

[data-theme="dark"] .media-info span {
    color: #a0a0b0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { min-height: auto; padding: 60px 0; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center; 
        padding: 60px 30px;
    }
    .hero p { margin: 0 auto 36px; }
    .hero-stats { justify-content: center; }
    .hero-right { 
        padding-left: 0; 
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-featured { text-align: left; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .main-wrap { padding: 0 30px 60px; }
    .media-item {
        flex: 0 0 280px;
    }
    .media-thumb {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .hero-grid { padding: 50px 20px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; max-width: 100%; }
    .hero-stats { 
        flex-direction: column; 
        gap: 20px; 
        align-items: center; 
    }
    .h-stat { justify-content: center; }
    .scroll-hint { display: none; }
    .main-wrap { padding: 0 20px 50px; }
    .section-header { padding-top: 40px; }
    .section-header h2 { font-size: 24px; }
    .section-header { margin-bottom: 32px; }
    .news-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 50px;
    }
    .news-grid.compact .news-card {
        transform: scale(1);
    }
    .nc-img { height: 240px; }
    .timeline { padding-left: 24px; }
    .t-year-label::before { left: -24px; }
    .t-item::before { left: -20px; }
    .t-item { padding: 16px 18px; }
    .faq-box { padding: 24px; }
    .hero-featured { padding: 18px; }
    .hero-featured-title { font-size: 14px; }
    .timeline-wrap { margin-bottom: 50px; }
    .nc-acc-footer { flex-direction: column; align-items: flex-start; }

    .media-tabs {
        gap: 8px;
        padding-top: 30px;
    }
    .media-tab {
        padding: 10px 24px;
        font-size: 13px;
    }
    .media-item {
        flex: 0 0 260px;
    }
    .media-thumb {
        height: 160px;
    }
    .media-scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* ── DARK MODE COMPREHENSIVE OVERRIDES ──────────────────────── */
.dark-mode { --dark: #e8e0d0; }
.dark-mode .faq-item { background: var(--bg-card, #0d1f35); }
.dark-mode .faq-item.active .faq-q { color: var(--dark); }
.dark-mode .faq-a { background: rgba(200,146,42,0.03); color: var(--text-muted); }
.dark-mode .t-item { background: var(--bg-card, #0d1f35); }
.dark-mode .section-header h2,
.dark-mode .section-header p { color: var(--text, #dcd5c5); }

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .h-stat-num { font-size: 22px; }
    .h-stat-icon { width: 40px; height: 40px; font-size: 16px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .section-header h2 { font-size: 20px; }
    .nc-img { height: 220px; }
    .nc-img-title { font-size: 15px; }
    .nc-desc { font-size: 13px; }
    .t-title { font-size: 14px; }
    .t-desc { font-size: 12px; }
    .faq-q { font-size: 13px; padding: 14px 16px; }
    .faq-a { font-size: 12px; }
    .hero-featured-desc { display: none; }
    .hero-featured { padding: 14px 16px; }
    .hero-featured-date { margin-top: 6px; }
    .nc-acc-list li { font-size: 12px; }

    .media-item {
        flex: 0 0 240px;
    }
    .media-thumb {
        height: 230px;
    }
    .play-overlay i {
        font-size: 36px;
    }
    .media-info {
        padding: 12px;
    }
    .media-info h4 {
        font-size: 13px;
    }
}