:root {
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --bg-card: #1C2333;
    --bg-card-hover: #222D3F;
    --neon-blue: #00A8FF;
    --neon-blue-dim: #0088CC;
    --neon-blue-glow: rgba(0, 168, 255, 0.15);
    --gold: #FFD700;
    --gold-dim: #CCAC00;
    --gold-glow: rgba(255, 215, 0, 0.12);
    --text-primary: #E6EDF3;
    --text-secondary: #8B949E;
    --text-muted: #484F58;
    --border: #30363D;
    --border-light: #21262D;
    --danger: #F85149;
    --success: #3FB950;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 20px rgba(0, 168, 255, 0.2);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 100px;
    --topbar-height: 40px;
    --navbar-height: 64px;
    --width: 100%;
    --overflow-x: hidden;
}
* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
     filter:brightness(.65);
}
body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.55); /* Ubah angka untuk tingkat gelap */

    z-index:9998;

    pointer-events:none;
}
a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue-dim);
}

::selection {
    background: var(--neon-blue);
    color: #fff;
}

.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.top-bar-date {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-date svg {
    width: 14px;
    height: 14px;
    fill: var(--neon-blue);
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    margin: 0 20px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 12px;
    animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 12px;
    color: var(--text-secondary);
    padding-right: 60px;
    flex-shrink: 0;
}

.ticker-item strong {
    color: var(--text-primary);
    margin-right: 6px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-bar-social a {
    color: var(--text-secondary);
    transition: color var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
}

.top-bar-social a:hover {
    color: var(--neon-blue);
    transform: translateY(-1px);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.navbar {
    background: rgba(13, 17, 23, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: var(--navbar-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    background: rgba(13, 17, 23, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--neon-blue), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    color: var(--bg-primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--neon-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-blue);
    background: var(--neon-blue-glow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--neon-blue);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-search {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.btn-search:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: var(--neon-blue-glow);
}

.btn-search svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 90%;
    max-width: 640px;
    transform: translateY(-20px);
    transition: transform var(--transition);
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    font-size: 18px;
    font-family: var(--font-body);
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition);
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
}

.search-input-wrap input:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
}

.search-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 24px;
    padding: 4px;
    transition: color var(--transition);
}

.search-close:hover {
    color: var(--danger);
}

.search-results {
    margin-top: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.has-results {
    display: block;
}

.search-result-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-card-hover);
}

.search-result-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.search-result-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.search-no-result {
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(13, 17, 23, 0.92) 0%,
            rgba(13, 17, 23, 0.6) 50%,
            rgba(13, 17, 23, 0.3) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 700px;
}

.hero-slide-tag {
    display: inline-block;
    background: var(--neon-blue);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.hero-slide-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-slide-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 560px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon-blue);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    width: fit-content;
}

.btn-read-more:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-read-more svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.slider-nav {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--neon-blue);
    width: 52px;
    box-shadow: 0 0 8px rgba(0, 168, 255, 0.5);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    pointer-events: all;
}

.slider-arrow:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--bg-primary);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.featured-section {
    padding: 40px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 24px;
}

.featured-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    cursor: pointer;
}

.featured-main-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.featured-main:hover .featured-main-img {
    transform: scale(1.05);
}

.featured-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.3) 60%, transparent 100%);
}

.featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.featured-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-main-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-main-title a {
    color: var(--text-primary);
}

.featured-main-title a:hover {
    color: var(--neon-blue);
}

.featured-main-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.featured-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--neon-blue);
    margin-right: 4px;
    vertical-align: middle;
}

.featured-small-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-small {
    display: flex;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    flex: 1;
}

.featured-small:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
    transform: translateX(4px);
}

