/* =========================================================
   ASTROLUA
   LuaCheia.org
========================================================= */


/* =========================================================
   BASE
========================================================= */

.astrolua-page {
    --astro-purple: #6f42c1;
    --astro-purple-deep: #3f236f;
    --astro-purple-dark: #281545;
    --astro-lilac: #b99ae8;
    --astro-lilac-light: #eee5fb;
    --astro-gold: #d5ad55;
    --astro-gold-light: #f1d996;
    --astro-ivory: #fffaf1;
    --astro-text: #33283d;
    --astro-muted: #756b7c;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(185, 154, 232, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 50%,
            rgba(213, 173, 85, 0.08),
            transparent 25%
        ),
        #fffaf5;

    color: var(--astro-text);
    overflow: hidden;
}


.astrolua-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


.astrolua-page .section-eyebrow {
    margin: 0 0 12px;
    color: var(--astro-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}


.astrolua-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}


.astrolua-section-heading h2 {
    margin: 0 0 16px;
    color: var(--astro-purple-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.12;
}


.astrolua-section-heading > p:last-child {
    margin: 0 auto;
    max-width: 650px;
    color: var(--astro-muted);
    font-size: 16px;
    line-height: 1.75;
}


.astrolua-small-label {
    margin: 0 0 9px;
    color: var(--astro-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* =========================================================
   HERO
========================================================= */

.astrolua-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(188, 153, 237, 0.34),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(213, 173, 85, 0.10),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #f8f0ff 0%,
            #eee1fa 45%,
            #fbf4e8 100%
        );
}


.astrolua-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.50) 0%,
            rgba(192, 158, 235, 0.15) 40%,
            transparent 68%
        );
    animation: astroHeroGlow 9s ease-in-out infinite;
    pointer-events: none;
}


.astrolua-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.30;
    pointer-events: none;

    background-image:
        radial-gradient(circle, rgba(91, 55, 141, .45) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(213, 173, 85, .55) 1px, transparent 1.5px);

    background-size:
        125px 125px,
        185px 185px;

    background-position:
        10px 30px,
        70px 90px;

    animation: astroStarDrift 28s linear infinite;
}


.astrolua-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 790px;
    text-align: center;
}


.astrolua-hero-symbol {
    width: 82px;
    height: 82px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(213, 173, 85, 0.65);
    border-radius: 50%;

    color: var(--astro-gold);
    font-family: Georgia, serif;
    font-size: 43px;

    background: rgba(255, 250, 241, 0.60);

    box-shadow:
        0 0 0 10px rgba(255,255,255,0.18),
        0 0 40px rgba(111, 66, 193, 0.15);

    animation: astroFloat 6s ease-in-out infinite;
}


.astrolua-hero h1 {
    margin: 0 0 22px;
    color: var(--astro-purple-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.04;
}


.astrolua-hero-text {
    max-width: 680px;
    margin: 0 auto;
    color: #665b70;
    font-size: 18px;
    line-height: 1.75;
}


.astrolua-hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


.astrolua-primary-button,
.astrolua-secondary-button {
    min-height: 48px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.astrolua-primary-button {
    color: #fff;
    border: 1px solid var(--astro-purple);
    background:
        linear-gradient(
            135deg,
            #8053cb,
            #5e319f
        );

    box-shadow: 0 10px 25px rgba(86, 45, 145, .18);
}


.astrolua-secondary-button {
    color: var(--astro-purple-deep);
    border: 1px solid rgba(111, 66, 193, .25);
    background: rgba(255, 255, 255, .55);
}


.astrolua-primary-button:hover,
.astrolua-secondary-button:hover {
    transform: translateY(-2px);
}


.astrolua-primary-button:hover {
    box-shadow: 0 14px 30px rgba(86, 45, 145, .25);
}


.astrolua-secondary-button:hover {
    border-color: var(--astro-gold);
    background: rgba(255,255,255,.85);
}


/* =========================================================
   HERO DECORATION
========================================================= */

.astro-orbit {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(111, 66, 193, .11);
    pointer-events: none;
}


.astro-orbit-one {
    width: 520px;
    height: 520px;
    left: -230px;
    top: 80px;
    animation: astroRotate 45s linear infinite;
}


.astro-orbit-two {
    width: 390px;
    height: 390px;
    right: -150px;
    bottom: -90px;
    border-color: rgba(213, 173, 85, .18);
    animation: astroRotateReverse 38s linear infinite;
}


.astro-star {
    position: absolute;
    z-index: 2;
    color: var(--astro-gold);
    pointer-events: none;
    opacity: .65;
    animation: astroTwinkle 4.5s ease-in-out infinite;
}


.astro-star-one {
    top: 24%;
    left: 12%;
    font-size: 18px;
}


.astro-star-two {
    top: 66%;
    left: 19%;
    font-size: 35px;
    animation-delay: 1.2s;
}


.astro-star-three {
    top: 30%;
    right: 13%;
    font-size: 15px;
    animation-delay: 2.1s;
}


.astro-star-four {
    bottom: 20%;
    right: 21%;
    font-size: 38px;
    animation-delay: .7s;
}


/* =========================================================
   PERSONAL AREA
========================================================= */

.astrolua-personal {
    padding: 76px 0;
}


.astrolua-personal-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
}


.astrolua-welcome-card,
.astrolua-moon-card {
    position: relative;
    min-height: 250px;
    border: 1px solid rgba(111, 66, 193, .12);
    border-radius: 28px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.90),
            rgba(245,237,252,.72)
        );

    box-shadow: 0 18px 50px rgba(61, 34, 96, .07);
}


