/* ==================== PAGES.CSS ==================== */
/* Page-specific styles for Whale Flow Hunter website */
/* This file complements styles.css with component and page-level styles */

/* ==================== SHARED PAGE HEADER ==================== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D4FF 0%, #E8F4F8 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 20px;
    color: #8BA3B0;
    line-height: 1.6;
}

/* ==================== SHARED CTA SECTION ==================== */
.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00D4FF 0%, #E8F4F8 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: #8BA3B0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== HOMEPAGE STYLES ==================== */
/* Hub Section */
.hub-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.hub-card {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.hub-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.hub-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.hub-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 12px;
}

.hub-card__description {
    color: #8BA3B0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hub-card__link {
    color: #00D4FF;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hub-card__link .arrow {
    transition: transform 0.2s ease;
}

.hub-card:hover .hub-card__link .arrow {
    transform: translateX(4px);
}

/* Data Sources Grid */
.data-sources {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.data-source {
    text-align: left;
    padding: 28px 24px;
    background: rgba(0, 20, 40, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.data-source::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.data-source:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.15);
}

.data-source--options:hover::before { background: linear-gradient(90deg, #00D4FF, #00B4E6); }
.data-source--darkpool:hover::before { background: linear-gradient(90deg, #7B68EE, #9B7EFF); }
.data-source--insider:hover::before { background: linear-gradient(90deg, #4ADE80, #22C55E); }
.data-source--congress:hover::before { background: linear-gradient(90deg, #FFD93D, #F59E0B); }

.data-source__icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.data-source--options .data-source__icon-wrapper { background: rgba(0, 212, 255, 0.15); }
.data-source--darkpool .data-source__icon-wrapper { background: rgba(123, 104, 238, 0.15); }
.data-source--insider .data-source__icon-wrapper { background: rgba(74, 222, 128, 0.15); }
.data-source--congress .data-source__icon-wrapper { background: rgba(255, 217, 61, 0.15); }

.data-source--options:hover .data-source__icon-wrapper { background: rgba(0, 212, 255, 0.25); }
.data-source--darkpool:hover .data-source__icon-wrapper { background: rgba(123, 104, 238, 0.25); }
.data-source--insider:hover .data-source__icon-wrapper { background: rgba(74, 222, 128, 0.25); }
.data-source--congress:hover .data-source__icon-wrapper { background: rgba(255, 217, 61, 0.25); }

.data-source__icon {
    font-size: 24px;
    display: block;
}

.data-source--options .data-source__icon { color: #00D4FF; }
.data-source--darkpool .data-source__icon { color: #7B68EE; }
.data-source--insider .data-source__icon { color: #4ADE80; }
.data-source--congress .data-source__icon { color: #FFD93D; }

.data-source__name {
    font-size: 16px;
    font-weight: 600;
    color: #E8F4F8;
    margin-bottom: 8px;
}

.data-source__desc {
    font-size: 14px;
    color: #8BA3B0;
    line-height: 1.5;
}

/* ==================== FEATURES PAGE STYLES ==================== */
.feature-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-detail:nth-child(even) {
    direction: rtl;
}

.feature-detail:nth-child(even) > * {
    direction: ltr;
}

.feature-detail__content {
    padding: 20px 0;
}

.feature-detail__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-detail__title {
    font-size: 32px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 16px;
}

.feature-detail__description {
    font-size: 18px;
    color: #8BA3B0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-detail__list {
    list-style: none;
    padding: 0;
}

.feature-detail__list li {
    color: #A8C5D1;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.feature-detail__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: bold;
}

.feature-detail__visual {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.feature-detail__visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(123, 104, 238, 0.06) 0%, transparent 50%);
}

.feature-visual-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: featureRingPulse 4s ease-in-out infinite;
}

.feature-visual-ring--1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.feature-visual-ring--2 {
    width: 75%;
    height: 75%;
    animation-delay: 0.5s;
}

.feature-visual-ring--3 {
    width: 50%;
    height: 50%;
    animation-delay: 1s;
}

@keyframes featureRingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.feature-visual-icon {
    font-size: 64px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.feature-visual-svg {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
}

.feature-detail:nth-child(1) .feature-visual-icon { color: #00D4FF; }
.feature-detail:nth-child(2) .feature-visual-icon { color: #7B68EE; }
.feature-detail:nth-child(3) .feature-visual-icon { color: #00FF88; }
.feature-detail:nth-child(4) .feature-visual-icon { color: #FFD700; }

.feature-detail:nth-child(1) .feature-visual-ring { border-color: rgba(0, 212, 255, 0.3); }
.feature-detail:nth-child(2) .feature-visual-ring { border-color: rgba(123, 104, 238, 0.3); }
.feature-detail:nth-child(3) .feature-visual-ring { border-color: rgba(0, 255, 136, 0.3); }
.feature-detail:nth-child(4) .feature-visual-ring { border-color: rgba(255, 215, 0, 0.3); }

.feature-visual-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.feature-visual-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: featureDotFloat 6s ease-in-out infinite;
}

.feature-visual-dot:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.feature-visual-dot:nth-child(2) { top: 30%; right: 15%; animation-delay: 1s; }
.feature-visual-dot:nth-child(3) { bottom: 20%; left: 25%; animation-delay: 2s; }
.feature-visual-dot:nth-child(4) { bottom: 35%; right: 20%; animation-delay: 3s; }

@keyframes featureDotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

.feature-detail__visual-icon {
    font-size: 120px;
    opacity: 0.8;
}

/* Confluence Section */
.confluence-section {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
    padding: 100px 40px;
    text-align: center;
}

.confluence-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #E8F4F8;
}

.confluence-section p {
    font-size: 18px;
    color: #8BA3B0;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.confluence-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 48px;
}

.confluence-item {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.confluence-item__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.confluence-item--options .confluence-item__icon { color: #00D4FF; }
.confluence-item--darkpool .confluence-item__icon { color: #7B68EE; }
.confluence-item--insider .confluence-item__icon { color: #4ADE80; }
.confluence-item--congress .confluence-item__icon { color: #FFD93D; }

.confluence-item__name {
    font-size: 14px;
    color: #8BA3B0;
    font-weight: 500;
}

.confluence-arrow {
    font-size: 24px;
    color: #00D4FF;
}

.confluence-result {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 32px 48px;
}

.confluence-result__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.confluence-result__name {
    font-size: 18px;
    color: #00D4FF;
    font-weight: 700;
}

/* ==================== HOW IT WORKS PAGE STYLES ==================== */
.video-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.process-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.process-step__number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    color: #060A10;
    font-size: 24px;
    font-weight: 800;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step__title {
    font-size: 24px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 16px;
    margin-top: 12px;
}

.process-step__description {
    color: #8BA3B0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-step__details {
    list-style: none;
    padding: 0;
}

.process-step__details li {
    color: #A8C5D1;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.process-step__details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00D4FF;
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
    padding: 100px 40px;
}

.why-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.why-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #E8F4F8;
}

.why-section__inner > .section-subtitle {
    text-align: center;
    color: #8BA3B0;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(0, 20, 40, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

.why-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 12px;
}

.why-card__description {
    color: #8BA3B0;
    font-size: 15px;
    line-height: 1.6;
}

/* Alert Example */
.alert-example {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.alert-example h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #E8F4F8;
}

.alert-box {
    background: rgba(0, 20, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    font-family: 'JetBrains Mono', monospace;
}

.alert-box__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.alert-box__badge {
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    color: #060A10;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.alert-box__title {
    color: #00D4FF;
    font-size: 18px;
    font-weight: 600;
}

.alert-box__content {
    color: #A8C5D1;
    font-size: 14px;
    line-height: 1.8;
}

.alert-box__ticker {
    color: #00D4FF;
    font-weight: 600;
}

.alert-box__highlight {
    color: #4ADE80;
}

/* ==================== PRICING PAGE STYLES ==================== */
.guarantee-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

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

.guarantee-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(0, 20, 40, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
}

.guarantee-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.guarantee-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 8px;
}

.guarantee-card__description {
    font-size: 14px;
    color: #8BA3B0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #E8F4F8;
}

.faq-item {
    margin-bottom: 24px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
}

.faq-item__question {
    font-size: 18px;
    font-weight: 600;
    color: #E8F4F8;
    margin-bottom: 12px;
}

.faq-item__answer {
    font-size: 16px;
    color: #8BA3B0;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 80px 40px;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #E8F4F8;
}

.final-cta p {
    color: #8BA3B0;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== DISCORD TOOLS PAGE STYLES ==================== */
.two-tier-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.two-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tier-card {
    background: rgba(0, 20, 40, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.tier-card--primary {
    border-color: rgba(0, 212, 255, 0.3);
}

.tier-card__badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    color: #060A10;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tier-card--primary .tier-card__badge {
    background: linear-gradient(135deg, #4ADE80 0%, #166534 100%);
    color: #060A10;
}

.tier-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tier-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 16px;
}

.tier-card__description {
    color: #8BA3B0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tier-card__highlight {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #00D4FF;
    font-size: 14px;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
    padding: 80px 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #00D4FF 0%, #E8F4F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-item__label {
    color: #8BA3B0;
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

/* Commands Section */
.commands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.commands-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #E8F4F8;
}

.commands-section > p {
    text-align: center;
    color: #8BA3B0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
}

.command-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.command-category {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
}

.command-category:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.command-category__icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
    color: #00D4FF;
}

.command-category__name {
    font-size: 20px;
    font-weight: 700;
    color: #E8F4F8;
    margin-bottom: 12px;
    display: block;
}

.command-category__desc {
    color: #8BA3B0;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    margin-bottom: 16px;
}

.command-category__examples {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-category__examples li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #00D4FF;
    padding: 6px 0;
    opacity: 0.8;
}

/* Example Section */
.example-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.example-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #E8F4F8;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.example-card {
    background: rgba(0, 20, 40, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.example-card__header {
    background: rgba(0, 212, 255, 0.1);
    padding: 12px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #00D4FF;
}

.example-card__body {
    padding: 20px;
    font-size: 14px;
    color: #A8C5D1;
    line-height: 1.6;
}

/* Note Section */
.note-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.note-box {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
}

.note-box__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.note-box__content {
    color: #A8C5D1;
    font-size: 16px;
    line-height: 1.7;
}

.note-box__content strong {
    color: #E8F4F8;
}

/* ==================== BLOG PAGE STYLES ==================== */
.blog-header {
    position: relative;
    z-index: 1;
    padding: 140px 40px 60px;
    text-align: center;
}

.blog-header__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #E8F4F8 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header__subtitle {
    font-size: 18px;
    color: #8BA3B0;
    max-width: 600px;
    margin: 0 auto;
}

/* Search & Filters */
.search-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.search-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    color: #E8F4F8;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
}

.search-input::placeholder {
    color: #6B8490;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B8490;
    font-size: 18px;
}

.search-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.category-filter {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    color: #8BA3B0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: #E8F4F8;
}

.category-filter--active {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    color: #00D4FF;
}

/* Featured Post */
.featured-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.featured-post__image {
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-post__image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(10, 14, 23, 0.8), transparent);
}

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

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.featured-post__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #E8F4F8;
}

.featured-post__excerpt {
    color: #8BA3B0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #6B8490;
}

.featured-post__category {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Posts Grid */
.posts-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.post-card {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.post-card__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-card__content {
    padding: 24px;
}

.post-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #E8F4F8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__excerpt {
    color: #8BA3B0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6B8490;
}

.post-card__reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Category Colors */
.category--options { background: rgba(0, 212, 255, 0.15); color: #00D4FF; }
.category--darkpool { background: rgba(123, 104, 238, 0.15); color: #7B68EE; }
.category--insider { background: rgba(50, 205, 50, 0.15); color: #32CD32; }
.category--congress { background: rgba(255, 165, 0, 0.15); color: #FFA500; }
.category--analysis { background: rgba(255, 107, 129, 0.15); color: #FF6B81; }
.category--strategy { background: rgba(100, 149, 237, 0.15); color: #6495ED; }
.category--news { background: rgba(255, 215, 0, 0.15); color: #FFD700; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.pagination__button {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    color: #8BA3B0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination__button:hover:not(:disabled) {
    border-color: rgba(0, 212, 255, 0.4);
    color: #E8F4F8;
}

.pagination__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination__info {
    color: #6B8490;
    font-size: 14px;
}

/* Loading & Empty States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-top-color: #00D4FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    margin-top: 20px;
    color: #8BA3B0;
    font-size: 16px;
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-state__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.empty-state__text {
    color: #8BA3B0;
    font-size: 16px;
}

/* Blog-specific Footer Styles */
.blog-page .footer {
    position: relative;
    z-index: 1;
    padding: 60px 40px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.blog-page .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-page .footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.blog-page .footer__brand {
    display: flex;
    flex-direction: column;
}

.blog-page .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-page .footer__logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #E8F4F8 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-page .footer__description {
    color: #6B8490;
    font-size: 14px;
    line-height: 1.7;
}

.blog-page .footer__column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #E8F4F8;
}

.blog-page .footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-page .footer__link {
    color: #6B8490;
    font-size: 14px;
    transition: color 0.2s ease;
}

.blog-page .footer__link:hover {
    color: #00D4FF;
}

.blog-page .footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-page .footer__copyright {
    font-size: 14px;
    color: #6B8490;
}

.blog-page .footer__disclaimer {
    font-size: 12px;
    color: #4A5C68;
}

/* Nav Mobile Toggle for Blog */
.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #E8F4F8;
    font-size: 24px;
    cursor: pointer;
}

/* ==================== LEGAL PAGES STYLES ==================== */
/* Shared styles for Privacy, Terms, Disclaimer pages */
.legal-page {
    min-height: 100vh;
}

.legal-page .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00D4FF 0%, #E8F4F8 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page .last-updated {
    color: #6B8490;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 24px;
    font-weight: 700;
    color: #00D4FF;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: #E8F4F8;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #A8C5D1;
    margin-bottom: 16px;
}

.legal-page ul {
    color: #A8C5D1;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #00D4FF;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page .content-box {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.legal-page .warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.legal-page .warning-box p {
    color: #FF6B6B;
    margin: 0;
}

.legal-page .warning-box strong {
    color: #FF6B6B;
}

.legal-page .highlight-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.legal-page .highlight-box p {
    color: #FFC107;
    margin: 0;
}

/* Risk Grid for Disclaimer */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.risk-card {
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.risk-card h4 {
    color: #FF6B6B;
    font-size: 16px;
    margin-bottom: 8px;
}

.risk-card p {
    color: #A8C5D1;
    font-size: 14px;
    margin: 0;
}

/* Legal Footer */
.legal-page .footer {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
}

.legal-page .footer__copyright {
    font-size: 14px;
    color: #6B8490;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post__image {
        min-height: 250px;
    }
    
    .featured-post__image::after {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, rgba(10, 14, 23, 0.8), transparent);
    }
    
    .featured-post__content {
        padding: 24px;
    }
    
    .blog-page .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    /* Homepage */
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .data-sources {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Features */
    .feature-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .feature-detail:nth-child(even) {
        direction: ltr;
    }
    
    /* How It Works */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .video-section {
        padding: 0 20px 60px;
    }
    
    /* Discord Tools */
    .two-tier-grid {
        grid-template-columns: 1fr;
    }
    
    .command-categories {
        grid-template-columns: 1fr;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .stat-item__number {
        font-size: 48px;
    }
    
    /* Page headers */
    .page-header h1 {
        font-size: 36px;
    }
    
    /* Confluence diagram - tablet */
    .confluence-diagram {
        gap: 16px;
    }
    
    .confluence-item {
        padding: 20px 24px;
    }
    
    .confluence-result {
        padding: 24px 32px;
    }
    
    .page-header {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    /* Pricing */
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog */
    .nav__mobile-toggle {
        display: block;
    }
    
    .blog-header {
        padding: 120px 20px 40px;
    }
    
    .search-section,
    .featured-section,
    .posts-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page .footer__top {
        grid-template-columns: 1fr;
    }
    
    .blog-page .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    /* Legal pages */
    .legal-page .container {
        padding: 120px 20px 60px;
    }
    
    .legal-page h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .hub-section {
        padding: 60px 20px;
    }
    
    .data-sources {
        grid-template-columns: 1fr;
    }
    
    .data-source__desc {
        display: none;
    }
    
    .data-source {
        text-align: center;
    }
    
    .data-source__icon-wrapper {
        margin: 0 auto 12px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    /* Confluence diagram - mobile stacking */
    .confluence-section {
        padding: 60px 20px;
    }
    
    .confluence-diagram {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .confluence-item {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .confluence-item__icon {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .confluence-item__name {
        font-size: 14px;
    }
    
    .confluence-arrow {
        display: none;
    }
    
    .confluence-result {
        margin-top: 16px;
        padding: 24px 20px;
    }
    
    .confluence-result__icon {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .confluence-result__name {
        font-size: 16px;
    }
}
