/* ============================================================ */
/*  🔒 FULLY SCOPED — all rules live under .astro-section       */
/*  Zero bleed to any other section on the page                 */
/* ============================================================ */

/* ─── FONT IMPORT ─── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ─── SCOPED RESET (only inside .astro-section) ─── */
.astro-section *,
.astro-section *::before,
.astro-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.astro-section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

/* ══════════════════════════════════════════
   HERO CARD
══════════════════════════════════════════ */
.astro-section .astro-hero {
    background: radial-gradient(ellipse at 30% 50%, #1e1060 0%, #0d0a2e 50%, #07051a 100%);
    border-radius: clamp(16px, 3vw, 32px);
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 70px);
    width: min(97%, 1440px);
    margin: 20px auto;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

/* ─── STAR FIELD ─── */
.astro-section .astro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 215, 0, 0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 120px 120px, 200px 200px, 80px 80px;
    background-position: 0 0, 60px 90px, 30px 45px;
    opacity: 0.25;
    pointer-events: none;
    animation: astroStarTwinkle 6s ease-in-out infinite alternate;
}

/* ─── TOP-RIGHT GLOW ORB ─── */
.astro-section .astro-hero::after {
    content: '';
    position: absolute;
    width: clamp(300px, 50vw, 650px);
    height: clamp(300px, 50vw, 650px);
    background: radial-gradient(circle, rgba(120, 80, 255, 0.18) 0%, rgba(255, 140, 0, 0.08) 50%, transparent 70%);
    top: -20%;
    right: -15%;
    border-radius: 50%;
    animation: astroPulseOrb 10s ease-in-out infinite alternate;
    pointer-events: none;
}

/* ══════════════════════════════════════════
   DECORATIVE ELEMENTS
══════════════════════════════════════════ */

/* Bottom-left glow orb */
.astro-section .astro-glow-left {
    position: absolute;
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    border-radius: 50%;
    animation: astroPulseOrb 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* Decorative ring */
.astro-section .astro-deco-ring {
    position: absolute;
    width: clamp(120px, 20vw, 280px);
    height: clamp(120px, 20vw, 280px);
    border: 1px solid rgba(255, 215, 0, 0.06);
    border-radius: 50%;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    animation: astroSlowSpin 40s linear infinite;
    pointer-events: none;
}

.astro-section .astro-deco-ring::before {
    content: '';
    position: absolute;
    inset: -30px;
    border: 1px dashed rgba(255, 140, 0, 0.05);
    border-radius: 50%;
    animation: astroSlowSpinReverse 60s linear infinite;
}

/* Floating particles */
.astro-section .astro-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.astro-section .astro-particle.p1 { top: 20%; left: 15%; animation: astroFloatParticle 8s ease-in-out infinite; }
.astro-section .astro-particle.p2 { top: 60%; right: 20%; animation: astroFloatParticle 11s ease-in-out 2s infinite reverse; }
.astro-section .astro-particle.p3 { top: 40%; left: 40%; animation: astroFloatParticle 9s ease-in-out 4s infinite; }
.astro-section .astro-particle.p4 { bottom: 25%; right: 35%; animation: astroFloatParticle 7s ease-in-out 1s infinite reverse; }
.astro-section .astro-particle.p5 { top: 15%; right: 40%; animation: astroFloatParticle 13s ease-in-out 3s infinite; }
.astro-section .astro-particle.p6 { bottom: 15%; left: 30%; animation: astroFloatParticle 10s ease-in-out 5s infinite reverse; }

/* ══════════════════════════════════════════
   MAIN LAYOUT GRID
══════════════════════════════════════════ */
.astro-section .astro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════
   IMAGE COLUMN
══════════════════════════════════════════ */
.astro-section .astro-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Image wrapper */
.astro-section .astro-circle-wrapper {
    position: relative;
    width: clamp(220px, 35vw, 420px);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    animation: astroFloat 6s ease-in-out infinite;
}

/* Gradient border ring */
.astro-section .astro-chakra-ring {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ff00cc, #7b2fff, #ffd700);
    background-size: 300% 300%;
    animation: astroGradientShift 6s ease infinite, astroRotateFwd 20s linear infinite;
    filter: blur(6px);
    opacity: 0.7;
}

.astro-section .astro-chakra-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 30px;
    border: 1.5px dashed rgba(255, 215, 0, 0.3);
    animation: astroRotateRev 15s linear infinite;
}

