    
        :root {
            --ld-dark: #111827;
            --ld-muted: #6b7280;
            --ld-violet: #6d28d9;
            --ld-violet-dark: #4c1d95;
            --ld-blue: #2563eb;
            --ld-soft: #f5f3ff;
            --ld-border: rgba(17, 24, 39, 0.08);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            color: #111827;
            background: #ffffff;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            text-rendering: optimizeLegibility;
        }

        a {
            transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #111827;
        }

        .navbar-brand:hover {
            color: #4c1d95;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 18%),
                linear-gradient(135deg, #6d28d9, #2563eb);
            color: #ffffff;
            box-shadow: 0 0.5rem 1.4rem rgba(76, 29, 149, 0.24);
        }

        .brand-mark::before {
            content: "";
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: inset -5px 0 0 rgba(17, 24, 39, 0.18);
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            color: #374151;
            border-radius: 999px;
            padding-left: 0.9rem;
            padding-right: 0.9rem;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #4c1d95;
            background: #f5f3ff;
        }

        .header-cta {
            border-radius: 999px;
            font-weight: 700;
        }

        .site-main {
            min-height: 60vh;
        }

        .breadcrumb {
            --bs-breadcrumb-divider-color: #9ca3af;
            --bs-breadcrumb-item-active-color: #6b7280;
            font-size: 0.92rem;
        }

        .breadcrumb a {
            color: #4c1d95;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .btn-dark {
            --bs-btn-bg: #111827;
            --bs-btn-border-color: #111827;
            --bs-btn-hover-bg: #1f2937;
            --bs-btn-hover-border-color: #1f2937;
        }

        .btn-outline-dark {
            --bs-btn-border-color: rgba(17, 24, 39, 0.22);
            --bs-btn-hover-bg: #111827;
            --bs-btn-hover-border-color: #111827;
        }

        .text-violet {
            color: #6d28d9;
        }

        .bg-violet-soft {
            background: #f5f3ff;
        }

        .shadow-soft {
            box-shadow: 0 1rem 2.5rem rgba(17, 24, 39, 0.08);
        }

        .skip-link {
            position: absolute;
            left: -999px;
            top: 0.75rem;
            z-index: 2000;
            padding: 0.65rem 1rem;
            border-radius: 999px;
            background: #111827;
            color: #ffffff;
            text-decoration: none;
        }

        .skip-link:focus {
            left: 0.75rem;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 1rem;
            }

            .navbar-nav {
                gap: 0.25rem;
            }

            .header-cta {
                margin-top: 0.75rem;
                width: 100%;
            }
        }


    .py-lg-6 {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .article-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .article-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .article-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .article-category-pill {
        display: inline-flex;
        padding: 0.5rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.95);
        color: #4c1d95;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 0.6rem 1.6rem rgba(17, 24, 39, 0.16);
    }

    .article-category-pill:hover {
        color: #312e81;
    }

    .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        font-size: 0.95rem;
    }

    .article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .article-meta span + span::before {
        content: "•";
        opacity: 0.65;
    }

    .article-summary-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .article-sidebar {
        top: 6rem;
    }

    .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #6d28d9;
        margin-bottom: 0.7rem;
    }

    .section-kicker::before {
        content: "";
        width: 28px;
        height: 2px;
        border-radius: 999px;
        background: #6d28d9;
    }

    .toc-nav {
        display: grid;
        gap: 0.55rem;
    }

    .toc-nav a {
        color: #374151;
        text-decoration: none;
        font-weight: 600;
        line-height: 1.35;
    }

    .toc-nav a:hover {
        color: #4c1d95;
        text-decoration: underline;
        text-underline-offset: 0.2rem;
    }

    .calendar-link-list {
        display: grid;
        gap: 0.85rem;
    }

    .calendar-box-link {
        display: grid;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        color: #111827;
        text-decoration: none;
        transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    }

    .calendar-box-link:hover {
        transform: translateY(-2px);
        background: #f5f3ff;
        color: #4c1d95;
    }

    .calendar-box-link span {
        color: #6b7280;
        font-size: 0.92rem;
    }

    .article-content {
        color: #1f2937;
        font-size: 1.08rem;
        line-height: 1.85;
    }

    .article-content > *:first-child {
        margin-top: 0;
    }

    .article-content p {
        margin-bottom: 1.35rem;
    }

    .article-content h2 {
        margin-top: 2.6rem;
        margin-bottom: 1rem;
        color: #111827;
        font-size: 1.8rem;
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .article-content h3 {
        margin-top: 2rem;
        margin-bottom: 0.85rem;
        color: #111827;
        font-size: 1.35rem;
        line-height: 1.3;
        font-weight: 800;
    }

    .article-content ul,
    .article-content ol {
        margin-bottom: 1.35rem;
        padding-left: 1.35rem;
    }

    .article-content li + li {
        margin-top: 0.45rem;
    }

    .article-content a {
        color: #4c1d95;
        font-weight: 700;
        text-decoration-thickness: 0.08em;
        text-underline-offset: 0.18em;
    }

    .article-content blockquote {
        margin: 2rem 0;
        padding: 1.3rem 1.5rem;
        border-left: 4px solid #6d28d9;
        border-radius: 0 1rem 1rem 0;
        background: #f5f3ff;
        color: #374151;
        font-weight: 600;
    }

    .article-content table {
        width: 100%;
        margin: 2rem 0;
        border-collapse: collapse;
        font-size: 0.98rem;
    }

    .article-content table th,
    .article-content table td {
        padding: 0.9rem;
        border: 1px solid rgba(17, 24, 39, 0.12);
        vertical-align: top;
    }

    .article-content table th {
        background: #f5f3ff;
        color: #111827;
    }

    .article-cta .card {
        background:
            radial-gradient(circle at 15% 15%, rgba(196, 181, 253, 0.5), transparent 35%),
            #ffffff;
    }

    .article-info-list {
        display: grid;
        gap: 0.85rem;
    }

    .article-info-list div {
        display: grid;
        gap: 0.2rem;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .article-info-list div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .article-info-list dt {
        color: #6b7280;
        font-size: 0.82rem;
        font-weight: 700;
    }

    .article-info-list dd {
        margin: 0;
        font-weight: 700;
    }

    .article-info-list a {
        color: #4c1d95;
        text-decoration: none;
    }

    .article-info-list a:hover {
        text-decoration: underline;
        text-underline-offset: 0.2rem;
    }

    .related-mini-list {
        display: grid;
        gap: 0.85rem;
    }

    .related-mini-link {
        display: grid;
        gap: 0.25rem;
        padding: 0.9rem;
        border-radius: 1.15rem;
        background: #f8fafc;
        color: #111827;
        text-decoration: none;
        transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    }

    .related-mini-link:hover {
        transform: translateY(-2px);
        background: #f5f3ff;
        color: #4c1d95;
    }

    .related-mini-link span {
        color: #6b7280;
        font-size: 0.85rem;
    }

    .article-label {
        display: inline-flex;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: #f5f3ff;
        color: #5b21b6;
        font-size: 0.78rem;
        font-weight: 700;
    }

    .related-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .related-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .accordion-button {
        font-weight: 700;
    }

    .accordion-button:not(.collapsed) {
        color: #4c1d95;
        background: #f5f3ff;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(109, 40, 217, 0.15);
    }

    @media (max-width: 991.98px) {
        .article-sidebar {
            position: static !important;
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .article-hero .btn-lg {
            width: 100%;
        }

        .article-content {
            font-size: 1rem;
            line-height: 1.75;
        }

        .article-content h2 {
            font-size: 1.5rem;
        }
    }

    .error-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .error-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .error-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .error-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .error-code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 132px;
        height: 132px;
        border-radius: 50%;
        background:
            radial-gradient(circle at 35% 30%, #ffffff, #f5f3ff);
        color: #4c1d95;
        font-size: 2.4rem;
        line-height: 1;
        font-weight: 900;
        box-shadow: 0 1.2rem 2.5rem rgba(76, 29, 149, 0.18);
    }

    .error-link-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .error-link-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .link-arrow {
        font-weight: 700;
        color: #4c1d95;
    }

    .link-arrow::after {
        content: " →";
    }

    .quick-links-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .quick-link {
        display: inline-flex;
        align-items: center;
        padding: 0.8rem 1.05rem;
        border-radius: 999px;
        background: #ffffff;
        color: #111827;
        text-decoration: none;
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 0.5rem 1.2rem rgba(17, 24, 39, 0.04);
        font-weight: 700;
        transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    }

    .quick-link:hover {
        transform: translateY(-2px);
        color: #4c1d95;
        box-shadow: 0 0.8rem 1.8rem rgba(17, 24, 39, 0.08);
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .error-hero .btn-lg {
            width: 100%;
        }

        .error-code {
            width: 112px;
            height: 112px;
            font-size: 2rem;
        }
    }

    .action-hero {
        background:
            radial-gradient(circle at 20% 10%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 85% 15%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .action-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .action-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .hero-summary-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .quick-answer-list {
        display: grid;
        gap: 0.85rem;
    }

    .quick-answer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.95rem 1rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
        color: #111827;
        text-decoration: none;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .quick-answer-item:hover {
        color: #111827;
        transform: translateY(-2px);
        border-color: rgba(109, 40, 217, 0.25);
        box-shadow: 0 0.75rem 1.8rem rgba(17, 24, 39, 0.08);
    }

    .quick-answer-item span {
        display: grid;
        gap: 0.15rem;
    }

    .quick-answer-item strong {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .quick-answer-item small {
        color: #6b7280;
        font-size: 0.78rem;
    }

    .quick-answer-item em {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 3.25rem;
        padding: 0.4rem 0.6rem;
        border-radius: 999px;
        color: #fff;
        font-size: 0.78rem;
        font-style: normal;
        font-weight: 800;
    }

    .quick-answer-item.is-best {
        background: #f5f3ff;
        border-color: rgba(109, 40, 217, 0.22);
    }

    .score-line {
        position: relative;
        height: 0.65rem;
        overflow: hidden;
        border-radius: 999px;
        background: #e5e7eb;
    }

    .score-line-fill {
        position: absolute;
        inset: 0 auto 0 0;
        border-radius: inherit;
        background: linear-gradient(90deg, #6d28d9, #2563eb);
    }

    .month-progress {
        height: 0.85rem;
        border-radius: 999px;
        background: #eef2f7;
        overflow: hidden;
    }

    .month-progress .progress-bar {
        border-radius: 999px;
    }

    .month-stat {
        padding: 0.85rem 0.5rem;
        border-radius: 1.25rem;
        text-align: center;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .month-stat strong {
        display: block;
        color: #111827;
        font-size: 1.4rem;
        line-height: 1;
    }

    .month-stat span {
        display: block;
        margin-top: 0.35rem;
        color: #6b7280;
        font-size: 0.78rem;
    }

    .bg-soft {
        background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
    }

    .date-card,
    .month-card,
    .article-card,
    .score-factor-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .date-card:hover,
    .month-card:hover,
    .article-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .date-card.is-best {
        background: #fbfaff;
    }

    .score-factor-card {
        height: 100%;
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 0.65rem 1.5rem rgba(17, 24, 39, 0.04);
    }

    .action-zodiac-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .action-zodiac-link {
        min-height: 72px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem;
        border-radius: 1.25rem;
        color: #111827;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .action-zodiac-link:hover {
        transform: translateY(-2px);
        color: #4c1d95;
        border-color: rgba(109, 40, 217, 0.3);
        box-shadow: 0 0.75rem 1.8rem rgba(17, 24, 39, 0.08);
    }

    .action-zodiac-link img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        flex: 0 0 34px;
    }

    .action-zodiac-link span {
        display: grid;
        gap: 0.15rem;
    }

    .action-zodiac-link strong {
        line-height: 1.15;
    }

    .action-zodiac-link small {
        color: #6b7280;
        font-size: 0.76rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .hub-content {
        color: #374151;
        font-size: 1rem;
        line-height: 1.75;
    }

    .hub-content h2,
    .hub-content h3,
    .hub-content h4 {
        color: #111827;
        font-weight: 800;
        line-height: 1.25;
    }

    .hub-content h2 {
        margin-bottom: 1rem;
        font-size: 1.85rem;
    }

    .hub-content h3 {
        margin-top: 2rem;
        margin-bottom: 0.85rem;
        font-size: 1.25rem;
    }

    .hub-content p {
        margin-bottom: 1rem;
    }

    .hub-content ul,
    .hub-content ol {
        margin-bottom: 1.25rem;
        padding-left: 1.25rem;
    }

    .hub-content li + li {
        margin-top: 0.35rem;
    }

    .hub-content table {
        width: 100%;
        margin: 1.5rem 0;
        border-collapse: collapse;
    }

    .hub-content th,
    .hub-content td {
        padding: 0.85rem 1rem;
        border: 1px solid rgba(17, 24, 39, 0.1);
    }

    .hub-content th {
        background: #f8fafc;
        color: #111827;
    }

    @media (min-width: 768px) {
        .action-zodiac-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .action-hero .btn-lg {
            width: 100%;
        }

        .quick-answer-item {
            align-items: flex-start;
        }
    }
.hero-moon-list {
    display: grid;
    gap: 0.75rem;
}

.hero-moon-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.hero-moon-item:last-child {
    border-bottom: 0;
}

.hero-moon-item span {
    color: #6b7280;
    font-size: 0.86rem;
}

.hero-moon-item strong {
    color: #111827;
    font-size: 0.92rem;
    text-align: right;
}	
.hero-blog-list {
    display: grid;
    gap: 0.85rem;
}

.hero-blog-item {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: #111827;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-blog-item:hover {
    color: #111827;
    transform: translateY(-2px);
    border-color: rgba(109, 40, 217, 0.25);
    box-shadow: 0 0.75rem 1.8rem rgba(17, 24, 39, 0.08);
}

.hero-blog-item strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.3;
}

.hero-blog-item small {
    display: block;
    margin-top: 0.35rem;
    color: #6b7280;
    font-size: 0.78rem;
}	
.hub-content-top {
    position: relative;
    padding: 0 0 0 4.25rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
}

.hub-content-top::before {
    content: "i";
    position: absolute;
    left: 1.35rem;
    top: .6rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f3ff;
    border: 2px solid #6d28d9;
    color: #6d28d9;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: Georgia, serif;
    line-height: 1;
}

.hub-content-top p {
    margin: 0;
}

@media (max-width: 575.98px) {
    .hub-content-top {
        padding: 4rem 1.25rem 1.25rem;
    }

    .hub-content-top::before {
        left: 1.25rem;
        top: 1.25rem;
    }
}

    .month-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .month-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .month-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .month-summary-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .month-score-circle {
        width: 154px;
        height: 154px;
        margin: 0 auto;
        border-radius: 50%;
        padding: 10px;
        background:
            conic-gradient(from 180deg, #6d28d9, #2563eb, #a78bfa, #6d28d9);
        box-shadow: 0 1.2rem 2.5rem rgba(76, 29, 149, 0.18);
    }

    .month-score-circle-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background:
            radial-gradient(circle at 35% 30%, #ffffff, #f5f3ff);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .month-score-circle-inner span {
        color: #111827;
        font-size: 2.1rem;
        line-height: 1;
        font-weight: 800;
    }

    .month-score-circle-inner small {
        margin-top: 0.35rem;
        color: #6b7280;
        font-size: 0.78rem;
    }

    .day-pick-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .day-pick-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .month-calendar-table {
        min-width: 980px;
    }

    .month-calendar-table th {
        white-space: nowrap;
        color: #6b7280;
        font-size: 0.84rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .month-calendar-table td {
        vertical-align: middle;
    }

    .table > :not(caption) > * > * {
        padding: 1rem;
    }

    .table-stripped > tbody > tr:nth-of-type(odd) > * {
        --bs-table-bg-type: rgba(0, 0, 0, 0.025);
    }

    .zodiac-month-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .zodiac-month-card {
        display: grid;
        grid-template-columns: 38px 1fr auto;
        align-items: center;
        gap: 0.9rem;
        padding: 1rem;
        border-radius: 1.35rem;
        color: #111827;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        text-decoration: none;
        box-shadow: 0 0.6rem 1.5rem rgba(17, 24, 39, 0.05);
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .zodiac-month-card:hover {
        transform: translateY(-2px);
        color: #4c1d95;
        border-color: rgba(109, 40, 217, 0.3);
        box-shadow: 0 0.9rem 1.9rem rgba(17, 24, 39, 0.09);
    }

    .zodiac-month-card img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

    .zodiac-month-name {
        font-weight: 800;
    }

    .zodiac-month-card small {
        color: #6b7280;
        white-space: nowrap;
    }

    @media (max-width: 767.98px) {
        .zodiac-month-card {
            grid-template-columns: 34px 1fr;
        }

        .zodiac-month-card small {
            grid-column: 2 / 3;
            white-space: normal;
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .month-hero .btn-lg {
            width: 100%;
        }

        .month-score-circle {
            width: 136px;
            height: 136px;
        }

        .month-score-circle-inner span {
            font-size: 1.8rem;
        }
    }	
.action-month-calendar-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 0.75rem 1.75rem rgba(17, 24, 39, 0.06);
}

.action-month-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    background: #f8fafc;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.action-month-calendar-weekday {
    padding: 0.85rem 0.75rem;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid rgba(17, 24, 39, 0.06);
}

.action-month-calendar-weekday:last-child {
    border-right: 0;
}

.action-month-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.action-month-calendar-cell {
    min-height: 230px;
    padding: 1rem;
    color: #111827;
    text-decoration: none;
    background: #ffffff;
    border-right: 1px solid rgba(17, 24, 39, 0.06);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.action-month-calendar-cell:nth-child(7n) {
    border-right: 0;
}

.action-month-calendar-cell:hover {
    color: #111827;
    background: #f8fafc;
    box-shadow: inset 0 0 0 2px rgba(109, 40, 217, 0.18);
}

.action-month-calendar-cell.is-empty {
    background: #f8fafc;
    pointer-events: none;
}

.action-month-calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.action-month-calendar-date {
    color: #111827;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 900;
}

.action-month-calendar-weekday-small {
    margin-top: 0.2rem;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 700;
}

.action-month-calendar-moon {
    display: grid;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
    color: #6b7280;
    font-size: 0.82rem;
    line-height: 1.35;
}

.action-month-calendar-moon strong {
    color: #374151;
    font-size: 0.9rem;
}

.action-month-calendar-result {
    padding: 0.75rem;
    border-radius: 1rem;
    background: #f8fafc;
    margin-bottom: 0.75rem;
}

.action-month-calendar-result-title {
    display: block;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.25;
}

.action-month-calendar-result-text {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.35;
}

.action-month-calendar-advice {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.4;
}

.action-month-calendar-cell.is-score-5 .action-month-calendar-result {
    background: rgba(22, 163, 74, 0.08);
}

.action-month-calendar-cell.is-score-4 .action-month-calendar-result {
    background: rgba(37, 99, 235, 0.08);
}

.action-month-calendar-cell.is-score-3 .action-month-calendar-result {
    background: rgba(234, 179, 8, 0.12);
}

.action-month-calendar-cell.is-score-2 .action-month-calendar-result,
.action-month-calendar-cell.is-score-1 .action-month-calendar-result {
    background: rgba(220, 38, 38, 0.08);
}

    .day-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .day-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .day-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .day-score-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .info-tile {
        padding: 1rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
        height: 100%;
    }

    .info-label {
        font-size: 0.78rem;
        color: #6b7280;
        margin-bottom: 0.3rem;
    }

    .info-value {
        font-weight: 700;
        color: #111827;
        line-height: 1.2;
    }

    .recommendation-box,
    .avoid-box {
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .avoid-box {
        background: #fff7ed;
    }

    .moon-data-list {
        display: grid;
        gap: 0.85rem;
    }

    .moon-data-list div {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .moon-data-list div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .moon-data-list dt {
        color: #6b7280;
        font-weight: 600;
    }

    .moon-data-list dd {
        margin: 0;
        text-align: right;
        font-weight: 700;
    }

    .zodiac-summary-card {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .zodiac-summary-card img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        flex: 0 0 42px;
    }

    .zodiac-summary-card strong {
        display: block;
        color: #111827;
        font-size: 1rem;
        line-height: 1.2;
    }

    .zodiac-summary-card small {
        display: block;
        margin-top: 0.2rem;
        color: #6b7280;
        font-size: 0.8rem;
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .day-hero .btn-lg {
            width: 100%;
        }

        .moon-data-list div {
            display: block;
        }

        .moon-data-list dd {
            text-align: left;
            margin-top: 0.2rem;
        }
    }

    .zodiac-summary-icon {
        width: 46px;
        height: 46px;
        object-fit: contain;
    }

    .zodiac-note {
        padding: 0.9rem 1rem;
        border-radius: 1.1rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
        color: #6b7280;
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .action-month-calendar-cell {
        min-height: 245px;
        padding: 1rem;
        color: #111827;
        text-decoration: none;
        background: #ffffff;
        border-right: 1px solid rgba(17, 24, 39, 0.06);
        border-bottom: 1px solid rgba(17, 24, 39, 0.06);
        transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    @media (max-width: 991.98px) {
        .action-month-calendar-wrap {
            overflow-x: auto;
        }

        .action-month-calendar-weekdays,
        .action-month-calendar-grid {
            min-width: 980px;
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .month-hero .btn-lg {
            width: 100%;
        }
    }


.other-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.other-action-link {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: #111827;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.other-action-link:hover {
    color: #111827;
    transform: translateY(-2px);
    border-color: rgba(109, 40, 217, 0.24);
    box-shadow: 0 0.75rem 1.8rem rgba(17, 24, 39, 0.08);
}

.other-action-icon {
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f5f3ff;
    color: #6d28d9;
    font-size: 1rem;
    font-weight: 800;
}

.other-action-body {
    display: grid;
    gap: 0.2rem;
}

.other-action-body strong {
    font-size: 0.98rem;
    line-height: 1.25;
}

.other-action-body small {
    color: #6b7280;
    font-size: 0.82rem;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .other-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

    .zodiac-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .zodiac-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .zodiac-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .zodiac-main-icon {
        width: 54px;
        height: 54px;
        object-fit: contain;
        flex: 0 0 54px;
    }

    .date-card,
    .month-card,
    .blog-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .date-card:hover,
    .month-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .mini-stat {
        padding: 0.85rem 0.5rem;
        border-radius: 1.25rem;
        text-align: center;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .mini-stat strong {
        display: block;
        color: #111827;
        font-size: 1.4rem;
        line-height: 1;
    }

    .mini-stat span {
        display: block;
        margin-top: 0.35rem;
        color: #6b7280;
        font-size: 0.78rem;
    }

    .other-signs-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .other-sign-link {
        min-height: 72px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem;
        border-radius: 1.25rem;
        color: #111827;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .other-sign-link:hover {
        transform: translateY(-2px);
        color: #4c1d95;
        border-color: rgba(109, 40, 217, 0.3);
        box-shadow: 0 0.75rem 1.8rem rgba(17, 24, 39, 0.08);
    }

    .other-sign-link img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        flex: 0 0 34px;
    }

    .other-sign-link span {
        display: grid;
        gap: 0.15rem;
    }

    .other-sign-link strong {
        line-height: 1.15;
    }

    .other-sign-link small {
        color: #6b7280;
        font-size: 0.76rem;
        font-weight: 600;
        line-height: 1.2;
    }

    @media (min-width: 768px) {
        .other-signs-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .zodiac-hero .btn-lg {
            width: 100%;
        }

        .quick-answer-item {
            align-items: flex-start;
        }

        .other-signs-grid {
            grid-template-columns: 1fr;
        }
    }

    .blog-category-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .blog-category-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .blog-category-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .featured-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .featured-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 1rem 2.6rem rgba(17, 24, 39, 0.16) !important;
    }

    .article-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .article-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .article-thumb {
        height: 180px;
        overflow: hidden;
        border-radius: 1rem 1rem 0 0;
        background: #f5f3ff;
    }

    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .article-thumb-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background:
            radial-gradient(circle at 30% 20%, rgba(196, 181, 253, 0.8), transparent 34%),
            linear-gradient(135deg, #ede9fe, #dbeafe);
    }

    .article-thumb-placeholder span {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: #4c1d95;
        font-size: 1.8rem;
        font-weight: 800;
        box-shadow: 0 1rem 2rem rgba(17, 24, 39, 0.12);
    }

    .blog-sidebar {
        top: 6rem;
    }

    .popular-list {
        display: grid;
        gap: 0.85rem;
    }

    .popular-item {
        display: flex;
        gap: 0.85rem;
        padding: 0.9rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        color: #111827;
        text-decoration: none;
        transition: transform 0.18s ease, background-color 0.18s ease;
    }

    .popular-item:hover {
        transform: translateY(-2px);
        background: #f5f3ff;
        color: #4c1d95;
    }

    .popular-number {
        flex: 0 0 auto;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: #4c1d95;
        font-weight: 800;
    }

    .popular-item small {
        display: block;
        margin-top: 0.2rem;
        color: #6b7280;
    }

    .other-category-list {
        display: grid;
        gap: 0.85rem;
    }

    .other-category-link {
        display: grid;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background: #f8fafc;
        color: #111827;
        text-decoration: none;
        transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    }

    .other-category-link:hover {
        transform: translateY(-2px);
        background: #f5f3ff;
        color: #4c1d95;
    }

    .other-category-link span {
        color: #6b7280;
        font-size: 0.92rem;
    }

    @media (max-width: 991.98px) {
        .blog-sidebar {
            position: static !important;
        }
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .blog-category-hero .btn-lg {
            width: 100%;
        }
    }

    .score-orbit {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        border-radius: 50%;
        padding: 10px;
        background:
            conic-gradient(from 180deg, #6d28d9, #2563eb, #a78bfa, #6d28d9);
        box-shadow: 0 1.2rem 2.5rem rgba(76, 29, 149, 0.18);
    }

    .score-orbit-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background:
            radial-gradient(circle at 35% 30%, #ffffff, #f5f3ff);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111827;
        font-size: 2rem;
        font-weight: 800;
    }

    .recommendation-box ul {
        padding-left: 1.2rem;
    }

    .recommendation-box li + li {
        margin-top: 0.35rem;
    }

    .factor-card {
        height: 100%;
        padding: 1.35rem;
        border-radius: 1.5rem;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 0.7rem 1.8rem rgba(17, 24, 39, 0.06);
    }

    .factor-card-top {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .factor-label {
        margin-bottom: 0.35rem;
        color: #6b7280;
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .factor-delta {
        display: inline-flex;
        min-width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 800;
    }

    .factor-positive .factor-delta {
        color: #166534;
        background: #dcfce7;
    }

    .factor-negative .factor-delta {
        color: #991b1b;
        background: #fee2e2;
    }

    .factor-neutral .factor-delta {
        color: #92400e;
        background: #fef3c7;
    }

    .day-compare-table th {
        white-space: nowrap;
        color: #6b7280;
        font-size: 0.84rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .current-day-row > * {
        background: #f5f3ff !important;
    }

    @media (max-width: 767.98px) {
        .day-compare-table {
            min-width: 620px;
        }

        .score-orbit {
            width: 132px;
            height: 132px;
        }

        .score-orbit-inner {
            font-size: 1.7rem;
        }
    }	
.action-zodiac-day-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.action-zodiac-day-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 76px;
    padding: 0.75rem;
    border-radius: 1rem;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 0.35rem 1rem rgba(17, 24, 39, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.action-zodiac-day-link:hover {
    color: #111827;
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: rgba(109, 40, 217, 0.24);
    box-shadow: 0 0.75rem 1.4rem rgba(17, 24, 39, 0.08);
}

.action-zodiac-day-link img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.action-zodiac-day-link span {
    min-width: 0;
}

.action-zodiac-day-link strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.15;
    font-weight: 800;
}

.action-zodiac-day-link small {
    display: block;
    margin-top: 0.2rem;
    color: #6b7280;
    font-size: 0.74rem;
    line-height: 1.25;
}

.action-zodiac-day-link em {
    display: none;
}

.action-zodiac-day-link.is-current {
    background: #f5f3ff;
    border-color: rgba(109, 40, 217, 0.35);
}

.action-zodiac-day-link.is-current strong {
    color: #4c1d95;
}

.action-zodiac-day-link.is-current small::after {
    content: " · Луна здесь";
    color: #4c1d95;
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .action-zodiac-day-grid {
        grid-template-columns: 1fr;
    }

    .action-zodiac-day-link {
        min-height: 68px;
    }
}
.action-zodiac-score {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
}

.action-zodiac-day-link {
    justify-content: space-between;
}

    .home-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .hero-today-card {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
    }

    .today-moon-list {
        display: grid;
        gap: 0.75rem;
    }

    .today-moon-list div {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .today-moon-list div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .today-moon-list span {
        color: #6b7280;
        font-size: 0.9rem;
    }

    .today-moon-list strong {
        color: #111827;
        text-align: right;
        font-size: 0.9rem;
    }

    .procedure-card,
    .month-card,
    .blog-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .procedure-card:hover,
    .month-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .procedure-icon {
        width: 3rem;
        height: 3rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #f5f3ff;
        color: #6d28d9;
        font-size: 1.2rem;
        font-weight: 800;
    }

    .month-meta {
        display: grid;
        gap: 0.35rem;
        color: #6b7280;
        font-size: 0.9rem;
    }

    .seo-text-card {
        padding: 2rem;
        border-radius: 2rem;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, 0.08);
        color: #374151;
        font-size: 1rem;
        line-height: 1.75;
    }

    .seo-text-card p {
        margin-bottom: 1rem;
    }

    .seo-text-card p:last-child {
        margin-bottom: 0;
    }

    .seo-text-card h3 {
        margin-top: 1.75rem;
        margin-bottom: 1rem;
        color: #111827;
        font-size: 1.35rem;
        font-weight: 800;
        line-height: 1.25;
    }

    .seo-text-card ul {
        display: grid;
        gap: 0.65rem;
        margin: 0 0 1.25rem;
        padding: 0;
        list-style: none;
    }

    .seo-text-card li {
        position: relative;
        padding-left: 1.5rem;
    }

    .seo-text-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.65rem;
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 50%;
        background: #6d28d9;
    }

    .seo-text-card strong {
        color: #111827;
        font-weight: 800;
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .home-hero .btn-lg {
            width: 100%;
        }

        .seo-text-card {
            padding: 1.25rem;
            border-radius: 1.5rem;
        }
    }


    .site-footer {
        background:
            radial-gradient(circle at 15% 20%, rgba(109, 40, 217, 0.22), transparent 28%),
            radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.18), transparent 30%),
            linear-gradient(135deg, #111827 0%, #1f1b4d 52%, #0f172a 100%);
        color: rgba(255, 255, 255, 0.86);
    }

    .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        color: #ffffff;
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: -0.03em;
    }

    .footer-brand:hover {
        color: #ffffff;
        opacity: 0.9;
    }

    .footer-brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background:
            radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 18%),
            linear-gradient(135deg, #8b5cf6, #38bdf8);
        box-shadow: 0 0.5rem 1.4rem rgba(139, 92, 246, 0.24);
    }

    .footer-brand-mark::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: inset -5px 0 0 rgba(17, 24, 39, 0.18);
    }

    .footer-text {
        max-width: 34rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.7;
    }

    .footer-note {
        max-width: 34rem;
        color: rgba(255, 255, 255, 0.52);
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .footer-title {
        margin-bottom: 1rem;
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .footer-links {
        display: grid;
        gap: 0.55rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.68);
        text-decoration: none;
        font-weight: 500;
    }

    .footer-links a:hover {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 0.22rem;
    }

    .footer-divider {
        border-color: rgba(255, 255, 255, 0.14);
        opacity: 1;
    }

    .footer-copy,
    .footer-small-links {
        color: rgba(255, 255, 255, 0.56);
        font-size: 0.92rem;
    }

    .footer-small-links {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0.45rem;
        align-items: center;
    }

    .footer-small-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .footer-small-links a:hover {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 0.22rem;
    }

    .blog-hero {
        background:
            radial-gradient(circle at 18% 12%, rgba(196, 181, 253, 0.34), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(96, 165, 250, 0.24), transparent 30%),
            linear-gradient(135deg, #111827 0%, #312e81 48%, #1e1b4b 100%);
    }

    .blog-hero .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .blog-hero .breadcrumb .active {
        color: rgba(255, 255, 255, 0.58);
    }

    .category-card,
    .article-card {
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .category-card:hover,
    .article-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2.4rem rgba(17, 24, 39, 0.1) !important;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        border-radius: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 800;
        font-size: 1.3rem;
        background: linear-gradient(135deg, #6d28d9, #2563eb);
    }

    .calendar-link {
        position: relative;
        z-index: 2;
        color: #4c1d95;
        font-weight: 700;
        text-decoration: none;
    }

    .calendar-link:hover {
        text-decoration: underline;
        text-underline-offset: 0.2rem;
    }

    @media (max-width: 575.98px) {
        .display-5 {
            font-size: 2.35rem;
        }

        .blog-hero .btn-lg {
            width: 100%;
        }
    }