.astrolua-welcome-card {
    padding: 38px 42px;
}

/* =========================================================
   PERSONAL STARS BALANCE
========================================================= */

.astrolua-welcome-top {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 5px;
}


.astrolua-welcome-top .astrolua-small-label {
    margin-top: 8px;
}


.astrolua-balance {
    min-width: 130px;
    padding: 9px 15px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(213, 173, 85, .42);
    border-radius: 999px;

    color: var(--astro-purple-deep);
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.88),
            rgba(247,239,252,.90)
        );

    box-shadow:
        0 7px 20px rgba(61,34,96,.06);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.astrolua-balance:hover {
    transform: translateY(-2px);
    border-color: rgba(213,173,85,.75);

    box-shadow:
        0 10px 24px rgba(61,34,96,.10);
}


.astrolua-balance-star {
    color: var(--astro-gold);
    font-size: 23px;
    line-height: 1;

    filter:
        drop-shadow(
            0 2px 5px rgba(213,173,85,.20)
        );
}


.astrolua-balance-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.astrolua-balance-label {
    color: var(--astro-muted);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;

    line-height: 1.1;
}


.astrolua-balance strong {
    margin-top: 2px;

    color: var(--astro-purple-deep);

    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 500;

    line-height: 1;
}


@media (max-width: 700px) {

    .astrolua-welcome-top {
        align-items: center;
    }


    .astrolua-balance {
        min-width: auto;
        padding: 8px 12px;
    }


    .astrolua-balance-star {
        font-size: 20px;
    }


    .astrolua-balance strong {
        font-size: 17px;
    }

}

.astrolua-welcome-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--astro-purple-dark);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}


.astrolua-welcome-card > p:not(.astrolua-small-label) {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0;
    color: var(--astro-muted);
    line-height: 1.65;
}


.astrolua-mood {
    position: relative;
    z-index: 2;
    margin-top: 28px;
}


.astrolua-mood > p:first-child {
    margin: 0 0 13px;
    color: var(--astro-purple-deep);
    font-size: 14px;
    font-weight: 700;
}


.astrolua-mood-options {
    display: flex;
    align-items: center;
    gap: 9px;
}


.astro-mood-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(111, 66, 193, .13);
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    cursor: pointer;
    font-size: 20px;

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.astro-mood-button:hover {
    transform: translateY(-3px);
    border-color: rgba(213,173,85,.65);
    box-shadow: 0 7px 16px rgba(66, 39, 99, .10);
}


.astrolua-mood-message {
    margin: 13px 0 0 !important;
    font-size: 13px;
    color: var(--astro-muted);
}


.astrolua-moon-card {
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 28px;

    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(191, 155, 236, .22),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #f5eafb,
            #fff9ee
        );
}