.astro-section .astro-chakra-ring::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: #0d0a2e;
    border-radius: 18px;
}

/* Carousel */
.astro-section .astro-carousel {
    position: absolute;
    inset: 8px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
}

.astro-section .astro-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 1.5s ease;
}

.astro-section .astro-img.active {
    opacity: 1;
    transform: scale(1);
}

/* Zodiac orbit ring */
.astro-section .astro-zodiac-orbit {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    animation: astroOrbitSpin 25s linear infinite;
    pointer-events: none;
}

.astro-section .astro-z-badge {
    position: absolute;
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(4px);
    animation: astroCounterSpin 25s linear infinite;
}

.astro-section .astro-z-badge:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, 0); }
.astro-section .astro-z-badge:nth-child(2) { top: 50%; right: 0; transform: translate(0, -50%); }
.astro-section .astro-z-badge:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 0); }
.astro-section .astro-z-badge:nth-child(4) { top: 50%; left: 0; transform: translate(0, -50%); }

/* Floating info badges on image */
.astro-section .astro-float-badge {
    position: absolute;
    background: rgba(13, 10, 46, 0.88);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(12px);
    z-index: 5;
    font-size: 12px;
    pointer-events: none;
}

.astro-section .astro-float-badge.fb-top {
    top: -16px;
    right: 10%;
    animation: astroBadgeFloat 6s ease-in-out infinite;
    animation-delay: -2s;
}

.astro-section .astro-float-badge.fb-bottom {
    bottom: -16px;
    left: 5%;
    animation: astroBadgeFloat 6s ease-in-out infinite;
}

.astro-section .astro-float-badge .fb-label {
    color: #888;
    font-size: 10px;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.astro-section .astro-float-badge .fb-value {
    color: #ffd700;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* Stats row below image */
.astro-section .astro-stats-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.astro-section .astro-stat-pill {
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: clamp(11px, 1.1vw, 13px);
    color: #e0c97f;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    animation: astroFadeInUp 0.6s ease both;
}

.astro-section .astro-stat-pill:nth-child(1) { animation-delay: 0.2s; }
.astro-section .astro-stat-pill:nth-child(2) { animation-delay: 0.4s; }
.astro-section .astro-stat-pill:nth-child(3) { animation-delay: 0.6s; }

.astro-section .astro-stat-pill .s-num {
    font-weight: 700;
    color: #ffd700;
    font-size: clamp(13px, 1.3vw, 15px);
}

/* ══════════════════════════════════════════
   TEXT COLUMN
══════════════════════════════════════════ */
.astro-section .astro-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Eyebrow label */
.astro-section .astro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: clamp(11px, 1vw, 13px);
    color: #ffd700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
    animation: astroFadeInUp 0.5s ease both;
}

.astro-section .astro-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: astroBlink 2s ease-in-out infinite;
}

/* Main title */
.astro-section .astro-left h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(26px, 4vw, 54px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    animation: astroFadeInUp 0.6s ease 0.1s both;
}

.astro-section .astro-left h1 .astro-gold {
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ffec6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: astroShimmerText 4s ease infinite;
}

/* Description */
.astro-section .astro-desc {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #b0a8d0;
    line-height: 1.8;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    animation: astroFadeInUp 0.6s ease 0.2s both;
}

/* Zodiac chips */
.astro-section .astro-zodiac-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    animation: astroFadeInUp 0.6s ease 0.25s both;
}

.astro-section .astro-z-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px 12px 5px 8px;
    font-size: 11px;
    color: #9990c0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: default;
    font-family: 'Poppins', sans-serif;
}

.astro-section .astro-z-chip:hover {
    background: rgba(255, 215, 0, 0.07);
    border-color: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateY(-2px);
}

.astro-section .astro-z-chip .zi {
    font-size: 14px;
}

/* Feature pills */
.astro-section .astro-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    animation: astroFadeInUp 0.6s ease 0.3s both;
}

.astro-section .astro-feat-pill {
    background: rgba(120, 80, 255, 0.12);
    border: 1px solid rgba(120, 80, 255, 0.25);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: clamp(11px, 1vw, 13px);
    color: #c4b5fd;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: default;
    font-family: 'Poppins', sans-serif;
}

.astro-section .astro-feat-pill:hover {
    background: rgba(120, 80, 255, 0.22);
    border-color: rgba(120, 80, 255, 0.5);
    transform: translateY(-2px);
}