.featured-small-img {
    width: 120px;
    min-height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.featured-small-content {
    padding: 14px 14px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-small-tag {
    font-size: 10px;
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.featured-small-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-small-title a {
    color: var(--text-primary);
}

.featured-small-title a:hover {
    color: var(--neon-blue);
}

.featured-small-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.main-content {
    padding: 40px 0 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-light);
}

.section-title-bar {
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, var(--neon-blue), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.latest-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.latest-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
    transform: translateX(4px);
}

.latest-card-img {
    width: 260px;
    min-height: 180px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.latest-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 80%, var(--bg-card) 100%);
}

.latest-card-body {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-card-tag {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.latest-card-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.latest-card-title a {
    color: var(--text-primary);
}

.latest-card-title a:hover {
    color: var(--neon-blue);
}

.latest-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

.latest-card-meta svg {
    width: 13px;
    height: 13px;
    fill: var(--neon-blue);
    margin-right: 4px;
    vertical-align: middle;
}

.latest-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.latest-card-link:hover {
    color: var(--gold);
    gap: 8px;
}

.latest-card-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-title svg {
    width: 16px;
    height: 16px;
    fill: var(--neon-blue);
}

.sidebar-list-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.sidebar-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list-item:first-child {
    padding-top: 0;
}

.sidebar-list-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--border);
    min-width: 32px;
    line-height: 1;
    transition: color var(--transition);
}

.sidebar-list-item:hover .sidebar-list-num {
    color: var(--neon-blue);
}

.sidebar-list-content {
    flex: 1;
}

.sidebar-list-tag {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sidebar-list-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-list-title a {
    color: var(--text-primary);
}

.sidebar-list-title a:hover {
    color: var(--neon-blue);
}

.sidebar-list-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.sidebar-pick-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.sidebar-pick-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-pick-item:first-child {
    padding-top: 0;
}

.sidebar-pick-item:hover {
    transform: translateX(4px);
}

.sidebar-pick-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
}

.sidebar-pick-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-pick-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-pick-title a {
    color: var(--text-primary);
}

.sidebar-pick-title a:hover {
    color: var(--gold);
}

.sidebar-pick-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.pagination a:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: var(--neon-blue-glow);
}

.pagination .active {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--bg-primary);
    font-weight: 700;
}

.pagination .dots {
    border: none;
    color: var(--text-muted);
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: var(--neon-blue-glow);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--neon-blue);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--neon-blue);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--neon-blue);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--neon-blue);
    border: none;
    border-radius: 50%;
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0, 168, 255, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.article-page {
    padding: 30px 0 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--neon-blue);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    fill: var(--text-muted);
}

.article-cover {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.article-header {
    margin-bottom: 30px;
}

.article-tag {
    display: inline-block;
    background: var(--neon-blue-glow);
    color: var(--neon-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.article-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-primary);
}

.author-info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info small {
    font-size: 12px;
    color: var(--text-muted);
}

.article-meta-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.article-meta-item svg {
    width: 16px;
    height: 16px;
    fill: var(--neon-blue);
}

.article-body {
    max-width: 760px;
}

.article-body p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.article-body p:first-of-type::first-letter {
    font-size: 48px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--neon-blue);
    float: left;
    margin-right: 12px;
    margin-top: 4px;
    line-height: 1;
}

.article-body h2 {
    font-size: 22px;
    margin: 36px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--neon-blue);
}

.article-body h3 {
    font-size: 18px;
    margin: 28px 0 12px;
    color: var(--gold);
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--gold-glow);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-body ul, .article-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-body li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    margin: 30px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.article-share span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.share-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: pointer;
    background: none;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: #fff;
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.share-btn.copy:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--bg-primary);
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.related-articles {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.related-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.related-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.related-card-body {
    padding: 16px;
}

.related-card-tag {
    font-size: 10px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.related-card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-title a {
    color: var(--text-primary);
}

.related-card-title a:hover {
    color: var(--neon-blue);
}

.related-card-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.comments-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-light);
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    resize: vertical;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 12px;
}

.comment-form textarea::placeholder {
    color: var(--text-muted);
}

.comment-form textarea:focus {
    border-color: var(--neon-blue);
}

.comment-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-form-row input {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition);
}

.comment-form-row input::placeholder {
    color: var(--text-muted);
}

.comment-form-row input:focus {
    border-color: var(--neon-blue);
}

.btn-submit-comment {
    background: var(--neon-blue);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit-comment:hover {
    background: var(--gold);
}

.comment-list-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.comment-item {
    display: flex;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--bg-primary);
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.comment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.comment-date {
    font-size: 12px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.about-content h2 {
    font-size: 22px;
    margin: 32px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--neon-blue);
}

.about-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--neon-blue);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--neon-blue-glow);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--neon-blue);
}

.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--neon-blue);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--neon-blue);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: var(--gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--bg-card);
    border: 1px solid var(--neon-blue);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-neon);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.mobile-nav-overlay.active {
    display: block;
}