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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    color: #F1F5F9;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    transition: all 0.25s ease;
}

::selection {
    background: rgba(0, 229, 255, 0.25);
    color: #F1F5F9;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0F1626;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00E5FF, #76FF03);
    border-radius: 6px;
    border: 2px solid #0F1626;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5DFDFB, #00B8D4);
}

/* ===== Site Header (dark, neon brand) ===== */
.en-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 24px;
    background: #0A0F1C;
    opacity: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 229, 255, 0.18);
    backdrop-filter: blur(12px);
}
.en-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.en-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.en-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    flex-shrink: 0;
    color: #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7));
}
.en-brand-mark svg {
    width: 28px; height: 28px;
}
.en-brand-name {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #F1F5F9;
    letter-spacing: 0.5px;
}
.en-search-wrap {
    position: relative;
    flex: 1;
    max-width: 480px;
    min-width: 200px;
}
.en-search-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #8595AE;
    pointer-events: none;
}
.en-search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 999px;
    background: #0F1626;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 14px;
    color: #F1F5F9;
    outline: none;
    transition: all 0.25s ease;
}
.en-search-input:focus {
    background: #0F1626;
    border-color: #00E5FF;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.18);
}
.en-search-input::placeholder {
    color: #8595AE;
}
.en-main-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.en-main-nav a {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #CBD5E1;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.1px;
    transition: all 0.25s ease;
}
.en-main-nav a:hover {
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.10);
}

/* ===== Main Layout ===== */
.en-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}

.en-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.10);
    position: relative;
}
.en-section-head::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 70px; height: 3px;
    background: #00E5FF;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}
.en-section-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F1F5F9;
    letter-spacing: 0.3px;
    opacity: 0;
}
.en-section-sub {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    color: #8595AE;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Category Pill ===== */
.en-cat-pill {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    display: inline-block;
    padding: 4px 11px;
    background: #00E5FF;
    color: #070B14;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 6px;
}
.en-cat-pill-sm {
    padding: 3px 8px;
    font-size: 10px;
    top: 8px; left: 8px;
}
.en-cat-pill-inline {
    position: static;
    margin-bottom: 14px;
}
.en-cat-pill-lead {
    position: static;
}

/* ===== Badge ===== */
.en-badge {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    display: inline-block;
    padding: 4px 10px;
    background: #FF3D00;
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 0 14px rgba(255, 61, 0, 0.55);
}
.en-badge-inline {
    position: static;
    margin-bottom: 14px;
    margin-left: 8px;
}
.en-badge-lead {
    position: static;
    margin-left: 8px;
}

/* ===== Bookmark Button ===== */
.en-bookmark-btn {
    position: absolute;
    bottom: 10px; right: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: rgba(15, 22, 38, 0.72);
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
    opacity: 0;
}
.en-bookmark-btn:hover {
    background: #00E5FF;
    color: #070B14;
    border-color: #00E5FF;
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}
.en-bookmark-btn.en-bookmark-active {
    background: #00E5FF;
    color: #070B14;
    border-color: #00E5FF;
}
.en-bookmark-btn.en-bookmark-active svg {
    fill: #070B14;
}
.en-bookmark-btn-sm {
    width: 28px; height: 28px;
    top: 8px; right: 8px;
    bottom: auto;
}

/* ===== News Source Row ===== */
.en-news-source {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.en-news-source-sm {
    margin-bottom: 6px;
}
.en-source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    color: #070B14;
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.en-source-icon-lg {
    width: 40px; height: 40px;
    font-size: 20px;
}
.en-source-name {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #F1F5F9;
}
.en-source-dot {
    color: #8595AE;
    font-size: 12px;
}
.en-news-time {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #8595AE;
}

/* ===== Card Meta ===== */
.en-meta-dot {
    color: rgba(0, 229, 255, 0.10);
}

/* ===== Ratings & Trending ===== */
.en-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.en-rating {
    color: #FFD600;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 0 8px rgba(255, 214, 0, 0.5);
}
.en-star-half {
    color: #FFD600;
    opacity: 0.4;
}
.en-star-empty {
    color: rgba(0, 229, 255, 0.10);
}
.en-rating-count {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #00E5FF;
    font-weight: 500;
    white-space: nowrap;
}
.en-rating-sm .en-rating { font-size: 12px; }
.en-rating-sm .en-rating-count { font-size: 11px; }
.en-rating-lg .en-rating { font-size: 19px; }
.en-rating-lg .en-rating-count { font-size: 14px; }

/* ===== Trending Tag ===== */
.en-trending-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #76FF03;
    padding: 3px 10px;
    background: rgba(118, 255, 3, 0.10);
    border: 1px solid rgba(118, 255, 3, 0.25);
    border-radius: 999px;
    letter-spacing: 0.2px;
    opacity: 0;
}
.en-trending-tag-sm {
    font-size: 11px;
    padding: 2px 8px;
}
.en-trending-tag-lead {
    color: #76FF03;
    background: rgba(118, 255, 3, 0.16);
    border: 1px solid rgba(118, 255, 3, 0.35);
    padding: 4px 12px;
    font-size: 12px;
}
.en-trending-tag-inline {
    background: rgba(118, 255, 3, 0.10);
    color: #76FF03;
    border: 1px solid rgba(118, 255, 3, 0.25);
    margin-bottom: 14px;
    margin-left: 8px;
    padding: 4px 12px;
    font-size: 12px;
    position: static;
    display: inline-flex;
    opacity: 0;
}

/* ===== CTA ===== */
.en-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #00E5FF;
    color: #070B14;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.en-cta:hover {
    background: #00B8D4;
    color: #070B14;
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 229, 255, 0.6);
}
.en-cta-read {
    padding: 12px 28px;
    font-size: 15px;
}

