:root {
    --bg-0: #0b0f1a;
    --bg-1: #0f172a;
    --text-0: #e5e7eb;
    --text-1: #94a3b8;
    --brand: #22d3ee;
    /* cyan */
    --brand-2: #7c3aed;
    /* purple */
    --border: #1f2937;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: url('./assets/hero_banner.png') center / cover no-repeat fixed;
    color: var(--text-0);
    font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, 'Liberation Sans', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

/* All pages except home use hero banner with blur */
.faq-page,
.guides-page,
.privacy-page,
.terms-page,
.contact-page {
    background: url('./assets/hero_banner.png') center / cover no-repeat fixed;
}

.faq-page::before,
.guides-page::before,
.privacy-page::before,
.terms-page::before,
.contact-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('./assets/hero_banner.png') center / cover no-repeat fixed,
        rgba(0, 0, 0, 0.4);
    filter: blur(2px);
    z-index: -1;
}


h1,
h2,
h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, 'Liberation Sans', sans-serif;
    letter-spacing: 0.2px;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: saturate(160%) blur(8px);
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.9), rgba(11, 15, 26, 0.75));
    border-bottom: 1px solid var(--border);
    z-index: 50;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-accent {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: conic-gradient(from 180deg at 50% 50%, var(--brand), var(--brand-2), var(--brand));
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.45), 0 0 28px rgba(124, 58, 237, 0.35) inset;
}

.brand-text {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.2px;
    color: var(--text-0);
}

.nav-links {
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-1);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease, text-shadow .2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-0);
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
}

.nav-links a.active {
    color: var(--brand);
}

.nav-toggle {
    margin-left: auto;
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 8px;
    cursor: pointer;
}

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-0);
    margin: 4px 0;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .navbar {
        padding: 14px 16px;
    }
}

/* Mobile menu expanded state */
.nav-open .nav-links {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    flex-direction: column;
    gap: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
}

.nav-open .nav-links li {
    border-top: 1px solid var(--border);
}

.nav-open .nav-links a {
    padding: 14px 20px;
    display: block;
}

.content {
    min-height: 100vh;
    padding: 0;
}

/* Homepage */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 860px;
}

.hero {
    padding: 0;
    position: relative;
    background: url('./assets/hero_banner.png') center / cover no-repeat;
    min-height: calc(100vh - 64px);
    width: 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(34, 211, 238, 0.35), 0 0 28px rgba(124, 58, 237, 0.25);
}

.lead {
    color: #ffffff;
    font-size: 20px;
}

.note {
    margin: 14px 0 26px;
    color: #ffffff;
}

.note a {
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    text-underline-offset: 3px;
}

.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-outline {
    background: #ffffff;
    color: #0b0f1a;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-outline:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.section {
    padding: 44px 0;
}

.section.emphasis {
    background: rgba(124, 58, 237, 0.06);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Enhanced section styling */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--text-1);
    font-size: 18px;
    margin: 8px 0 0;
}

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

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.15);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--text-0);
}

.feature-item p {
    margin: 0;
    color: var(--text-1);
    font-size: 14px;
    line-height: 1.5;
}

.security-highlight {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
}

.security-content h3 {
    margin: 0 0 16px;
    color: var(--text-0);
    font-size: 24px;
}

.security-content p {
    margin: 0 0 20px;
    color: var(--text-1);
    font-size: 16px;
    line-height: 1.6;
}

.security-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-0);
}

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

    .security-badges {
        justify-content: center;
    }
}

/* Page hero styling */
.page-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 64px;
    margin: 0;
    color: var(--text-0);
}

/* About page content styling */
.about-content {
    text-align: center;
}

.about-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

    .about-content p {
        font-size: 20px;
        margin-bottom: 24px;
    }
}

/* FAQ page styling */
.faq-content {
    text-align: left;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 16px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 12px;
}

.safety-section {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 16px;
    padding: 24px;
    margin: 40px 0;
}

.safety-section h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 16px;
}

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