.astrolua-moon-visual {
    position: relative;
    width: 110px;
    height: 110px;
    flex: 0 0 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.astrolua-moon-glow {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: rgba(213, 173, 85, .13);
    filter: blur(5px);
    animation: astroMoonGlow 5s ease-in-out infinite;
}


.astrolua-moon-symbol {
    position: relative;
    z-index: 2;
    color: var(--astro-gold);
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;
    filter: drop-shadow(0 5px 12px rgba(122, 80, 174, .16));
    animation: astroFloat 7s ease-in-out infinite;
}


.astrolua-moon-content h3 {
    margin: 0 0 10px;
    color: var(--astro-purple-dark);
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}


.astrolua-moon-content p:last-child {
    margin: 0;
    color: var(--astro-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   DAILY ASTROLOGY
========================================================= */

.astrolua-daily {
    padding: 92px 0 100px;

    background:
        linear-gradient(
            180deg,
            rgba(238, 226, 249, .52),
            rgba(255, 250, 243, .25)
        );
}


.astrolua-daily-main {
    max-width: 1060px;
    margin: 0 auto;
}


.astrolua-sign-card {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 32px;

    padding: 35px 42px;
    margin-bottom: 20px;

    border: 1px solid rgba(213, 173, 85, .38);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(73, 38, 116, .97),
            rgba(105, 61, 160, .94)
        );

    box-shadow: 0 18px 50px rgba(61, 31, 96, .15);
    overflow: hidden;
}


.astrolua-sign-card::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -80px;
    top: -100px;
    border-radius: 50%;
    border: 1px solid rgba(241, 217, 150, .12);
}


.astrolua-sign-symbol {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 217, 150, .45);
    border-radius: 50%;

    color: var(--astro-gold-light);
    font-family: Georgia, serif;
    font-size: 48px;

    background: rgba(255,255,255,.055);

    box-shadow:
        inset 0 0 30px rgba(255,255,255,.04),
        0 0 30px rgba(213,173,85,.08);
}


.astrolua-sign-card > div:last-child {
    position: relative;
    z-index: 2;
}


.astrolua-sign-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}


.astrolua-sign-card p:last-child {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.7;
}


.astrolua-daily-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


.astrolua-daily-card {
    min-height: 190px;
    padding: 27px 24px;

    border: 1px solid rgba(111, 66, 193, .12);
    border-radius: 23px;

    background: rgba(255,255,255,.76);

    box-shadow: 0 10px 30px rgba(62, 35, 94, .055);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


.astrolua-daily-card:hover {
    transform: translateY(-4px);
    border-color: rgba(213, 173, 85, .42);
    box-shadow: 0 16px 35px rgba(62, 35, 94, .09);
}


.astrolua-daily-icon {
    display: block;
    margin-bottom: 15px;
    color: var(--astro-gold);
    font-family: Georgia, serif;
    font-size: 25px;
}


.astrolua-daily-card h3 {
    margin: 0 0 9px;
    color: var(--astro-purple-deep);
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 500;
}


.astrolua-daily-card p {
    margin: 0;
    color: var(--astro-muted);
    font-size: 13px;
    line-height: 1.65;
}


.astrolua-daily-guidance {
    grid-column: span 4;
    min-height: auto;
    display: grid;
    grid-template-columns: auto 150px 1fr;
    align-items: center;
    gap: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(247, 239, 252, .92),
            rgba(255, 249, 237, .92)
        );
}


.astrolua-daily-guidance .astrolua-daily-icon {
    margin: 0;
}


/* =========================================================
   CATEGORIES
========================================================= */

.astrolua-experiences {
    padding: 100px 0;
}


.astrolua-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


.astrolua-category-card {
    position: relative;
    min-height: 310px;
    padding: 36px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(111, 66, 193, .13);
    border-radius: 28px;

    color: inherit;
    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(244,235,251,.68)
        );

    box-shadow: 0 15px 42px rgba(61, 34, 96, .06);
    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.astrolua-category-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -90px;

    border: 1px solid rgba(213, 173, 85, .15);
    border-radius: 50%;

    transition: transform .5s ease;
}


.astrolua-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213,173,85,.48);
    box-shadow: 0 20px 48px rgba(61, 34, 96, .10);
}


.astrolua-category-card:hover::before {
    transform: scale(1.15);
}


.astrolua-category-number {
    position: absolute;
    top: 28px;
    right: 30px;

    color: rgba(111, 66, 193, .19);
    font-family: Georgia, serif;
    font-size: 30px;
}