/* ===== Top Stories Section ===== */
.en-top-stories-section {
    margin-bottom: 0px;
}
.en-lead-wrap {
    margin-bottom: 0px;
}
.en-lead-story {
    opacity: 0;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border-radius: 16px;
    transition: box-shadow 0.35s ease;
}
.en-lead-story:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 28px rgba(0, 229, 255, 0.20);
}
.en-lead-story-link {
    position: relative;
    display: block;
    min-height: 130px;
    background-size: cover;
    background-position: center;
    background-color: #0F1626;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease;
}
.en-lead-story:hover .en-lead-story-link {
    transform: translateY(-4px);
}
.en-lead-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.20) 0%, rgba(7, 11, 20, 0.55) 45%, rgba(7, 11, 20, 0.94) 100%);
}
.en-lead-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    padding: 32px 34px;
}
.en-lead-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.en-lead-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #F1F5F9;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.en-lead-snippet {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 15px;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 760px;
}
.en-lead-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 229, 255, 0.18);
}
.en-lead-foot .en-source-name { color: #F1F5F9; }
.en-lead-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8595AE;
}
.en-lead-read {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    color: #00E5FF;
    margin-left: auto;
    font-weight: 600;
}

/* ===== Hero Row (secondary + power index) ===== */
.en-hero-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.en-hero-stories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===== Secondary Stories ===== */
.en-secondary-story {
    opacity: 0;
    flex: 1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}
.en-secondary-story:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 28px rgba(0, 229, 255, 0.20);
}
.en-secondary-link {
    display: flex;
    gap: 12px;
    background: rgba(15, 22, 38, 0.72);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(8px);
}
.en-secondary-link:hover {
    border-color: rgba(0, 229, 255, 0.55);
    transform: translateX(4px);
}
.en-secondary-thumb {
    width: 110px;
    min-height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0F1626;
}
.en-secondary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.en-secondary-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
}
.en-secondary-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #F1F5F9;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.en-secondary-link:hover .en-secondary-title {
    color: #00E5FF;
}
.en-secondary-body .en-cat-pill-sm {
    position: static;
    align-self: flex-start;
}

/* ===== Power Index Sidebar ===== */
.en-power-index {
    opacity: 0;
    background: rgba(15, 22, 38, 0.72);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    padding: 22px 22px 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    height: fit-content;
}
.en-power-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
.en-power-icon {
    width: 22px; height: 22px;
    color: #00E5FF;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7));
}
.en-power-title-heading {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F1F5F9;
    letter-spacing: 0.3px;
}
.en-power-sub {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #8595AE;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.10);
}
.en-power-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.en-power-row {
    opacity: 0;
}
.en-power-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}
.en-power-link:hover {
    background: rgba(0, 229, 255, 0.10);
}
.en-power-rank {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #00E5FF;
    width: 26px;
    flex-shrink: 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}