.safety-list li {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 8px;
    padding-left: 20px;
    position: relative;
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 900px) {
    .faq-item h3 {
        font-size: 20px;
    }

    .faq-item p {
        font-size: 16px;
    }

    .safety-section h3 {
        font-size: 20px;
    }

    .safety-list li {
        font-size: 16px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

/* Guides page styling */
.guides-content {
    text-align: left;
}

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

.guide-header h2 {
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 24px;
}

.guide-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 16px;
}

.guide-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 20px;
}

.guide-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 8px;
}

.guide-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 16px;
}

.guide-list,
.guide-steps {
    margin: 0 0 20px;
    padding-left: 24px;
}

.guide-list li,
.guide-steps li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 8px;
}

.highlight-link {
    font-family: 'Courier New', Courier, monospace;
    color: #22d3ee;
    font-size: 16px;
    background: rgba(34, 211, 238, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 8px 0;
}

.warning-text {
    color: #ff6b6b;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #ff6b6b;
}

.tip-text {
    color: #22d3ee;
    font-style: italic;
    background: rgba(34, 211, 238, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
}

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

.feature-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.feature-card h4 {
    color: #22d3ee;
    margin: 0 0 12px;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
}

.comparison-table {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header {
    background: rgba(34, 211, 238, 0.1);
}

.table-cell {
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.table-cell:last-child {
    border-right: none;
}

.table-row.header .table-cell {
    font-weight: 600;
    color: #22d3ee;
}

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

.security-list li {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 8px;
    padding-left: 20px;
    position: relative;
}

.security-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.mini-faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-mini-item {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 16px;
}

.faq-mini-item strong {
    color: #22d3ee;
    display: block;
    margin-bottom: 8px;
}

.faq-mini-item p {
    margin: 0;
    font-size: 14px;
}

.guide-conclusion {
    text-align: center;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
}

.guide-conclusion h3 {
    color: #22d3ee;
}

.cta-text {
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 900px) {
    .guide-header h2 {
        font-size: 26px;
    }

    .guide-section h3 {
        font-size: 20px;
    }

    .features-grid,
    .mini-faq {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        border-right: none;
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }

    .table-cell:last-child {
        border-bottom: none;
    }
}

/* Privacy Policy page styling */
.last-updated {
    font-size: 16px;
    color: var(--text-1);
    margin: 8px 0 0;
    font-style: italic;
}

.privacy-content {
    text-align: left;
}

.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-section p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h3 {
    font-size: 22px;
    color: #22d3ee;
    margin: 0 0 16px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 12px;
}

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

.privacy-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.contact-section {
    margin-top: 40px;
    text-align: center;
}

.contact-section h3 {
    color: #7c3aed;
}

.email-link {
    color: #22d3ee;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    background: rgba(34, 211, 238, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.email-link:hover {
    background: rgba(34, 211, 238, 0.2);
}

@media (max-width: 900px) {
    .privacy-section h3 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }

    .intro-section p {
        font-size: 16px;
    }
}

/* Terms & Conditions page styling */
.terms-content {
    text-align: left;
}

.terms-section {
    margin-bottom: 32px;
}

.terms-section h3 {
    font-size: 22px;
    color: #22d3ee;
    margin: 0 0 16px;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 12px;
}

@media (max-width: 900px) {
    .terms-section h3 {
        font-size: 20px;
    }

    .terms-section p {
        font-size: 15px;
    }
}

/* Contact page styling */
.contact-content {
    text-align: left;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #22d3ee;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, 'Liberation Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #22d3ee, #7c3aed);
    color: #0b0f1a;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}

@media (max-width: 900px) {
    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

/* Blog page styling */
.blog-subtitle {
    font-size: 18px;
    color: var(--text-1);
    margin: 8px 0 0;
    text-align: center;
}

.blog-content {
    text-align: left;
}

.add-post-section {
    margin-bottom: 48px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.add-post-section h2 {
    font-size: 24px;
    color: #1a1a2e;
    margin: 0 0 24px;
    text-align: center;
}

.blog-form {
    max-width: 800px;
    margin: 0 auto;
}

.blog-form .form-group {
    margin-bottom: 24px;
}

.blog-form .form-group label {
    display: block;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 500;
}

.blog-form .form-group input,
.blog-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a2e;
    font-size: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, 'Liberation Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-form .form-group input:focus,
.blog-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.blog-form .form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.blog-form .submit-btn {
    background: linear-gradient(135deg, #22d3ee, #7c3aed);
    color: #0b0f1a;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.blog-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}

.blog-posts h2 {
    font-size: 24px;
    color: #22d3ee;
    margin: 0 0 24px;
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: var(--text-1);
    font-size: 16px;
}

.blog-post {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.blog-post h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 12px;
}

.blog-post .post-date {
    font-size: 14px;
    color: var(--text-1);
    margin-bottom: 16px;
}

.blog-post .post-content {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    white-space: pre-wrap;
}

@media (max-width: 900px) {
    .add-post-section {
        padding: 24px;
    }

    .add-post-section h2 {
        font-size: 20px;
    }

    .blog-form .form-group label {
        font-size: 15px;
    }

    .blog-form .form-group input,
    .blog-form .form-group textarea {
        font-size: 15px;
        padding: 10px 14px;
    }

    .blog-form .form-group textarea {
        min-height: 150px;
    }

    .blog-form .submit-btn {
        font-size: 15px;
        padding: 12px 24px;
    }

    .blog-posts h2 {
        font-size: 20px;
    }
}

/* Footer styling */
.site-footer {
    background: rgba(11, 15, 26, 0.95);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 24px 0;
    margin-top: 60px;
    backdrop-filter: blur(8px);
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: var(--text-1);
    font-size: 14px;
}

/* Setup Guide page styling */
.post-date {
    font-size: 16px;
    color: var(--text-1);
    margin: 8px 0 0;
    font-style: italic;
    text-align: center;
}

.setup-guide-content {
    text-align: left;
}

.blog-tile {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 12px 32px rgba(2, 8, 23, 0.6);
    backdrop-filter: blur(8px);
}

.tile-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.tile-header h2 {
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.post-meta {
    margin-top: 12px;
}

.tile-content {
    color: #ffffff;
}

.intro {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: var(--text-1);
}

.setup-step {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
}

.setup-step h3 {
    font-size: 20px;
    color: #22d3ee;
    margin: 0 0 16px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
    padding-bottom: 8px;
}

.setup-step ul {
    margin: 0;
    padding-left: 20px;
}

.setup-step li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 8px;
}

.highlight-box {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    text-align: center;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 900px) {
    .blog-tile {
        padding: 24px;
        margin: 0 16px;
    }

    .tile-header h2 {
        font-size: 24px;
    }

    .setup-step {
        padding: 20px;
    }

    .setup-step h3 {
        font-size: 18px;
    }

    .setup-step li {
        font-size: 15px;
    }

    .intro {
        font-size: 16px;
    }
}

/* Troubleshoot page styling */
.troubleshoot-content {
    text-align: left;
}

.solutions-section h3 {
    font-size: 24px;
    color: #22d3ee;
    margin: 0 0 24px;
    text-align: center;
    border-bottom: 2px solid rgba(34, 211, 238, 0.3);
    padding-bottom: 12px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.solution-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22d3ee, #7c3aed);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.solution-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .solutions-section h3 {
        font-size: 20px;
    }

    .solution-item {
        padding: 16px;
        gap: 12px;
    }

    .solution-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .solution-text {
        font-size: 15px;
    }
}

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

.card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(2, 8, 23, 0.55);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(2, 8, 23, 0.7);
}

.card h3 {
    margin-top: 0;
}

.list {
    margin: 0 0 10px;
    padding-left: 18px;
    color: var(--text-1);
}

.best-for {
    margin: 0;
}

.checklist {
    margin: 8px 0 0;
    padding-left: 18px;
}

@media (max-width: 900px) {
    .hero {
        min-height: calc(100vh - 56px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }

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