:root {
    --cs-primary: #d6336c;
    --cs-secondary: #faa2c1;
    --cs-bg-light: #fdf2f8;
    --cs-text-dark: #212529;
    --cs-text-med: #495057;
    --cs-font: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--cs-font);
    background-color: #ffffff;
    color: var(--cs-text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    margin: 0;
}

strong {
    color: var(--cs-text-dark);
}

h1,
h2,
h3,
h4 {
    color: var(--cs-primary);
    line-height: 1.3;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(214, 51, 108, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cs-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    filter: drop-shadow(0 2px 5px rgba(214, 51, 108, 0.2));
}

.logo-text {
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(90deg, var(--cs-primary), #a61e4d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--cs-text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cs-primary);
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cs-primary);
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

/* Hero */
.cs-hero {
    text-align: center;
    padding: 6rem 2rem 4rem 2rem;
    background: linear-gradient(180deg, var(--cs-bg-light) 0%, #ffffff 100%);
}

.cs-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--cs-primary), #a61e4d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-hero p {
    font-size: 1.25rem;
    color: var(--cs-text-med);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

/* Hero CTA */
.hero-cta {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--cs-primary) 0%, #a61e4d 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 10px 25px rgba(214, 51, 108, 0.3);
}

/* Tool Section */
.cs-tool-section {
    position: relative;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.cs-tool-desc {
    font-size: 1.15rem;
    color: var(--cs-text-med);
}

.cs-tool-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.cs-tool-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--cs-text-dark);
}

.cs-iframe-container {
    width: 100%;
    max-width: 1000px;
    height: 950px;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--cs-bg-light);
    background: var(--cs-bg-light);
}

.cs-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Main Article Layout */
.article-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 2rem 5% 6rem 5%;
    font-size: 1.15rem;
    color: var(--cs-text-med);
}

.article-container h2 {
    font-size: 2.2rem;
    color: var(--cs-text-dark);
    margin-top: 4.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--cs-bg-light);
    padding-bottom: 10px;
}