.astrolua-category-symbol {
    width: 58px;
    height: 58px;
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(213, 173, 85, .45);
    border-radius: 50%;

    color: var(--astro-gold);
    font-family: Georgia, serif;
    font-size: 28px;

    background: rgba(255,250,241,.65);
}


.astrolua-category-card h3 {
    margin: 0 0 12px;
    color: var(--astro-purple-dark);
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}


.astrolua-category-card p {
    max-width: 470px;
    margin: 0 0 28px;
    color: var(--astro-muted);
    font-size: 14px;
    line-height: 1.7;
}


.astrolua-category-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--astro-purple);
    font-size: 13px;
    font-weight: 700;
}


.astrolua-category-link span {
    transition: transform .25s ease;
}


.astrolua-category-card:hover .astrolua-category-link span {
    transform: translateX(4px);
}


/* =========================================================
   FEATURED EXPERIENCES
========================================================= */

.astrolua-featured {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            rgba(239, 228, 249, .56),
            rgba(255, 250, 242, .52)
        );
}


.astrolua-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.astrolua-featured-card {
    position: relative;
    padding: 34px 30px 32px;
    min-height: 300px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(111, 66, 193, .12);
    border-radius: 25px;

    background: rgba(255,255,255,.78);

    box-shadow: 0 13px 36px rgba(61,34,96,.055);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


.astrolua-featured-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213,173,85,.43);
    box-shadow: 0 18px 42px rgba(61,34,96,.09);
}


.astrolua-featured-symbol {
    margin-bottom: 22px;
    color: var(--astro-gold);
    font-family: Georgia, serif;
    font-size: 37px;
}


.astrolua-featured-label {
    margin: 0 0 8px !important;
    color: var(--astro-gold) !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: .16em;
}


.astrolua-featured-card h3 {
    margin: 0 0 12px;
    color: var(--astro-purple-dark);
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 500;
}


.astrolua-featured-card p {
    margin: 0 0 25px;
    color: var(--astro-muted);
    font-size: 14px;
    line-height: 1.7;
}


.astrolua-featured-card a {
    margin-top: auto;
    color: var(--astro-purple);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


.astrolua-featured-card a span {
    display: inline-block;
    margin-left: 5px;
    transition: transform .25s ease;
}


.astrolua-featured-card:hover a span {
    transform: translateX(4px);
}


/* =========================================================
   STARS
========================================================= */

.astrolua-stars {
    padding: 85px 24px 100px;
}


.astrolua-stars-inner {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 43px 48px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;

    border: 1px solid rgba(213,173,85,.35);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(185,154,232,.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffdf8,
            #f6ecfb
        );

    box-shadow: 0 18px 50px rgba(61,34,96,.07);
}


.astrolua-stars-symbol {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--astro-gold);
    font-size: 34px;

    background: rgba(213,173,85,.10);
    border: 1px solid rgba(213,173,85,.30);

    animation: astroStarPulse 5s ease-in-out infinite;
}


.astrolua-stars-content h2 {
    margin: 0 0 8px;
    color: var(--astro-purple-dark);
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 500;
}


.astrolua-stars-content > p:last-child {
    margin: 0;
    max-width: 620px;
    color: var(--astro-muted);
    font-size: 14px;
    line-height: 1.65;
}


.astrolua-stars-button {
    min-height: 45px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #7b4cc2,
            #5c3098
        );

    box-shadow: 0 8px 20px rgba(78,42,125,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.astrolua-stars-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(78,42,125,.22);
}


/* =========================================================
   ASTROLOGER AI
========================================================= */

.astrolua-ai {
    position: fixed;
    right: 24px;
    bottom: 25px;
    z-index: 9000;
}


.astrolua-ai-button {
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241,217,150,.75);
    border-radius: 50%;

    color: #fff;
    font-size: 25px;

    background:
        linear-gradient(
            145deg,
            #8d5bd0,
            #5a2d94
        );

    box-shadow:
        0 8px 25px rgba(67,34,109,.28),
        0 0 0 7px rgba(127,78,193,.08);

    cursor: pointer;

    animation: astroAIHover 5s ease-in-out infinite;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.astrolua-ai-button::after {
    content: "";
    position: absolute;
    inset: -7px;

    border: 1px solid rgba(213,173,85,.20);
    border-radius: 50%;

    animation: astroAIRing 4s ease-out infinite;
}


