    :root {
        --navy: #0B1F4B;
        --blue: #1A56DB;
        --teal: #06B6D4;
        --green: #10B981;
        --orange: #F59E0B;
        --light: #F0F6FF;
        --white: #FFFFFF;
        --gray: #6B7280;
        --dark: #111827;
        --border: #E2EAF6;
        --purple: #8B5CF6;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        color: var(--dark);
        background: #0B1F4B;
        min-height: 100vh;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Sora', sans-serif;
    }

    /* MAIN */
    .site-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 5% 60px;
    }

    /* HEADER SECTION */
    .site-header {
        background: linear-gradient(135deg, rgba(11, 31, 75, 0.8), rgba(26, 58, 122, 0.8));
        border: 1px solid rgba(6, 182, 212, 0.3);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 48px;
        position: relative;
        overflow: hidden;
    }

    .sh-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sh-brand {
        font-family: 'Sora', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: white;
    }

    .sh-badge {
        background: rgba(6, 182, 212, 0.15);
        color: #06b6d4;
        /* Fallback for var(--teal) */
        color: var(--teal, #06b6d4);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
    }

    .sh-title {
        font-family: 'Sora', sans-serif;
        font-size: 42px;
        font-weight: 800;
        color: white;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .sh-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 700px;
        margin-bottom: 32px;
    }

    .sh-stats {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
    }

    .sh-stat {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .sh-stat-num {
        font-family: 'Sora', sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: #06b6d4;
        /* Fallback for var(--teal) */
        color: var(--teal, #06b6d4);
    }

    .sh-stat-lbl {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* HEADER */
    .site-header {
        background: linear-gradient(135deg, #0B1F4B, #1A3A7A);
        padding: 48px 5% 40px;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .site-header::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(6, 182, 212, .15), transparent 70%);
        border-radius: 50%;
    }

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

  

    .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(6, 182, 212, .15);
        border: 1px solid rgba(6, 182, 212, .3);
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 14px;
    }

    .header-badge span {
        font-size: 12px;
        color: var(--teal);
        font-weight: 600;
    }

    .site-header h1 {
        font-size: 38px;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
    }

    .site-header h1 span {
        color: var(--teal);
    }

    .site-header p {
        font-size: 16px;
        color: rgba(255, 255, 255, .65);
        max-width: 560px;
        line-height: 1.7;
    }

    .header-stats {
        display: flex;
        gap: 32px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .hs {
        text-align: left;
    }

    .hs .n {
        font-family: 'Sora', sans-serif;
        font-size: 26px;
        font-weight: 800;
        color: white;
    }

    .hs .l {
        font-size: 12px;
        color: rgba(255, 255, 255, .5);
    }

    /* MAIN */
    .site-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 5% 60px;
    }

    /* SECTION HEADERS */


    /* PAGE CARDS GRID */
    .pages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 8px;
    }

    .page-card {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 16px;
        padding: 20px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition: all .25s;
        position: relative;
        overflow: hidden;
    }

    .page-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, var(--blue), var(--teal));
        opacity: 0;
        transition: opacity .25s;
    }

    .page-card:hover {
        background: rgba(255, 255, 255, .12);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    }

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

    .pc-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pc-icon {
        font-size: 26px;
    }

    .pc-status {
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 50px;
    }

    .pc-status.live {
        background: rgba(16, 185, 129, .2);
        color: var(--green);
    }

    .pc-status.seo {
        background: rgba(6, 182, 212, .2);
        color: var(--teal);
    }

    .pc-status.new {
        background: rgba(139, 92, 246, .2);
        color: var(--purple);
    }

    .pc-name {
        font-family: 'Sora', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: white;
    }

    .pc-url {
        font-size: 12px;
        color: rgba(255, 255, 255, .4);
        font-family: monospace;
    }

    .pc-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, .55);
        line-height: 1.55;
    }

    .pc-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }

    .pc-tag {
        font-size: 10px;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 50px;
        background: rgba(255, 255, 255, .07);
        color: rgba(255, 255, 255, .5);
    }

    .pc-arrow {
        font-size: 14px;
        color: var(--teal);
        margin-top: auto;
        font-weight: 700;
    }

    /* DIVIDER */
    .divider {
        height: 1px;
        background: rgba(255, 255, 255, .07);
        margin: 36px 0;
    }

    /* SEO CHECKLIST */
    .seo-section {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 20px;
        padding: 28px;
        margin-top: 40px;
    }

    .seo-section h3 {
        font-family: 'Sora', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .seo-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .seo-item {
        background: rgba(255, 255, 255, .06);
        border-radius: 12px;
        padding: 14px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .seo-check {
        font-size: 16px;
        flex-shrink: 0;
    }

    .seo-item h4 {
        font-size: 13px;
        font-weight: 700;
        color: white;
        margin-bottom: 3px;
    }

    .seo-item p {
        font-size: 12px;
        color: rgba(255, 255, 255, .5);
        line-height: 1.5;
    }

    /* FILE DOWNLOAD */
    .download-section {
        margin-top: 36px;
        background: linear-gradient(135deg, rgba(6, 182, 212, .15), rgba(26, 86, 219, .15));
        border: 1px solid rgba(6, 182, 212, .25);
        border-radius: 20px;
        padding: 28px;
    }

    .download-section h3 {
        font-family: 'Sora', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: white;
        margin-bottom: 18px;
    }

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

    .dl-item {
        background: rgba(255, 255, 255, .07);
        border-radius: 12px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .dl-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dl-icon {
        font-size: 18px;
    }

    .dl-name {
        font-size: 13px;
        font-weight: 600;
        color: white;
    }

    .dl-size {
        font-size: 11px;
        color: rgba(255, 255, 255, .4);
    }

    .dl-btn {
        font-size: 11px;
        font-weight: 700;
        color: var(--teal);
        text-decoration: none;
        background: rgba(6, 182, 212, .15);
        padding: 4px 12px;
        border-radius: 50px;
        border: 1px solid rgba(6, 182, 212, .3);
    }

    .dl-btn:hover {
        background: rgba(6, 182, 212, .3);
    }


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

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

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

        .site-header h1 {
            font-size: 28px;
        }
    }


    /* FOOTER */
    .site-footer {
        background: rgba(0, 0, 0, .3);
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding: 24px 5%;
        text-align: center;
    }

    .site-footer p {
        font-size: 13px;
        color: rgba(255, 255, 255, .35);
    }

    .site-footer span {
        color: var(--teal);
    }
/* ========================================================================= */
/* RESPONSIVE FIXES FOR SEO & DOWNLOAD SECTIONS */
/* ========================================================================= */

/* TABLETS (between 769px and 1024px) */
@media (max-width: 1024px) {
  /* Change SEO grid from 4 columns to 2 columns */
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Download grid stays 2 columns, but we ensure gap is manageable */
  .dl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE PHONES (up to 768px) */
@media (max-width: 768px) {
  /* Reduce outer padding on small screens to save space */
  .seo-section, 
  .download-section {
    padding: 20px 16px;
  }

  /* Change both grids to a single column */
  .seo-grid,
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Stack the download item contents so the button doesn't get squeezed */
  .dl-item {
    flex-direction: column;
    align-items: flex-start; /* Aligns content to the left */
    gap: 16px;
    padding: 16px;
  }

  .dl-left {
    width: 100%;
  }

  /* Make the download button full width for easier tapping on mobile */
  .dl-btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    box-sizing: border-box;
  }
}