.article-container h3 {
    font-size: 1.6rem;
    color: var(--cs-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-container h4 {
    font-size: 1.3rem;
    color: var(--cs-text-dark);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.article-container p {
    margin-bottom: 1.5rem;
}

.article-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.article-container li {
    margin-bottom: 0.8rem;
}

/* Example Results Box */
.example-box {
    background: var(--cs-bg-light);
    padding: 2.5rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(214, 51, 108, 0.1);
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.example-box h3 {
    margin-top: 0;
    color: var(--cs-text-dark);
    font-size: 1.8rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.example-box p,
.example-box ul {
    font-size: 1.1rem;
}

.example-box h4 {
    margin-top: 1.5rem;
}

/* 3 Steps Component (Pastel Design) */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-1 {
    background-color: #fff0f2;
    border: 1px solid #ffd1d7;
}

.step-2 {
    background-color: #f1fcf4;
    border: 1px solid #c9ecce;
}

.step-3 {
    background-color: #f1efff;
    border: 1px solid #d3cdff;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #212529;
    margin-top: 0;
    margin-bottom: 1rem;
}

.step-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Footer */
footer {
    padding: 4rem 5%;
    background: var(--cs-bg-light);
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-weight: 300;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.footer-title {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    border-bottom: none;
    background: linear-gradient(90deg, var(--cs-primary), #a61e4d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cs-text-med);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-copy {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Ambient Stars Canvas */
#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.calc-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    background-color: #ffffff;
    max-width: 850px;
    width: 100%;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 60px rgba(214, 51, 108, 0.12);
    border: 1px solid rgba(214, 51, 108, 0.15);
    text-align: center;
    overflow: hidden;
}

.form-section {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 250px;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cs-text-med);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group input {
    width: 100%;
    height: 3.8rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(214, 51, 108, 0.2);
    padding: 0 1.25rem;
    border-radius: 14px;
    color: var(--cs-text-dark);
    font-family: var(--cs-font);
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color-scheme: light;
    box-shadow: inset 0 2px 5px rgba(214, 51, 108, 0.05);
    -webkit-appearance: none;
    appearance: none;
    line-height: normal;
}

.input-group input:focus {
    outline: none;
    border-color: var(--cs-primary);
    box-shadow: 0 10px 20px rgba(214, 51, 108, 0.2), inset 0 2px 5px rgba(214, 51, 108, 0.05);
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.calc-btn {
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-secondary));
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 1.35rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(214, 51, 108, 0.25);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calc-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.calc-btn:hover::after {
    left: 150%;
}

.calc-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.4);
    animation-duration: 2s;
}

.calc-btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Results Section Styling */
#results {
    display: none;
    opacity: 0;
    transform: translateY(25px);
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-top: 1px solid rgba(214, 51, 108, 0.1);
    padding-top: 3.5rem;
    margin-top: 3.5rem;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.score-header {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cs-text-med);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.score-val-wrapper {
    font-size: 5rem;
    font-weight: 800;
    color: var(--cs-text-dark);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(214, 51, 108, 0.4);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.score-val {
    color: var(--cs-primary);
}

.score-percent {
    font-size: 3rem;
    color: #a61e4d;
    opacity: 0.8;
}

.progress-bar-bg {
    background-color: rgba(255, 255, 255, 0.5);
    height: 14px;
    border-radius: 20px;
    margin: 0 auto 3rem;
    max-width: 500px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(214, 51, 108, 0.1);
    border: 1px solid rgba(214, 51, 108, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cs-secondary), var(--cs-primary));
    border-radius: 20px;
    width: 0%;
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

/* Metric Grid */
.detailed-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.sub-metric-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cs-text-med);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.small-bg {
    height: 8px;
    margin: 0;
    max-width: 100%;
}

.small-fill {
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#emotion-bar {
    background: linear-gradient(90deg, #ff8787, #eebefa);
}

#passion-bar {
    background: linear-gradient(90deg, #f06595, #cc5de8);
}

#destiny-bar {
    background: linear-gradient(90deg, #b197fc, #8ce99a);
}


.phases-display {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

@keyframes floatingCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.phase-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    flex: 1;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(214, 51, 108, 0.08);
    position: relative;
    overflow: hidden;
    animation: floatingCard 6s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.phase-card:nth-child(2) {
    animation-delay: 3s;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cs-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phase-card:hover::before {
    opacity: 1;
}

.phase-card:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(214, 51, 108, 0.15);
}

.person-label {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--cs-text-dark);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 800;
}

.celestial-bodies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.body-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.body-icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 0 15px rgba(214, 51, 108, 0.2));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phase-card:hover .body-icon {
    transform: scale(1.15) rotate(8deg);
}

.body-label {
    font-size: 0.8rem;
    color: var(--cs-text-med);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.body-name {
    font-size: 1.15rem;
    color: var(--cs-text-dark);
    font-weight: 600;
}

.body-element {
    font-size: 0.8rem;
    color: var(--cs-primary);
    font-weight: 400;
    padding-top: 4px;
}

.text-content {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 5px 20px rgba(214, 51, 108, 0.05);
}

.quote {
    font-size: 1.6rem;
    font-style: italic;
    color: #a61e4d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
}

.summary {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cs-text-med);
    margin-bottom: 3rem;
    text-align: justify;
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

.section-title {
    color: var(--cs-primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
}

.traits-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.traits-list li {
    position: relative;
    font-weight: 400;
    color: var(--cs-text-med);
    line-height: 1.5;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.traits-list li::before {
    content: '•';
    color: var(--cs-primary);
    font-size: 1.5rem;
    margin-right: 1.2rem;
    line-height: 1;
}

.cosmic-journey {
    color: var(--cs-text-dark);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* --- MOBILE RESPONSIVENESS STRATEGY --- */
@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: block;
    }

    /* Hamburger Dropdown styling */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(214, 51, 108, 0.08);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }

    .nav-links.nav-active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .cs-hero h1 {
        font-size: 2.2rem;
    }

    .cs-iframe-container {
        height: 1100px;
    }

    .article-container h2 {
        font-size: 1.8rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    /* Calculator Adjustments */
    .detailed-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calc-container {
        padding: 2rem 1.5rem;
    }

    .form-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .input-group {
        min-width: 100%;
    }

    .phases-display {
        flex-direction: column;
    }

    .celestial-bodies {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .body-icon {
        font-size: 3.5rem;
    }

    .text-content {
        padding: 2rem 1.5rem;
    }

    /* Info & Grids Updates for Twin Flame and Signs */
    .info-highlight-box {
        padding: 2.5rem 1.5rem !important;
    }

    .comparison-grid {
        grid-template-columns: 1fr !important;
    }

    .phases-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Overrides to fix the squished cards */
    .glow-section,
    .signs-container {
        padding: 2.5rem 1.5rem !important;
        margin: 3rem 0 !important;
    }

    .twin-flame-grid,
    .signs-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .twin-flame-card,
    .sign-card {
        padding: 1.5rem !important;
    }

    /* Misc Fixes */
    .score-val-wrapper {
        font-size: 4rem;
    }

    .score-percent {
        font-size: 2.5rem;
    }

    .traits-list li {
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .score-val-wrapper {
        font-size: 3.5rem;
    }

    .calc-btn {
        font-size: 0.75rem;
        padding: 0.75rem 0.8rem;
        letter-spacing: 0.5px;
        border-radius: 40px;
    }

    /* Hero CTA button */
    .cs-hero a[href="#tool"] {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .calc-btn {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
        letter-spacing: 0.5px;
        border-radius: 40px;
    }

    /* Hero CTA button */
    .cs-hero a[href="#tool"] {
        padding: 0.85rem 1.8rem !important;
        font-size: 1rem !important;
    }
}

/* FAQ Specific styling */
.faq-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.faq-grid details {
    background: var(--cs-bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-grid details[open] {
    background: #ffffff;
    border-color: var(--cs-primary);
    box-shadow: 0 10px 20px rgba(214, 51, 108, 0.08);
    padding-bottom: 1.5rem;
}

.faq-grid summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--cs-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-grid details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-grid p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }

    .faq-grid summary {
        font-size: 1.1rem;
    }
}

/* Article Images */
.article-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: block;
}

/* Dynamic Title in Results */
#dynamic-title {
    font-size: 0.5em;
    margin-left: 10px;
    font-weight: normal;
    color: var(--cs-primary);
}

/* Personalities Output */
#personalities-output {
    margin-bottom: 2rem;
}

/* Info Highlight Box */
.info-highlight-box {
    background-color: #f2f9fd;
    padding: 4rem 3.5rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.info-highlight-box h2 {
    margin-top: 0;
    padding-bottom: 0;
    border: none;
    font-size: 2.2rem;
    color: #1a202c;
    text-align: left;
}

.info-highlight-box > p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 900px;
    margin-bottom: 3rem;
    text-align: left;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.comparison-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.comparison-card h3 {
    margin-top: 0;
    color: #1a202c;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comparison-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Phases Grid */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.phase-detail-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.phase-emoji {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.phase-detail-card h3 {
    margin-top: 0;
    color: #1a202c;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.phase-detail-card h4 {
    font-size: 1.1rem;
    color: var(--cs-primary);
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.phase-detail-card .article-img {
    border-radius: 12px;
    margin: 1rem 0;
}

.phase-detail-card p {
    color: #4a5568;
    line-height: 1.7;
}

.phase-detail-card .best-match {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.05rem;
}

.best-match span {
    color: var(--cs-text-med);
    font-weight: 400;
}

/* Glow Section (Soulmate vs Twin Flame) */
.glow-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 5rem 0;
    border: 1px solid rgba(214, 51, 108, 0.05);
}

.glow-section h2 {
    margin-top: 0;
    padding-bottom: 0;
    border: none;
    font-size: 2.2rem;
    color: #1a202c;
    text-align: left;
}

.glow-section > p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* Twin Flame Grid */
.twin-flame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.twin-flame-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 5px solid var(--cs-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.twin-flame-card.tf-dark {
    border-top-color: #2b3a4a;
}

.twin-flame-card h3 {
    margin-top: 0;
    color: var(--cs-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.twin-flame-card.tf-dark h3 {
    color: #1a202c;
}

.twin-flame-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.twin-flame-card li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.twin-flame-card li:last-child {
    margin-bottom: 0;
}

.tf-icon {
    font-size: 1.2rem;
}

.tf-text {
    color: #4a5568;
}

/* Signs Container */
.signs-container {
    margin: 5rem 0;
    background: #ffffff;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.signs-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
    border: none;
    color: #1a202c;
}

.signs-desc {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.sign-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease;
}

.sign-check {
    color: var(--cs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(214, 51, 108, 0.15);
}

.sign-text {
    color: #2d3748;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
}

.signs-closing {
    text-align: center;
    margin-top: 2rem;
    color: var(--cs-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section Heading */
.faq-section h2 {
    margin-top: 0;
    border: none;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Article CTA */
.article-cta-wrapper {
    text-align: center;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.article-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--cs-primary) 0%, #a61e4d 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(214, 51, 108, 0.3);
    max-width: 90%;
}