@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #060202;
    --bg-secondary: #0f0505;
    --bg-card: rgba(22, 10, 10, 0.45);
    --bg-card-hover: rgba(35, 12, 12, 0.65);
    
    --accent-red: #ff2e2e;
    --accent-red-hover: #ff5252;
    --accent-red-glow: rgba(255, 46, 46, 0.35);
    --accent-dark-red: #800c0c;
    --accent-orange: #ff763b;
    
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    
    --border-color: rgba(255, 46, 46, 0.12);
    --border-hover: rgba(255, 46, 46, 0.3);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset & Scrollbar */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-dark-red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Neon Red Background Glows */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}
.orb-1 {
    top: 5%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
}
.orb-2 {
    top: 35%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--accent-dark-red) 0%, transparent 70%);
}
.orb-3 {
    bottom: 10%;
    left: 20%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
}

/* Typography & Layout */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 2, 2, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    box-shadow: 0 0 15px rgba(255, 46, 46, 0.5);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-red);
    text-shadow: 0 0 8px rgba(255, 46, 46, 0.4);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 46, 46, 0.1);
}

.nav-cta:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-red-glow);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Custom Cursor Trail Style */
.trail-particle {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red), 0 0 20px var(--accent-red);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: width 0.2s, height 0.2s, opacity 0.5s ease-out;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 46, 46, 0.08);
    border: 1px solid rgba(255, 46, 46, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(255, 46, 46, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--accent-red); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fff 30%, #ff8b8b 70%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark-red) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 46, 46, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(255, 46, 46, 0.55);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 46, 46, 0.2);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features Section */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(255, 46, 46, 0.08);
}

.feature-image {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-image img {
    transform: scale(1.06);
}

.feature-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 2, 2, 0.85);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--accent-red-glow);
    z-index: 2;
}

.feature-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Node Map Visualizer */
.map-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(40, 10, 10, 0.3) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 40px;
}

.map-svg {
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.map-ping {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-ping::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    border-radius: 50%;
    border: 1px solid var(--accent-red);
    animation: ripple 2.5s infinite linear;
}

@keyframes ripple {
    0% { transform: scale(0.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.ping-hk { top: 58%; left: 74%; }
.ping-sg { top: 72%; left: 71%; }
.ping-jp { top: 48%; left: 80%; }
.ping-us { top: 45%; left: 24%; }
.ping-uk { top: 38%; left: 48%; }

.node-info-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(6, 2, 2, 0.85);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.node-info-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.node-info-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.pricing-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-label.active {
    color: var(--text-primary);
}

.pricing-toggle {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pricing-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red-glow);
    transition: var(--transition-smooth);
}

.pricing-toggle.yearly::before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 46, 46, 0.1);
    transform: scale(1.03);
}

.pricing-card.popular::before {
    content: '推荐';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.pricing-card.popular:hover {
    border-color: var(--accent-red-hover);
    transform: translateY(-5px) scale(1.03);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-btn {
    width: 100%;
    margin-bottom: 36px;
    text-align: center;
    justify-content: center;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* User Reviews (Testimonials) */
.reviews-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.rating {
    color: #ffb800;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    border: 1px solid var(--accent-red);
    font-size: 1.1rem;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 46, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(6, 2, 2, 0.25);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.faq-item.active {
    border-color: rgba(255, 46, 46, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-red);
    color: #fff;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.article-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-image img {
    transform: scale(1.06);
}

.article-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 2, 2, 0.85);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--accent-red-glow);
    z-index: 2;
}

.article-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

.article-title a:hover {
    color: var(--accent-red);
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.article-readmore {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-readmore:hover {
    color: var(--accent-red-hover);
}

/* Call to Action CTA block */
.cta-block {
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.85) 0%, rgba(50, 10, 10, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(255, 46, 46, 0.05);
}

.cta-block h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 40%, #ff8b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-block p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px;
    color: var(--text-secondary);
}

/* Article Template Styles (For inner article pages) */
.article-page {
    padding: 160px 0 100px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.article-header-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.article-header-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e1e1e6;
}

.article-content p {
    margin-bottom: 24px;
    color: #e1e1e6;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 16px;
    color: var(--text-primary);
}

.article-content strong {
    color: var(--accent-red);
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-badge {
    background: rgba(255, 46, 46, 0.06);
    border: 1px solid rgba(255, 46, 46, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--accent-red);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.back-to-home:hover {
    color: var(--accent-red);
}

/* Footer Section */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-desc {
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-red);
}

/* PBN Friendly Links - Low Profile & Blended */
.pbn-links-area {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 46, 46, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 0.75rem;
}

.pbn-link {
    color: var(--text-muted) !important;
    transition: var(--transition-fast);
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.pbn-link:hover {
    color: var(--accent-red) !important;
    opacity: 1;
    text-shadow: 0 0 5px rgba(255, 46, 46, 0.3);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .card-grid, .pricing-grid, .reviews-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px) scale(1);
    }
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-grid, .pricing-grid, .reviews-grid, .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-block h2 {
        font-size: 2.2rem;
    }
    
    .article-header-title {
        font-size: 2.2rem;
    }
}
