/* ============================================
   COOL SUCCESS - Dark Theme Styles
   ============================================ */

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

:root {
    /* Dark Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-tertiary: #1a1a25;
    --bg-card: #1e1e2e;
    --bg-card-hover: #252538;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;

    /* Accent Colors */
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    --accent-pink: #ff6b6b;
    --accent-green: #4ade80;
    --accent-gold: #ffd700;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #a855f7 50%, #ff6b6b 100%);
    --gradient-cyan-purple: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --gradient-gold-red: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    --gradient-green-cyan: linear-gradient(135deg, #4ade80 0%, #00d4ff 100%);
    --gradient-text: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);

    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img,
.footer-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover,
.footer-logo-img:hover {
    transform: scale(1.05);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.8;
}

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

.nav-link {
    padding: 10px 20px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    display: flex;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-glow {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.5);
    font-size: 0.9rem;
    padding: 10px 24px;
}

.btn-glow:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(1px 1px at 160px 20px, rgba(168, 85, 247, 0.3), transparent);
    background-size: 200px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.badge-glow {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-main {
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero-title-sub {
    color: var(--text-secondary);
}

.hero-title-accent {
    background: var(--gradient-gold-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   Ad Section
   ============================================ */
.ad-leaderboard {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.ad-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.ad-section {
    padding: 24px 0;
    background: var(--bg-secondary);
}

.ad-placeholder {
    width: 728px;
    max-width: 100%;
    height: 90px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-radius: 8px;
}

.ad-placeholder.ad-728x90 { width: 728px; height: 90px; }
.ad-placeholder.ad-160x600 { width: 160px; height: 600px; }
.ad-placeholder.ad-300x250 { width: 300px; height: 250px; }

/* ============================================
   Latest News Ticker
   ============================================ */
.news-ticker {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    overflow: hidden;
}

.news-ticker-inner {
    overflow: hidden;
    width: 100%;
}

.news-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: news-ticker-scroll 45s linear infinite;
}

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

.news-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 6px 28px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.news-ticker-item:hover {
    color: var(--accent-cyan);
}

.news-ticker-label {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    flex-shrink: 0;
}

@keyframes news-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section.alt {
    background: var(--bg-secondary);
}

.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.section-tag .pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Mindset Section
   ============================================ */
.mindset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.mindset-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mindset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mindset-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.mindset-card:hover::before {
    opacity: 1;
}

.mindset-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.mindset-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Strategies Section
   ============================================ */
.strategies-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-item {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    transition: all 0.3s ease;
    align-items: center;
}

.strategy-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: var(--bg-card-hover);
    transform: translateX(8px);
}

.strategy-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.strategy-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.strategy-content p {
    color: var(--text-secondary);
}

/* ============================================
   RSS Feed Section
   ============================================ */
.rss-section {
    background: var(--bg-tertiary);
}

.rss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.rss-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.rss-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.rss-source {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.rss-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.rss-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.rss-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.rss-link {
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.9rem;
}

.rss-link:hover {
    text-decoration: underline;
}

/* ============================================
   Insights Section
   ============================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.insight-image {
    height: 200px;
    position: relative;
    background: var(--bg-tertiary);
}

.insight-image.small {
    height: 160px;
}

.insight-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
}

.insight-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.insight-content {
    padding: 24px;
}

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

.insight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.insight-link {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.insight-link:hover {
    text-decoration: underline;
}

/* ============================================
   Blog Section
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 220px;
    position: relative;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(255, 107, 107, 0.3) 100%);
}

.blog-tag {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.blog-content {
    padding: 24px;
    flex: 1;
}

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

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-load-more {
    min-width: 160px;
}

/* ============================================
   Subscribe Section
   ============================================ */
.subscribe {
    padding: 100px 0;
    position: relative;
}

.subscribe-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.subscribe-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 16px;
}

.subscribe-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.subscribe-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.subscribe-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 0 24px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-card.featured {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .logo-img,
    .footer-logo-img {
        height: 40px;
    }

    .nav-menu {
        display: flex;
    }

    .nav-link:not(:last-child) {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .ad-placeholder {
        width: 100%;
        max-width: 728px;
    }

    .strategy-item {
        flex-direction: column;
        text-align: center;
    }

    .strategy-number {
        min-width: auto;
    }

    .mindset-grid,
    .rss-grid,
    .insights-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

/* ============================================
   Blog Page Specific
   ============================================ */
.blog-page {
    padding-top: 100px;
}

.blog-hero {
    position: relative;
    text-align: center;
    padding: 0 0 56px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.blog-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.blog-hero-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    opacity: 0.04;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8L36 20L48 24L36 28L32 40L28 28L16 24L28 20L32 8Z' stroke='%2300d4ff' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='32' cy='32' r='4' stroke='%23a855f7' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
}

.blog-hero-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 28%;
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 24, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content .article-category {
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}

.blog-hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.blog-hero-subtitle {
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.blog-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-nav a {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.blog-nav a:hover,
.blog-nav a.active {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

/* Article Styles */
.article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 48px;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.article-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-content p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

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

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

/* Related Blogs Section */
.related-blogs {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-blogs h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

/* Blog Page Ad Placements */
.blog-ad-leaderboard {
    margin: 40px 0;
}

.blog-ad-skyscraper {
    display: none;
}

.blog-ad-square {
    margin: 32px 0;
}

.blog-ad-square .ad-placeholder {
    width: 300px;
    height: 250px;
}

/* Blog Layout */
.blog-layout {
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .blog-layout {
        display: grid;
        grid-template-columns: 1fr 180px 300px;
        gap: 24px;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
    }

    .blog-main {
        grid-column: 1;
    }

    .blog-sidebar-skyscraper {
        grid-column: 2;
    }

    .blog-sidebar-square {
        grid-column: 3;
    }

    .blog-ad-square {
        display: none;
    }
}

/* Blog Page Ads */
.blog-page-ad-skyscraper {
    display: none;
}

.blog-page-ad-square {
    margin: 32px 0;
}

@media (min-width: 1024px) {
    .blog-page-ad-skyscraper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .ad-placeholder.skyscraper {
        width: 160px;
        height: 600px;
    }

    .ad-placeholder.square {
        width: 300px;
        height: 250px;
    }
}

.ad-placeholder.skyscraper {
    width: 160px;
    height: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-radius: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.ad-placeholder.square {
    width: 300px;
    height: 250px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Search */
.blog-search {
    max-width: 600px;
    margin: 0 auto 48px;
}

.blog-search input {
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.blog-search input:focus {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   Blog Page Specific - Updated
   ============================================ */

/* Small Blog Grid for Related Articles */
.blog-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.blog-card-small {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-small:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
}

.blog-content-small {
    padding: 16px;
}

.blog-meta-small {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-content-small h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.blog-content-small p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-sidebar-ad {
    margin-top: 8px;
    margin-bottom: 8px;
}

.blog-sidebar-ad:first-child {
    margin-top: 0;
}

.sidebar-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sidebar-list,
.sidebar-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
}

.sidebar-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-cyan);
}

.sidebar-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-sidebar {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Related Blogs Under Article */
.related-blogs-under-article {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-blogs-under-article h4 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .blog-layout {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 24px;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
    }

    .blog-main {
        grid-column: 1;
    }

    .blog-sidebar-skyscraper {
        grid-column: 2;
    }

    .blog-sidebar-square {
        grid-column: 3;
    }

    .blog-page-ad-square {
        display: none;
    }

    .blog-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ad-placeholder.skyscraper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 600px;
    }

    .blog-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ad-placeholder.skyscraper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .blog-page-ad-square {
        display: none;
    }

    .ad-placeholder.square {
        width: 300px;
        height: 250px;
    }
}

/* Blog Page Ads */
.blog-page-ad-skyscraper {
    display: none;
}

.blog-page-ad-square {
    margin: 32px 0;
}

@media (min-width: 1024px) {
    .blog-page-ad-skyscraper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .ad-placeholder.skyscraper {
        width: 160px;
        height: 600px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 2px dashed rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 0.8rem;
        border-radius: 8px;
    }
}

@media (min-width: 1024px) {
    .ad-placeholder.square {
        width: 300px;
        height: 250px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 2px dashed rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 0.85rem;
        border-radius: 8px;
    }
}

/* ============================================
   Blog Listing Page (Article Index)
   ============================================ */
.blog-listing-page {
    padding-top: 80px;
}

.blog-listing-hero {
    position: relative;
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Layered background patterns */
.blog-listing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.blog-listing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.blog-listing-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.blog-listing-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
    pointer-events: none;
}

.blog-listing-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-listing-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.blog-listing-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-listing-body {
    padding: 48px 0 80px;
    background: var(--bg-primary);
}

.blog-listing-container {
    display: grid;
    gap: 48px;
}

@media (min-width: 1024px) {
    .blog-listing-container {
        grid-template-columns: 1fr 300px;
        gap: 48px;
        align-items: start;
    }
}

.blog-listing-main {
    min-width: 0;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-listing-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-listing-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.blog-listing-card-image {
    position: relative;
    height: 180px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.blog-listing-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-listing-card-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.blog-listing-card-gradient.gradient-green {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.25) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.blog-listing-card-gradient.gradient-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 107, 0.25) 100%);
}

.blog-listing-card-gradient.gradient-cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(168, 85, 247, 0.2) 100%);
}

.blog-listing-card-gradient.gradient-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(255, 107, 107, 0.2) 100%);
}

.blog-listing-card-tag {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.blog-listing-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.blog-listing-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.blog-listing-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.blog-listing-card-link {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-listing-card:hover .blog-listing-card-link {
    color: var(--text-primary);
}

/* Pagination */
.blog-listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-listing-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.blog-listing-pagination-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.blog-listing-pagination-btn.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-primary);
}

/* Sidebar */
.blog-listing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-listing-sidebar-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.blog-listing-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-listing-search {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-listing-search input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

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

.blog-listing-search input:focus {
    border-color: var(--accent-cyan);
}

.blog-listing-search-btn {
    padding: 10px 20px;
    background: var(--gradient-cyan-purple);
    border: none;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-listing-search-btn:hover {
    opacity: 0.9;
}

.blog-listing-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-listing-sidebar-list li {
    margin-bottom: 6px;
}

.blog-listing-sidebar-list a {
    display: block;
    padding: 10px 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.blog-listing-sidebar-list a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
}

.blog-listing-popular a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-listing-popular li:last-child a {
    border-bottom: none;
}

.blog-listing-sidebar-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1023px) {
    .blog-listing-sidebar {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .blog-listing-sidebar-section {
        flex: 1 1 280px;
    }
}