.en-power-title {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #CBD5E1;
    line-height: 1.35;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.en-power-link:hover .en-power-title {
    color: #00E5FF;
}
.en-power-views {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #8595AE;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== Category Bar ===== */
.en-cat-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 16px;
    margin-bottom: 20px;
    scrollbar-width: thin;
}
.en-cat-bar::-webkit-scrollbar {
    height: 4px;
}
.en-cat-bar::-webkit-scrollbar-thumb {
    background: #00E5FF;
    border-radius: 4px;
}
.en-cat-bar-item {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 18px;
    background: #0F1626;
    color: #CBD5E1;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    transition: all 0.25s ease;
    opacity: 0;
}
.en-cat-bar-item:hover {
    background: #00E5FF;
    color: #070B14;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}
.en-cat-bar-item:first-child {
    background: #00E5FF;
    color: #070B14;
    border-color: transparent;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

/* ===== Featured Grid ===== */
.en-featured-section {
    margin-bottom: 44px;
}
.en-featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}
.en-featured-card {
    opacity: 0;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    transition: box-shadow 0.35s ease;
}
.en-featured-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 28px rgba(0, 229, 255, 0.20);
}
.en-featured-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0F1626;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.en-featured-card:hover .en-featured-card-link {
    transform: translateY(-5px);
}
.en-featured-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0F1626;
}
.en-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.en-featured-card-link:hover .en-featured-media img {
    transform: scale(1.08);
}
.en-featured-body {
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.en-featured-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #F1F5F9;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.en-featured-card-link:hover .en-featured-title {
    color: #00E5FF;
}
.en-featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 229, 255, 0.10);
}

/* ===== News Grid (magazine asymmetric) ===== */
.en-news-section {
    margin-bottom: 20px;
}
.en-news-stream {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.en-news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    grid-auto-flow: dense;
}

/* ===== News Card (Horizontal: content left, thumb right) ===== */
.en-news-card {
    opacity: 0;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}
.en-news-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 28px rgba(0, 229, 255, 0.20);
}
.en-news-card-link {
    position: relative;
    display: flex;
    gap: 0;
    background: #0F1626;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.en-news-card-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #00E5FF;
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.8);
    z-index: 4;
}
.en-news-card:hover .en-news-card-link {
    transform: translateY(-3px);
}
.en-news-card-content {
    padding: 16px 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}
.en-news-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #F1F5F9;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.en-news-card-link:hover .en-news-title {
    color: #00E5FF;
}
.en-news-snippet {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    color: #8595AE;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
.en-news-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 229, 255, 0.10);
}
.en-news-read {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #8595AE;
}
.en-news-card-thumb {
    position: relative;
    width: 140px;
    min-width: 140px;
    overflow: hidden;
    background: #0F1626;
}
.en-news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.en-news-card-link:hover .en-news-card-thumb img {
    transform: scale(1.08);
}

/* ===== Ad Slots ===== */
.en-ad-slot {
    width: 100%;
    margin: 8px auto;
    display: flex;
    justify-content: center;
}
.en-first-ad {
    max-width: 1280px;
    margin: 1px auto 28px;
    padding: 0 24px;
}

/* ===== Article Detail Page ===== */
.en-article-main {
    max-width: 840px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}
.en-back-btn {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 20px;
    background: #0F1626;
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    opacity: 0;
    transition: all 0.25s ease;
}
.en-back-btn:hover {
    background: #00E5FF;
    color: #070B14;
    border-color: transparent;
    transform: translateX(-3px);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}
.en-article-hero {
    position: relative;
    opacity: 0;
    background: rgba(15, 22, 38, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    padding: 30px 30px 26px;
    box-shadow: inset 0 0 40px rgba(0, 229, 255, 0.04);
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
    transition: border-color 0.3s ease, filter 0.3s ease;
}
.en-article-hero:hover {
    border-color: rgba(0, 229, 255, 0.55);
    filter: drop-shadow(0 10px 36px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.2));
}
.en-article-hero-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.en-article-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #F1F5F9;
    line-height: 1.22;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
}
.en-article-source-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.10);
}
.en-article-source-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.en-article-source-name {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #F1F5F9;
}
.en-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #8595AE;
}
.en-article-cover {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 22px;
    aspect-ratio: 16 / 9;
    background: #0F1626;
}
.en-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.en-action-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    background: #0F1626;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 10px;
}
.en-action-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-right: auto;
}
.en-views-lg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00E5FF;
}
.en-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.en-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #0F1626;
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 999px;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.en-action-btn:hover {
    background: #00E5FF;
    color: #070B14;
    border-color: #00E5FF;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}
.en-action-btn.en-bookmark-active {
    background: #00E5FF;
    color: #070B14;
    border-color: #00E5FF;
}
.en-action-btn.en-bookmark-active svg {
    fill: #070B14;
}
.en-article-body {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #CBD5E1;
    background: rgba(15, 22, 38, 0.72);
    padding: 34px 34px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.18);
    backdrop-filter: blur(10px);
    opacity: 0;
    margin-top: 22px;
}
.en-article-body p {
    margin-bottom: 20px;
}
.en-article-body p:first-child::first-letter {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #00E5FF;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    text-shadow: 0 0 14px rgba(0, 229, 255, 0.5);
}
.en-article-body a {
    color: #00E5FF;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.en-article-body a:hover {
    color: #5DFDFB;
}
.en-article-body strong {
    color: #F1F5F9;
    font-weight: 600;
}

