@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;600;700&display=swap');

:root {
    --bg-dark: #0a0e17;
    --bg-card: rgba(15, 23, 42, 0.75);
    --border-color: rgba(212, 175, 55, 0.2);
    --border-glow: rgba(212, 175, 55, 0.4);
    --accent-gold: #d4af37;
    --accent-red: #e2583e;
    --accent-blue: #00e5ff;
    --accent-cyan: #00b5d8;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --font-serif: 'Noto Serif SC', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background canvas and decoration */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Chinese classic frame border line */
.decor-line {
    position: fixed;
    border: 1px solid var(--border-color);
    pointer-events: none;
    z-index: 99;
}
.decor-line-top { top: 15px; left: 15px; right: 15px; height: 0; }
.decor-line-bottom { bottom: 15px; left: 15px; right: 15px; height: 0; }
.decor-line-left { top: 15px; bottom: 15px; left: 15px; width: 0; }
.decor-line-right { top: 15px; bottom: 15px; right: 15px; width: 0; }

/* Custom mouse trail style */
.mouse-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* Header & Nav */
header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 88, 62, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 88, 62, 0.5);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-red) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Layout container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 100px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 14px;
    color: var(--accent-gold);
    margin-top: 8px;
    text-align: center;
    -webkit-text-fill-color: var(--accent-gold);
}

/* Hero Section (H1 + Counters) */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.brand-badge {
    background: rgba(226, 88, 62, 0.1);
    border: 1px solid rgba(226, 88, 62, 0.3);
    color: var(--accent-red);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content {
    width: 100%;
    margin-bottom: 40px;
}

h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 10%, var(--accent-gold) 60%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 40px;
    border-radius: 16px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-stat-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 32px var(--border-glow);
    transform: translateY(-3px);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stat-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

.stat-label.online::before {
    background-color: #00e676;
    box-shadow: 0 0 8px #00e676;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Plan Cards (H2 Scroll snap) */
.plans-wrapper {
    position: relative;
    padding: 20px 0;
}

.plans-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.plans-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.plan-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px var(--border-glow);
    transform: translateY(-8px);
}

.plan-card.popular {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(226, 88, 62, 0.15);
}

.plan-card.popular:hover {
    box-shadow: 0 15px 40px rgba(226, 88, 62, 0.4);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 25px;
}

.plan-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price-symbol {
    font-size: 18px;
    color: var(--accent-gold);
    font-weight: 600;
}

.plan-price {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.plan-period {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
}

.plan-card.popular .plan-features li::before {
    color: var(--accent-red);
}

.plan-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.plan-btn-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.plan-btn-gold:hover {
    background: var(--accent-gold);
    color: #000;
}

.plan-btn-red {
    background: var(--accent-red);
    color: #fff;
    border: 1px solid var(--accent-red);
    box-shadow: 0 4px 15px rgba(226, 88, 62, 0.2);
}

.plan-btn-red:hover {
    background: transparent;
    color: var(--accent-red);
    box-shadow: none;
}

/* Horizontal slide buttons for PC */
.slider-control {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Articles Section (H3 Holographic Vertically Sliding) */
.articles-section {
    position: relative;
}

.cyber-terminal-wrapper {
    background: rgba(8, 12, 21, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05), 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cyber-terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-dot:nth-child(1) { background-color: var(--accent-red); }
.terminal-dot:nth-child(2) { background-color: var(--accent-gold); }
.terminal-dot:nth-child(3) { background-color: var(--accent-blue); }

.terminal-title {
    font-family: monospace;
    font-size: 13px;
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    letter-spacing: 1px;
}

.articles-scroll-container {
    height: 380px;
    overflow: hidden;
    position: relative;
    /* Gradient mask at top and bottom for smooth fade-in/fade-out */
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.articles-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: verticalMarquee 35s linear infinite;
}

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

@keyframes verticalMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.article-row-card {
    background: rgba(16, 22, 35, 0.6);
    border-left: 4px solid var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.article-row-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--accent-red);
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-row-main {
    flex-grow: 1;
    padding-right: 20px;
}

.article-row-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: monospace;
}

.article-row-tag {
    color: var(--accent-blue);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 1px 6px;
    border-radius: 4px;
}

.article-row-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    transition: var(--transition);
}

.article-row-card:hover .article-row-title {
    color: var(--accent-gold);
}

.article-row-summary {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-row-action {
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 20px;
    transition: var(--transition);
}

.article-row-card:hover .article-row-action {
    color: var(--accent-red);
    transform: translateX(5px);
}

/* Reviews and Speed Test (H4 Side by Side) */
.reviews-speed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.widget-title-icon {
    color: var(--accent-gold);
}

/* Reviews Carousel */
.reviews-container {
    position: relative;
    height: 180px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.review-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.review-text::before {
    content: '“';
    font-size: 40px;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    left: 0;
    top: -15px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-weight: 700;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-username {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

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

.review-stars {
    color: var(--accent-gold);
    font-size: 12px;
    margin-top: 3px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
    width: 20px;
    border-radius: 4px;
}

/* Speed Test widget */
.speed-test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    margin-bottom: 12px;
}

.refresh-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-blue);
}

.refresh-spinner {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent-blue);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.speed-test-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speed-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.speed-node::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-blue);
}

.speed-node.stable::before { background-color: #00e676; }
.speed-node.avg::before { background-color: var(--accent-gold); }

.node-info-col {
    display: flex;
    flex-direction: column;
}

.node-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.node-type {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}

.node-stats-col {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: monospace;
}

.node-latency {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.latency-val {
    color: #00e676;
    font-weight: 600;
}
.latency-val.warn {
    color: var(--accent-gold);
}
.latency-label {
    font-size: 9px;
    color: var(--text-muted);
}

.node-speed {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 70px;
}
.speed-val {
    color: #fff;
    font-weight: 600;
}
.speed-bar {
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}
.speed-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-blue), #00e676);
    width: 80%;
    transition: width 1s ease;
}

/* FAQ & Coverage Maps (H5 Sections) */
.faq-coverage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
}