.astrolua-ai-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 28px rgba(67,34,109,.34),
        0 0 0 8px rgba(127,78,193,.09);
}


.astrolua-ai-panel {
    position: absolute;
    right: 0;
    bottom: 80px;

    width: 310px;
    padding: 29px 27px 27px;

    border: 1px solid rgba(213,173,85,.46);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(62,34,101,.98),
            rgba(87,47,135,.98)
        );

    box-shadow: 0 20px 55px rgba(36,18,58,.27);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.97);

    transition:
        opacity .28s ease,
        visibility .28s ease,
        transform .28s ease;
}


.astrolua-ai-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


.astrolua-ai-close {
    position: absolute;
    top: 10px;
    right: 12px;

    width: 30px;
    height: 30px;

    border: 0;
    border-radius: 50%;

    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.07);

    font-size: 20px;
    cursor: pointer;
}


.astrolua-ai-panel-symbol {
    margin-bottom: 12px;
    color: var(--astro-gold-light);
    font-size: 30px;
}


.astrolua-ai-label {
    margin: 0 0 8px;
    color: var(--astro-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}


.astrolua-ai-panel h2 {
    margin: 0 0 11px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}


.astrolua-ai-panel > p:not(.astrolua-ai-label) {
    margin: 0 0 20px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.65;
}


.astrolua-ai-start {
    width: 100%;
    min-height: 46px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid rgba(241,217,150,.75);
    border-radius: 999px;

    color: #4b2a73;
    text-decoration: none;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            #f5dda0,
            #d8b45d
        );

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(26,12,42,.16);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease;
}


.astrolua-ai-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,.15);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes astroHeroGlow {

    0%,
    100% {
        opacity: .65;
        transform: translate(-50%, -50%) scale(.96);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }
}


@keyframes astroStarDrift {

    from {
        background-position:
            10px 30px,
            70px 90px;
    }

    to {
        background-position:
            60px 80px,
            25px 145px;
    }
}


@keyframes astroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes astroTwinkle {

    0%,
    100% {
        opacity: .25;
        transform: scale(.85);
    }

    50% {
        opacity: .85;
        transform: scale(1.08);
    }
}


@keyframes astroRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes astroRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes astroMoonGlow {

    0%,
    100% {
        opacity: .55;
        transform: scale(.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}


@keyframes astroStarPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(213,173,85,.06);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(213,173,85,.05);
    }
}


