        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-primary: #0a0c10;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-glow: rgba(0, 255, 200, 0.15);
            --text-primary: #f0f4f8;
            --text-secondary: #94a3b8;
            --accent-cyan: #00e5c0;
            --accent-purple: #7c5cfc;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: #141a24;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
            border-radius: 10px;
        }
        .glow-text {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        .section-sub {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 3rem auto;
        }
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: #0a0c10;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 0 30px rgba(0, 229, 192, 0.25);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(0, 229, 192, 0.4);
        }
        .btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            border: 1.5px solid var(--text-secondary);
            transition: 0.3s;
            cursor: pointer;
        }
        .btn-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 229, 192, 0.08);
        }

        /* ===== HEADER ===== */
        header {
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            position: sticky;
            top: 0;
            background: rgba(10, 12, 16, 0.88);
            backdrop-filter: blur(12px);
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .logo-wrapper img {
            height: 38px;
            width: auto;
            display: block;
        }
        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.03em;
        }
        .logo-text span {
            color: var(--accent-cyan);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 500;
            color: var(--text-secondary);
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            color: var(--text-primary);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
        }
        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 10px;
            transition: 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 70px 0 80px 0;
            text-align: center;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(0, 229, 192, 0.10);
            color: var(--accent-cyan);
            padding: 6px 22px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 22px;
            border: 1px solid rgba(0, 229, 192, 0.12);
        }
        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }
        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 750px;
            margin: 0 auto 36px auto;
        }
        .hero-cta {
            display: flex;
            gap: 18px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== EXCHANGE STRIP ===== */
        .exchange-strip {
            padding: 22px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            margin-bottom: 30px;
        }
        .exchange-strip .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .exchange-item {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-secondary);
            opacity: 0.7;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .exchange-item i {
            color: var(--accent-cyan);
            font-size: 0.6rem;
        }
        .exchange-item:hover {
            opacity: 1;
        }

        /* ===== FEATURES ===== */
        .features {
            padding: 70px 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 28px 26px;
            transition: 0.4s ease;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        .feature-card .icon {
            font-size: 2.2rem;
            color: var(--accent-cyan);
            margin-bottom: 16px;
            display: block;
        }
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .feature-card .highlight {
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* ===== SCORE DEMO ===== */
        .score-demo {
            background: linear-gradient(135deg, rgba(0, 229, 192, 0.05), rgba(124, 92, 252, 0.05));
            border-radius: 32px;
            padding: 50px 40px;
            margin: 40px 0 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .score-demo-text {
            flex: 1;
        }
        .score-demo-text h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .score-demo-text p {
            color: var(--text-secondary);
            max-width: 520px;
            font-size: 1rem;
        }
        .score-demo-text p strong {
            color: var(--text-primary);
        }
        .score-circle {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: conic-gradient(var(--accent-cyan) 0deg 324deg, #2a3040 324deg 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.3rem;
            font-weight: 800;
            color: #0a0c10;
            flex-shrink: 0;
            position: relative;
        }
        .score-circle::after {
            content: '/10';
            font-size: 0.8rem;
            font-weight: 600;
            position: absolute;
            bottom: 10px;
            right: 10px;
            color: var(--text-secondary);
            background: #0a0c10;
            padding: 0 6px;
            border-radius: 10px;
        }

        /* ===== PRICING ===== */
        .pricing {
            padding: 70px 0;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            align-items: stretch;
        }
        .pricing-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            padding: 36px 28px;
            text-align: center;
            transition: 0.4s;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            border-color: var(--accent-cyan);
        }
        .pricing-card.popular {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 40px rgba(0, 229, 192, 0.06);
            position: relative;
        }
        .pricing-card.popular .badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-cyan);
            color: #0a0c10;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 18px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .pricing-card .name {
            font-size: 1.3rem;
            font-weight: 700;
        }
        .pricing-card .price {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 16px 0 8px;
        }
        .pricing-card .price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-secondary);
        }
        .pricing-card .desc {
            color: var(--text-secondary);
            margin-bottom: 24px;
            flex-grow: 1;
            font-size: 0.95rem;
        }
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin: 0 0 28px 0;
        }
        .pricing-card ul li {
            padding: 7px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        .pricing-card ul li i {
            color: var(--accent-cyan);
            width: 18px;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 50px 0 80px 0;
        }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 18px 0;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--text-primary);
        }
        .faq-question i {
            transition: 0.3s;
            color: var(--accent-cyan);
        }
        .faq-answer {
            color: var(--text-secondary);
            padding-top: 10px;
            display: none;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .faq-answer.active {
            display: block;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 40px 0 20px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-brand .logo-wrapper {
            font-size: 1.5rem;
        }
        .footer-brand .logo-wrapper img {
            height: 32px;
        }
        .footer-brand p {
            max-width: 340px;
            margin-top: 10px;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .footer-links h4 {
            color: var(--text-primary);
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer-links a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 4px 0;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-socials {
            display: flex;
            gap: 16px;
            margin-top: 8px;
        }
        .footer-socials a {
            font-size: 1.4rem;
            color: var(--text-secondary);
            transition: 0.3s;
        }
        .footer-socials a:hover {
            color: var(--accent-cyan);
        }
        .footer-links-pair {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-links-pair a {
            display: inline;
            padding: 0;
            color: var(--text-secondary);
            transition: 0.3s;
        }
        .footer-links-pair a:hover {
            color: var(--accent-cyan);
        }
        .footer-links-sep {
            color: var(--text-secondary);
            margin: 0 6px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            opacity: 0.7;
        }
        .footer-bottom .disclaimer {
            max-width: 600px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(10, 12, 16, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 28px 0;
                gap: 1.2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                display: none;
            }
            .nav-menu.open {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .score-demo {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            .score-demo-text p {
                max-width: 100%;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-brand p {
                max-width: 100%;
            }
            .footer-socials {
                justify-content: center;
            }
            .footer-links-pair {
                justify-content: center;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .logo-wrapper img {
                height: 30px;
            }
            .logo-text {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 40px 0 50px 0;
            }
            .btn-primary {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
            .feature-card {
                padding: 20px;
            }
            .exchange-strip .container {
                gap: 20px;
            }
        }

/* =====================================================================
   ADDITIONS — inner pages, steps, alert examples, personas, forms,
   affiliate dashboard, cookie consent. Same color/spacing system as
   the rest of the site — no new palette introduced.
   ===================================================================== */

/* Active nav link */
.nav-menu a.active { color: var(--accent-cyan); }

/* Generic inner-page hero (About, Pricing, FAQ, Contact, Legal, etc.) */
.page-hero {
    padding: 70px 0 50px;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}
.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}
.breadcrumb {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-cyan); }

/* Generic content section wrapper for legal / long-form text pages */
.content-section { padding: 20px 0 90px; }
.legal-content { max-width: 820px; margin: 0 auto; color: var(--text-secondary); }
.legal-content h2 { color: var(--text-primary); font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { margin-bottom: 0.9rem; line-height: 1.75; }
.legal-content ul { padding-left: 1.4rem; }
.legal-content strong { color: var(--text-primary); }
.legal-content .updated { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 2.2rem; display: block; }

/* ===== HOW TO RECEIVE ALERTS (3 steps) ===== */
.steps {
    padding: 90px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.why-vip-payment-grid {
    grid-template-columns: repeat(2, 1fr);
}
.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
}
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #0a0c10;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== ALERT EXAMPLES ===== */
.alert-examples {
    padding: 30px 0 90px;
}
.alert-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 2.5rem;
}

/* ===== PERSONAS ("Crypto Alerts for Anyone") ===== */
.personas { padding: 30px 0 90px; }
.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.persona-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
}
.persona-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,229,192,0.12), rgba(124,92,252,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: var(--accent-cyan);
}
.persona-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.persona-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ===== FORMS (contact / affiliate register & login) ===== */
.form-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 2.4rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent-cyan); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%;
    border: none;
    font-family: var(--font-family);
}
.form-note { text-align: center; font-size: 0.85rem; color: var(--text-secondary); margin-top: 1.2rem; }
.form-note a { color: var(--accent-cyan); font-weight: 600; }
.alert-msg {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}
.alert-msg.success { background: rgba(0, 229, 192, 0.1); border: 1px solid rgba(0, 229, 192, 0.3); color: var(--accent-cyan); }
.alert-msg.error { background: rgba(255, 90, 90, 0.1); border: 1px solid rgba(255, 90, 90, 0.3); color: #ff8484; }

/* ===== AFFILIATE DASHBOARD ===== */
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 40px 0 20px;
}
.dash-header h1 { font-size: 1.8rem; }
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin: 1.5rem 0 3rem;
}
.dash-stat {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.6rem;
}
.dash-stat .value { font-size: 1.9rem; font-weight: 800; }
.dash-stat .label { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.3rem; }
.ref-link-box {
    background: var(--bg-card);
    border: 1px dashed var(--border-glow);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.ref-link-box code { color: var(--accent-cyan); font-size: 0.92rem; word-break: break-all; }
.dash-table-wrap { overflow-x: auto; margin-bottom: 3rem; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.dash-table th {
    text-align: left;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.dash-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}
.status-pill.paid { background: rgba(0, 229, 192, 0.12); color: var(--accent-cyan); }
.status-pill.pending { background: rgba(255, 196, 0, 0.12); color: #ffc400; }

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(16, 20, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.3rem 1.6rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    z-index: 9998;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-consent.visible { transform: translateY(0); opacity: 1; }
.cookie-consent-text { font-size: 0.88rem; color: var(--text-secondary); flex: 1; min-width: 240px; }
.cookie-consent-text a { color: var(--accent-cyan); font-weight: 600; }
.cookie-consent-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }

/* Responsive tweaks for the new sections */
@media (max-width: 768px) {
    .steps-grid, .alert-examples-grid, .personas-grid, .why-vip-payment-grid { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .page-hero h1 { font-size: 2rem; }
    .cookie-consent { left: 12px; right: 12px; bottom: 12px; padding: 1.1rem; }
    .form-wrap { padding: 1.6rem; }
}

/* =====================================================================
   BLOG + SEARCH
   ===================================================================== */

/* Large search form on /search page */
.search-form-large {
    display: flex;
    max-width: 520px;
    margin: 1.6rem auto 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px 6px 6px 20px;
}
.search-form-large input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
}
.search-form-large button {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    color: #0a0c10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Blog category filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}
.blog-filters a {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-filters a.active,
.blog-filters a:hover {
    color: #0a0c10;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-color: transparent;
}

/* Blog grid + cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}
.blog-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.03);
}
.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-cyan);
    opacity: 0.4;
}
.blog-card-body { padding: 1.4rem; }
.blog-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-cyan);
    margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 0.8rem; line-height: 1.6; }
.blog-card-date { color: var(--text-secondary); font-size: 0.78rem; }

/* Blog pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.blog-pagination a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
}
.blog-pagination a.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #0a0c10;
}

/* Single article body (rendered from DB HTML content) */
.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article h2 { color: var(--text-primary); font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.blog-article h3 { color: var(--text-primary); font-size: 1.2rem; margin: 1.6rem 0 0.6rem; }
.blog-article p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--text-secondary); }
.blog-article a { color: var(--accent-cyan); }
.blog-article img { max-width: 100%; border-radius: 12px; margin: 1.2rem 0; }
.blog-article ul, .blog-article ol { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--text-secondary); }
.blog-article li { margin-bottom: 0.5rem; }
.blog-article strong { color: var(--text-primary); }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   HEADER SEARCH — icon + expandable bar, visible on desktop AND mobile
   ===================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-toggle-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}
.search-toggle-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #0a0c10;
    border-color: transparent;
}

/* Search results: static page results */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 780px;
}
.search-result-item {
    display: block;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    transition: border-color 0.2s ease;
}
.search-result-item:hover { border-color: var(--border-glow); }
.search-result-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-purple);
    margin-bottom: 0.4rem;
}
.search-result-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.search-result-item p { color: var(--text-secondary); font-size: 0.88rem; margin: 0; }

@media (max-width: 768px) {
    .header-search-form { padding: 14px 16px; }
}

/* =====================================================================
   DETAILED ALERT CARDS (real bot output format, home page)
   ===================================================================== */
.alert-card-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.alert-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
.alert-detailed-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}
.alert-detailed-exchange {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent-cyan);
    background: rgba(0, 229, 192, 0.1);
    border: 1px solid rgba(0, 229, 192, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.alert-body {
    margin: 0;
    padding: 1.1rem 1.2rem 1.3rem;
    font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
    font-size: 0.78rem;
    line-height: 1.65;
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 480px) {
    .alert-body { font-size: 0.72rem; }
}

/* =====================================================================
   TABS — reused by the affiliate dashboard and the admin panel
   ===================================================================== */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
    overflow-x: auto;
}
.tabs-nav button {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: 0.2s;
}
.tabs-nav button:hover { color: var(--text-primary); }
.tabs-nav button.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}
.tabs-nav button .tab-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.72rem;
    padding: 1px 8px;
    border-radius: 20px;
    margin-left: 6px;
}
.tabs-nav button.active .tab-count {
    background: rgba(0, 229, 192, 0.15);
    color: var(--accent-cyan);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Pagination (shared style for dashboard tables) */
.table-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.6rem 0 2.5rem;
    flex-wrap: wrap;
}
.table-pagination a, .table-pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}
.table-pagination a:hover { background: rgba(255, 255, 255, 0.1); }
.table-pagination a.active, .table-pagination span.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #0a0c10;
}

/* Admin panel specifics */
.admin-login-wrap { max-width: 420px; margin: 0 auto; }
.admin-table-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-tiny {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}
.btn-tiny-paid {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #0a0c10;
}
.btn-tiny-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.admin-summary-row { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.5rem; }