/* FAQ accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-size: 15px;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Server Coverage Map */
.coverage-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    background: rgba(16, 22, 35, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.world-svg-map {
    width: 100%;
    height: auto;
    max-height: 320px;
}

/* Pulse dots and lines on map */
.map-dot {
    fill: var(--accent-gold);
    stroke: #fff;
    stroke-width: 1px;
}

.map-dot-pulse {
    fill: var(--accent-gold);
    animation: mapPulse 2s infinite;
    transform-origin: center;
}

.map-link-line {
    stroke: url(#map-gradient);
    stroke-width: 1.5;
    stroke-dasharray: 6 3;
    animation: dashOffset 15s linear infinite;
    fill: none;
}

@keyframes mapPulse {
    0% { r: 3px; opacity: 1; }
    100% { r: 15px; opacity: 0; }
}

@keyframes dashOffset {
    to { stroke-dashoffset: -100; }
}

.nodes-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.node-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-family: monospace;
}

.node-pill-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00e676;
    box-shadow: 0 0 6px #00e676;
}

/* Platform unlocks (H6 grid) */
.unlocks-section {
    text-align: center;
}

.unlocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.unlock-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.unlock-category:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--border-glow);
}

h6.category-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
}

.category-icon-main {
    color: var(--accent-gold);
}

.unlock-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.unlock-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 13px;
    color: var(--text-light);
}

.unlock-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.unlock-icon {
    font-size: 20px;
    line-height: 1;
}

/* Footer & PBN weights links */
footer {
    width: 100%;
    background: rgba(5, 8, 14, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 25px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.footer-desc {
    max-width: 500px;
    font-size: 12px;
}

.pbn-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pbn-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.pbn-links a:hover {
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reviews-speed-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 34px;
    }
    
    .hero-stats-wrapper {
        gap: 15px;
    }
    
    .hero-stat-card {
        min-width: 160px;
        padding: 15px 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .unlocks-grid {
        grid-template-columns: 1fr;
    }
    
    .decor-line {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .plan-card {
        flex: 0 0 260px;
    }
    
    .article-row-card {
        padding: 15px;
    }
    
    .article-row-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .article-row-action {
        display: none;
    }
}