@keyframes astroAIHover {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


@keyframes astroAIRing {

    0% {
        opacity: .6;
        transform: scale(.90);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .astrolua-personal-grid {
        grid-template-columns: 1fr;
    }


    .astrolua-daily-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .astrolua-daily-guidance {
        grid-column: span 2;
    }


    .astrolua-featured-grid {
        grid-template-columns: 1fr;
    }


    .astrolua-featured-card {
        min-height: auto;
    }


    .astrolua-stars-inner {
        grid-template-columns: auto 1fr;
    }


    .astrolua-stars-button {
        grid-column: 2;
        justify-self: start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .astrolua-container {
        width: calc(100% - 32px);
    }


    /* HERO */

    .astrolua-hero {
        min-height: auto;
        padding: 120px 0 72px;
    }


    .astrolua-hero::before {
        width: 430px;
        height: 430px;
    }


    .astrolua-hero-symbol {
        width: 68px;
        height: 68px;
        margin-bottom: 20px;
        font-size: 35px;
    }


    .astrolua-hero h1 {
        font-size: 45px;
    }


    .astrolua-hero-text {
        font-size: 16px;
        line-height: 1.65;
    }


    .astrolua-hero-actions {
        margin-top: 28px;
        flex-direction: column;
    }


    .astrolua-primary-button,
    .astrolua-secondary-button {
        width: 100%;
        max-width: 310px;
    }


    .astro-orbit-one {
        left: -330px;
    }


    .astro-orbit-two {
        right: -280px;
    }


    .astro-star-one {
        left: 7%;
    }


    .astro-star-three {
        right: 7%;
    }


    /* PERSONAL */

    .astrolua-personal {
        padding: 55px 0;
    }


    .astrolua-welcome-card {
        padding: 30px 25px;
    }


    .astrolua-welcome-card h2 {
        font-size: 29px;
    }


    .astrolua-mood-options {
        gap: 7px;
        flex-wrap: wrap;
    }


    .astrolua-moon-card {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }


    .astrolua-moon-visual {
        width: 80px;
        height: 80px;
        flex-basis: 80px;
    }


    .astrolua-moon-symbol {
        font-size: 59px;
    }


    /* HEADINGS */

    .astrolua-section-heading {
        margin-bottom: 35px;
    }


    .astrolua-section-heading h2 {
        font-size: 34px;
    }


    /* DAILY */

    .astrolua-daily {
        padding: 70px 0;
    }


    .astrolua-sign-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 25px;
    }


    .astrolua-sign-symbol {
        width: 85px;
        height: 85px;
        font-size: 39px;
    }


    .astrolua-sign-card h3 {
        font-size: 26px;
    }


    .astrolua-daily-grid {
        grid-template-columns: 1fr;
    }


    .astrolua-daily-card {
        min-height: auto;
    }


    .astrolua-daily-guidance {
        grid-column: auto;
        display: block;
    }


    .astrolua-daily-guidance .astrolua-daily-icon {
        margin-bottom: 15px;
    }


    /* CATEGORIES */

    .astrolua-experiences {
        padding: 75px 0;
    }


    .astrolua-category-grid {
        grid-template-columns: 1fr;
    }


    .astrolua-category-card {
        min-height: 275px;
        padding: 30px 27px;
    }


    .astrolua-category-card h3 {
        font-size: 25px;
    }


    /* FEATURED */

    .astrolua-featured {
        padding: 75px 0;
    }


    /* STARS */

    .astrolua-stars {
        padding: 65px 16px 85px;
    }


    .astrolua-stars-inner {
        padding: 32px 26px;
        grid-template-columns: 1fr;
        gap: 19px;
    }


    .astrolua-stars-symbol {
        width: 62px;
        height: 62px;
    }


    .astrolua-stars-content h2 {
        font-size: 26px;
    }


    .astrolua-stars-button {
        grid-column: auto;
        justify-self: start;
    }


    /* AI */

    .astrolua-ai {
        right: 16px;
        bottom: 18px;
    }


    .astrolua-ai-button {
        width: 58px;
        height: 58px;
    }


    .astrolua-ai-panel {
        width: min(300px, calc(100vw - 32px));
        bottom: 72px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .astrolua-page *,
    .astrolua-page *::before,
    .astrolua-page *::after,
    .astrolua-ai *,
    .astrolua-ai *::before,
    .astrolua-ai *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

}

/* =========================================================
   ASTROLUA — COMPACT LAYOUT OVERRIDES
========================================================= */


/* =========================================================
   GENERAL
========================================================= */

.astrolua-section-heading {
    margin-bottom: 34px;
}

.astrolua-section-heading h2 {
    margin-bottom: 12px;
}

.astrolua-section-heading > p:last-child {
    line-height: 1.6;
}


/* =========================================================
   HERO
========================================================= */

.astrolua-hero {
    min-height: 510px;
    padding: 110px 0 68px;
}

.astrolua-hero-symbol {
    margin-bottom: 20px;
}

.astrolua-hero h1 {
    margin-bottom: 16px;
}

.astrolua-hero-text {
    line-height: 1.6;
}

.astrolua-hero-actions {
    margin-top: 26px;
}


/* =========================================================
   PERSONAL
========================================================= */

.astrolua-personal {
    padding: 52px 0;
}

.astrolua-personal-grid {
    gap: 18px;
}

.astrolua-welcome-card,
.astrolua-moon-card {
    min-height: 210px;
}

.astrolua-welcome-card {
    padding: 30px 34px;
}

.astrolua-welcome-card h2 {
    margin-bottom: 8px;
}

.astrolua-mood {
    margin-top: 20px;
}

.astrolua-mood-options {
    margin-top: 0;
}

.astrolua-moon-card {
    padding: 28px 30px;
    gap: 22px;
}

.astrolua-moon-visual {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
}

.astrolua-moon-symbol {
    font-size: 62px;
}


/* =========================================================
   DAILY ASTROLOGY
========================================================= */

.astrolua-daily {
    padding: 64px 0 70px;
}

.astrolua-sign-card {
    padding: 28px 34px;
    margin-bottom: 16px;
    gap: 26px;
}

.astrolua-sign-symbol {
    width: 92px;
    height: 92px;
    font-size: 42px;
}

.astrolua-daily-grid {
    gap: 12px;
}

.astrolua-daily-card {
    min-height: 160px;
    padding: 22px 20px;
}

.astrolua-daily-icon {
    margin-bottom: 11px;
}

.astrolua-daily-card h3 {
    margin-bottom: 7px;
}

.astrolua-daily-card p {
    line-height: 1.55;
}

.astrolua-daily-guidance {
    min-height: auto;
    padding: 20px 22px;
    grid-template-columns: auto 135px 1fr;
}


/* =========================================================
   EXPLORE ASTROLUA
========================================================= */

.astrolua-experiences {
    padding: 68px 0;
}

.astrolua-category-grid {
    gap: 18px;
}

.astrolua-category-card {
    min-height: 250px;
    padding: 30px;
}

.astrolua-category-symbol {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    font-size: 25px;
}

.astrolua-category-card h3 {
    margin-bottom: 9px;
}

.astrolua-category-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}


/* =========================================================
   FEATURED
========================================================= */

.astrolua-featured {
    padding: 68px 0;
}

.astrolua-featured-grid {
    gap: 16px;
}

.astrolua-featured-card {
    min-height: 235px;
    padding: 28px 26px 26px;
}

.astrolua-featured-symbol {
    margin-bottom: 16px;
}

.astrolua-featured-card h3 {
    margin-bottom: 9px;
}

.astrolua-featured-card p {
    margin-bottom: 18px;
    line-height: 1.6;
}


/* =========================================================
   STARS
========================================================= */

.astrolua-stars {
    padding: 58px 24px 70px;
}

.astrolua-stars-inner {
    padding: 34px 40px;
    gap: 24px;
}

.astrolua-stars-symbol {
    width: 62px;
    height: 62px;
    font-size: 29px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .astrolua-hero {
        min-height: 470px;
    }

    .astrolua-personal {
        padding: 46px 0;
    }

    .astrolua-daily,
    .astrolua-experiences,
    .astrolua-featured {
        padding: 58px 0;
    }

    .astrolua-category-card {
        min-height: 235px;
    }

    .astrolua-featured-card {
        min-height: 210px;
    }

    .astrolua-stars {
        padding: 52px 24px 64px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .astrolua-hero {
        padding: 104px 0 54px;
    }

    .astrolua-hero-symbol {
        margin-bottom: 16px;
    }

    .astrolua-hero h1 {
        margin-bottom: 14px;
    }

    .astrolua-hero-actions {
        margin-top: 22px;
    }


    .astrolua-personal {
        padding: 40px 0;
    }

    .astrolua-personal-grid {
        gap: 14px;
    }

    .astrolua-welcome-card {
        padding: 25px 22px;
    }

    .astrolua-mood {
        margin-top: 17px;
    }

    .astrolua-moon-card {
        padding: 24px 22px;
    }


    .astrolua-daily {
        padding: 52px 0 56px;
    }

    .astrolua-section-heading {
        margin-bottom: 28px;
    }

    .astrolua-sign-card {
        padding: 25px 22px;
        gap: 18px;
    }

    .astrolua-daily-card {
        padding: 20px 19px;
    }


    .astrolua-experiences {
        padding: 54px 0;
    }

    .astrolua-category-grid {
        gap: 14px;
    }

    .astrolua-category-card {
        min-height: 220px;
        padding: 25px 22px;
    }

    .astrolua-category-symbol {
        margin-bottom: 17px;
    }


    .astrolua-featured {
        padding: 54px 0;
    }

    .astrolua-featured-grid {
        gap: 14px;
    }

    .astrolua-featured-card {
        min-height: 190px;
        padding: 24px 22px;
    }


    .astrolua-stars {
        padding: 48px 16px 58px;
    }

    .astrolua-stars-inner {
        padding: 28px 22px;
        gap: 16px;
    }


    .astrolua-ai {
        right: 12px;
        bottom: 14px;
    }

    .astrolua-ai-button {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .astrolua-ai-panel {
        bottom: 66px;
    }

}