.astro-section .astro-feat-pill .feat-icon {
    font-size: 14px;
}

/* Extra description block */
.astro-section .astro-extra {
    font-size: clamp(12px, 1.1vw, 14px);
    color: #8a82a8;
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 0 8px 8px 0;
    font-family: 'Poppins', sans-serif;
    animation: astroFadeInUp 0.6s ease 0.35s both;
}

.astro-section .astro-extra strong {
    color: #c4b5fd;
}

/* CTA row */
.astro-section .astro-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 20px;
    animation: astroFadeInUp 0.6s ease 0.4s both;
}

/* Primary button */
.astro-section .astro-btn {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    padding: clamp(13px, 1.8vw, 16px) clamp(24px, 3.5vw, 40px);
    border: none;
    border-radius: 50px;
    color: #1a0a00;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.astro-section .astro-btn::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    top: -100%;
    left: -100%;
    transition: 0.6s;
}

.astro-section .astro-btn:hover::before {
    top: 100%;
    left: 100%;
}

.astro-section .astro-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.5);
}

/* Outline button */
.astro-section .astro-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: clamp(12px, 1.7vw, 15px) clamp(20px, 3vw, 34px);
    border-radius: 50px;
    color: #ffd700;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.astro-section .astro-btn-outline:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.7);
    transform: translateY(-3px);
}

.astro-section .astro-play-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding-left: 2px;
}

/* Trust bar */
.astro-section .astro-trust {
    font-size: clamp(11px, 1vw, 13px);
    color: #6b6488;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    animation: astroFadeInUp 0.6s ease 0.5s both;
}

.astro-section .astro-trust-sep {
    color: #3a3458;
}

/* ══════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════ */
.astro-section .astro-marquee-wrap {
    margin-top: clamp(30px, 4vw, 50px);
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    padding-top: clamp(20px, 3vw, 32px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.astro-section .astro-marquee-wrap::before,
.astro-section .astro-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.astro-section .astro-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0d0a2e, transparent);
}

.astro-section .astro-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0d0a2e, transparent);
}

.astro-section .astro-marquee-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a4268;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.astro-section .astro-marquee-track {
    display: flex;
    gap: 0;
    animation: astroMarqueeScroll 28s linear infinite;
    width: max-content;
}

.astro-section .astro-marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    white-space: nowrap;
    font-size: clamp(12px, 1.1vw, 14px);
    color: #8a82a8;
    border-right: 1px solid rgba(255, 215, 0, 0.08);
    font-family: 'Poppins', sans-serif;
}

.astro-section .astro-marquee-item .m-icon {
    font-size: 18px;
    opacity: 0.7;
}

.astro-section .astro-marquee-item strong {
    color: #c4b5fd;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   FLOATING CTA BUTTON
══════════════════════════════════════════ */
.astro-section .astro-sticky-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    color: #1a0a00;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: astroFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.astro-section .astro-sticky-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.7);
}

/* ══════════════════════════════════════════
   KEYFRAME ANIMATIONS
   (prefixed with "astro" to avoid collisions)
══════════════════════════════════════════ */
@keyframes astroRotateFwd {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes astroRotateRev {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes astroSlowSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

@keyframes astroSlowSpinReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes astroOrbitSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes astroCounterSpin {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes astroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

@keyframes astroPulseOrb {
    0%   { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.15); }
}

@keyframes astroStarTwinkle {
    0%   { opacity: 0.18; }
    100% { opacity: 0.30; }
}

@keyframes astroFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes astroBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

@keyframes astroShimmerText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes astroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes astroFloatParticle {
    0%, 100% { transform: translateY(0) scale(1);   opacity: 0.5; }
    50%       { transform: translateY(-25px) scale(1.5); opacity: 1; }
}

@keyframes astroBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes astroMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .astro-section .astro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .astro-section .astro-right {
        order: -1;
    }

    .astro-section .astro-eyebrow,
    .astro-section .astro-feature-row,
    .astro-section .astro-zodiac-row,
    .astro-section .astro-cta,
    .astro-section .astro-trust,
    .astro-section .astro-stats-row {
        justify-content: center;
    }

    .astro-section .astro-extra {
        text-align: left;
    }

    .astro-section .astro-deco-ring {
        display: none;
    }
}

@media (max-width: 500px) {
    .astro-section .astro-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .astro-section .astro-btn,
    .astro-section .astro-btn-outline {
        text-align: center;
        justify-content: center;
    }
}