/* ===== Related Articles ===== */
.en-related-section {
    margin-top: 44px;
}
.en-related-title-heading {
    margin-bottom: 20px;
}
.en-related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}
.en-related-card {
    opacity: 0;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    transition: box-shadow 0.35s ease;
}
.en-related-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.35), 0 0 28px rgba(0, 229, 255, 0.20);
}
.en-related-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0F1626;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease;
}
.en-related-card:hover .en-related-card-link {
    transform: translateY(-5px);
}
.en-related-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0F1626;
}
.en-related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.en-related-card-link:hover .en-related-media img {
    transform: scale(1.06);
}
.en-related-body {
    padding: 14px 16px 16px;
}
.en-related-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #F1F5F9;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.en-related-card-link:hover .en-related-title {
    color: #00E5FF;
}
.en-related-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 12px;
    color: #8595AE;
    margin-top: 4px;
}

/* ===== Static Pages ===== */
.en-static-main {
    max-width: 840px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}
.en-static-article {
    position: relative;
    background: rgba(15, 22, 38, 0.72);
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.18);
    backdrop-filter: blur(12px);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
    opacity: 0;
}
.en-static-title {
    font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #F1F5F9;
    line-height: 1.2;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.10);
    position: relative;
    letter-spacing: 0.2px;
}
.en-static-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 70px; height: 3px;
    background: #00E5FF;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}
.en-static-content {
    font-family: 'Inter', 'Segoe UI', Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #CBD5E1;
}
.en-static-content p {
    margin-bottom: 16px;
}
.en-static-content strong {
    color: #F1F5F9;
    font-weight: 600;
}
.en-static-content b {
    color: #F1F5F9;
    font-weight: 600;
}
.en-static-content ul {
    margin: 12px 0 18px 4px;
}
.en-static-content li {
    margin-bottom: 10px;
}
.en-static-content a {
    color: #00E5FF;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.en-static-content a:hover {
    color: #5DFDFB;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .en-section-title { font-size: 30px; }
    .en-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .en-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .en-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .en-hero-row {
        grid-template-columns: 1.6fr 1fr;
    }
    .en-article-title { font-size: 38px; }
    .en-static-title { font-size: 36px; }
    .en-lead-title { font-size: 34px; }
}

@media (min-width: 1024px) {
    .en-site-header { padding: 14px 24px; }
    .en-featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .en-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .en-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .en-news-card:first-child {
        grid-column: span 2;
    }
    .en-news-card:nth-child(5n) {
        grid-column: span 2;
    }
    .en-lead-title { font-size: 38px; }
    .en-article-title { font-size: 40px; }
}

@media (max-width: 600px) {
    .en-site-header { padding: 10px 16px; }
    .en-main { padding: 16px 16px 30px; }
    .en-first-ad { padding: 0 16px; }
    .en-article-main { padding: 16px 16px 30px; }
    .en-static-main { padding: 16px 16px 30px; }
    .en-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .en-search-wrap {
        max-width: 100%;
        order: 3;
    }
    .en-main-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .en-main-nav a {
        white-space: nowrap;
        padding: 7px 12px;
        font-size: 13px;
    }
    .en-brand-name { font-size: 22px; }
    .en-section-title { font-size: 22px; }
    .en-lead-story-link { max-height: 130px; }
    .en-lead-content { min-height: 360px; padding: 22px 20px; }
    .en-lead-title { font-size: 24px; }
    .en-lead-snippet { font-size: 14px; }
    .en-news-card-content { padding: 14px 14px 14px 18px; }
    .en-news-title { font-size: 15px; }
    .en-news-card-thumb { width: 100px; min-width: 100px; }
    .en-article-title { font-size: 24px; }
    .en-article-hero { padding: 22px 18px; }
    .en-article-body { padding: 26px 20px; font-size: 16px; }
    .en-article-body p:first-child::first-letter { font-size: 44px; }
    .en-action-bar { padding: 16px 16px; }
    .en-cta-read { width: 100%; text-align: center; }
    .en-action-btn { flex: 1; justify-content: center; }
    .en-static-article { padding: 28px 22px; }
    .en-static-title { font-size: 24px; }
    .en-footer-nav { gap: 18px; }
    .en-footer-logo { font-size: 24px; }
}
