/* ============================================
   index-page.css — Styles unique to index.html
   Base styles loaded from: global.css
   Header styles loaded from: components/header.css
   Card styles loaded from: advisor-card.css
   ============================================ */

/* Special Section (blog teaser grid on homepage) */
.special-section {
    width: 100%;
    padding: 4rem 1rem;
}

.special-section .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.special-section h2 {
    margin: 0;
    text-align: left;
}

.special-section-subtitle {
    margin: 0;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
}

.special-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}

.special-content-card {
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background:
        radial-gradient(130% 180% at 100% 0%, rgba(124, 76, 255, 0.22) 0%, rgba(124, 76, 255, 0) 55%),
        rgba(20, 16, 44, 0.88);
    overflow: hidden;
    color: var(--text-primary);
    text-decoration: none;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.special-content-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 76, 255, 0.72);
    box-shadow: 0 16px 30px rgba(8, 8, 26, 0.34);
}

.special-content-category {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(124, 76, 255, 0.24);
    padding: 0.22rem 0.55rem;
    margin-bottom: 0.72rem;
}

.special-content-title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.special-content-excerpt {
    margin: 0.55rem 0 0;
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.special-content-meta {
    margin-top: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: rgba(244, 242, 252, 0.78);
}

.special-content-placeholder {
    grid-column: 1 / -1;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 1.1rem;
    color: var(--text-secondary);
}

/* Hero — index-specific */
.hero h1 {
    margin-bottom: 1.1rem;
    max-width: 16ch;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.018em;
    text-align: center;
    text-wrap: balance;
    color: rgba(248, 243, 255, 0.96);
    text-shadow:
        0 10px 28px rgba(7, 5, 28, 0.32),
        0 0 20px rgba(199, 175, 255, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    isolation: isolate;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-twinkles,
.hero-orb-glow,
.hero-orb-stardust {
    position: absolute;
    pointer-events: none;
}

.hero-orb-glow {
    right: clamp(8%, 14vw, 16%);
    bottom: clamp(2.5rem, 6vw, 5.5rem);
    width: clamp(160px, 19vw, 260px);
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.46;
    background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.18) 0%, rgba(208, 182, 255, 0.13) 20%, rgba(168, 126, 255, 0.08) 44%, rgba(130, 94, 255, 0.03) 58%, transparent 72%);
    filter: blur(1px);
    animation: heroOrbPulse 9s ease-in-out infinite;
}

.hero-orb-glow::before,
.hero-orb-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.hero-orb-glow::before {
    inset: 10%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 22%),
        conic-gradient(from 0deg, rgba(255, 255, 255, 0.06), rgba(165, 126, 255, 0.02), rgba(255, 255, 255, 0.08), rgba(165, 126, 255, 0.02), rgba(255, 255, 255, 0.06));
    mix-blend-mode: screen;
    opacity: 0.45;
    animation: heroOrbSheen 18s linear infinite;
}

.hero-orb-glow::after {
    inset: -8%;
    border: 1px solid rgba(231, 224, 255, 0.08);
    opacity: 0.45;
    animation: heroOrbHalo 12s ease-in-out infinite;
}

.hero-orb-stardust {
    right: clamp(10.2%, 15.4vw, 17.1%);
    bottom: clamp(3.5rem, 6.8vw, 6.3rem);
    width: clamp(118px, 14.2vw, 188px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.74;
    filter: drop-shadow(0 0 14px rgba(213, 191, 255, 0.16));
}

.hero-orb-stardust::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.16) 0%, rgba(240, 226, 255, 0.05) 28%, transparent 62%),
        radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 20%);
    opacity: 0.62;
}

.hero-orb-starfall {
    --starfall-left: 50%;
    --starfall-width: 1.4px;
    --starfall-height: 20px;
    --starfall-duration: 12s;
    --starfall-delay: 0s;
    --starfall-drift: -6px;
    position: absolute;
    top: -20%;
    left: var(--starfall-left);
    width: var(--starfall-width);
    height: var(--starfall-height);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(252, 247, 255, 0.9) 35%, rgba(193, 161, 255, 0.35) 80%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: translate3d(-50%, -125%, 0) rotate(10deg);
    box-shadow: 0 0 10px rgba(225, 205, 255, 0.16);
    animation: heroOrbStarfall var(--starfall-duration) linear infinite;
    animation-delay: var(--starfall-delay);
    will-change: transform, opacity;
}

.hero-orb-starfall::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 8px rgba(223, 203, 255, 0.34);
    transform: translateX(-50%);
}

.hero-orb-starfall:nth-child(1) {
    --starfall-left: 18%;
    --starfall-width: 1.2px;
    --starfall-height: 16px;
    --starfall-duration: 14.4s;
    --starfall-delay: -2.3s;
    --starfall-drift: -5px;
}

.hero-orb-starfall:nth-child(2) {
    --starfall-left: 27%;
    --starfall-width: 1.6px;
    --starfall-height: 22px;
    --starfall-duration: 12.2s;
    --starfall-delay: -8.1s;
    --starfall-drift: -8px;
}

.hero-orb-starfall:nth-child(3) {
    --starfall-left: 35%;
    --starfall-width: 1.4px;
    --starfall-height: 18px;
    --starfall-duration: 13.6s;
    --starfall-delay: -4.7s;
    --starfall-drift: -4px;
}

.hero-orb-starfall:nth-child(4) {
    --starfall-left: 44%;
    --starfall-width: 1.2px;
    --starfall-height: 14px;
    --starfall-duration: 11.8s;
    --starfall-delay: -6.9s;
    --starfall-drift: -6px;
}

.hero-orb-starfall:nth-child(5) {
    --starfall-left: 52%;
    --starfall-width: 1.5px;
    --starfall-height: 20px;
    --starfall-duration: 13.1s;
    --starfall-delay: -1.4s;
    --starfall-drift: -7px;
}

.hero-orb-starfall:nth-child(6) {
    --starfall-left: 61%;
    --starfall-width: 1.3px;
    --starfall-height: 17px;
    --starfall-duration: 12.7s;
    --starfall-delay: -9.2s;
    --starfall-drift: -5px;
}

.hero-orb-starfall:nth-child(7) {
    --starfall-left: 69%;
    --starfall-width: 1.7px;
    --starfall-height: 24px;
    --starfall-duration: 14.8s;
    --starfall-delay: -5.5s;
    --starfall-drift: -9px;
}

.hero-orb-starfall:nth-child(8) {
    --starfall-left: 76%;
    --starfall-width: 1.2px;
    --starfall-height: 15px;
    --starfall-duration: 11.4s;
    --starfall-delay: -3.8s;
    --starfall-drift: -4px;
}

.hero-orb-starfall:nth-child(9) {
    --starfall-left: 83%;
    --starfall-width: 1.4px;
    --starfall-height: 19px;
    --starfall-duration: 13.9s;
    --starfall-delay: -7.3s;
    --starfall-drift: -7px;
}

.hero-orb-starfall:nth-child(10) {
    --starfall-left: 88%;
    --starfall-width: 1.1px;
    --starfall-height: 13px;
    --starfall-duration: 10.9s;
    --starfall-delay: -2.9s;
    --starfall-drift: -3px;
}

.hero-twinkles {
    inset: 0;
    z-index: 1;
}

.hero-twinkle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(210, 190, 255, 0.68) 38%, transparent 75%);
    box-shadow: 0 0 10px rgba(206, 188, 255, 0.18);
    opacity: 0;
    animation: heroTwinklePulse 10s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-twinkle::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.hero-twinkles .hero-twinkle:nth-child(1) {
    top: 16%;
    left: 11%;
    width: 3px;
    height: 3px;
    animation-duration: 12s;
    animation-delay: 1.6s;
}

.hero-twinkles .hero-twinkle:nth-child(2) {
    top: 24%;
    left: 21%;
    width: 2.2px;
    height: 2.2px;
    animation-duration: 10.8s;
    animation-delay: 5.2s;
}

.hero-twinkles .hero-twinkle:nth-child(3) {
    top: 10%;
    left: 37%;
    width: 2.8px;
    height: 2.8px;
    animation-duration: 9.6s;
    animation-delay: 2.8s;
}

.hero-twinkles .hero-twinkle:nth-child(4) {
    top: 34%;
    left: 57%;
    width: 3.2px;
    height: 3.2px;
    animation-duration: 11.2s;
    animation-delay: 7s;
}

.hero-twinkles .hero-twinkle:nth-child(5) {
    top: 17%;
    left: 72%;
    width: 2.4px;
    height: 2.4px;
    animation-duration: 13s;
    animation-delay: 4.2s;
}

.hero-twinkles .hero-twinkle:nth-child(6) {
    top: 47%;
    left: 82%;
    width: 3.6px;
    height: 3.6px;
    animation-duration: 12.4s;
    animation-delay: 8.4s;
}

.hero-twinkles .hero-twinkle:nth-child(7) {
    top: 62%;
    left: 68%;
    width: 2.4px;
    height: 2.4px;
    animation-duration: 11.6s;
    animation-delay: 3.6s;
}

.hero-twinkles .hero-twinkle:nth-child(8) {
    top: 74%;
    left: 28%;
    width: 2.8px;
    height: 2.8px;
    animation-duration: 14s;
    animation-delay: 6.4s;
}

.hero-twinkles .hero-twinkle:nth-child(9) {
    top: 12%;
    left: 49%;
    width: 2.6px;
    height: 2.6px;
    animation-duration: 10.4s;
    animation-delay: 1.1s;
}

.hero-twinkles .hero-twinkle:nth-child(10) {
    top: 28%;
    left: 66%;
    width: 3.1px;
    height: 3.1px;
    animation-duration: 12.8s;
    animation-delay: 9.2s;
}

.hero-twinkles .hero-twinkle:nth-child(11) {
    top: 56%;
    left: 19%;
    width: 2.2px;
    height: 2.2px;
    animation-duration: 11.2s;
    animation-delay: 4.9s;
}

.hero-twinkles .hero-twinkle:nth-child(12) {
    top: 79%;
    left: 58%;
    width: 3px;
    height: 3px;
    animation-duration: 13.6s;
    animation-delay: 7.6s;
}

.hero-search-container {
    width: min(680px, 100%);
    margin-top: clamp(2.4rem, 22vh, 6rem);
    position: relative;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 64px;
    padding: 0.55rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(19, 14, 53, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-search-icon {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    color: rgba(240, 234, 255, 0.56);
    flex-shrink: 0;
}

.hero-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    font-family: var(--font-primary);
    font-weight: 500;
}

.hero-search-input::placeholder {
    color: rgba(225, 218, 244, 0.58);
}

.hero-search-input:focus {
    outline: none;
}

.hero-search-submit {
    border: 0;
    border-radius: 10px;
    padding: 0.68rem 1rem;
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    transition: background-color 0.2s ease;
}

.hero-search-submit:hover {
    background: #6b3fe6;
}

.hero-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    max-height: min(380px, 55vh);
    overflow-y: auto;
    border: 1px solid rgba(124, 76, 255, 0.35);
    border-radius: 14px;
    background: rgba(14, 10, 42, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    z-index: 35;
    display: none;
}

.hero-search-dropdown.active {
    display: block;
}

.sparkle {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 8px rgba(191, 171, 255, 0.22);
    opacity: 0;
    animation: heroAmbientSparkle 10s ease-in-out infinite;
}

@keyframes heroOrbPulse {
    0%, 100% {
        transform: scale(0.985);
        opacity: 0.38;
        filter: blur(1px);
    }

    50% {
        transform: scale(1.02);
        opacity: 0.58;
        filter: blur(0.2px);
    }
}

@keyframes heroOrbSheen {
    from {
        transform: rotate(0deg) scale(0.98);
    }

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

@keyframes heroOrbHalo {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.16;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.3;
    }
}

@keyframes heroOrbStarfall {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -125%, 0) rotate(10deg);
    }

    10% {
        opacity: 0;
        transform: translate3d(-50%, -110%, 0) rotate(10deg);
    }

    22% {
        opacity: 0.62;
    }

    74% {
        opacity: 0.16;
    }

    100% {
        opacity: 0;
        transform: translate3d(calc(-50% + var(--starfall-drift)), 190%, 0) rotate(10deg);
    }
}

@keyframes heroTwinklePulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.35);
    }

    14% {
        opacity: 0;
        transform: scale(0.35);
    }

    24% {
        opacity: 0.62;
        transform: scale(1);
    }

    36% {
        opacity: 0.12;
        transform: scale(0.72);
    }
}

@keyframes heroAmbientSparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.2);
    }

    18% {
        opacity: 0;
        transform: scale(0.2);
    }

    26% {
        opacity: 0.46;
        transform: scale(1);
    }

    42% {
        opacity: 0.08;
        transform: scale(0.65);
    }
}

/* Search Bar */
.search-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 3rem;
    position: relative;
    padding: 0 1rem;
    padding-left:  max(1rem, env(safe-area-inset-left, 1rem));
    padding-right: max(1rem, env(safe-area-inset-right, 1rem));
}

.search-bar {
    display: flex;
    gap: 1rem;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    min-width: 0;
}

.search-input::placeholder {
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--accent-primary);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #6B3FE6;
}

/* Section entrance animation */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.section-title-link:hover {
    color: var(--accent-primary);
}

.section-title-link:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.tarot-focus-section {
    margin-bottom: 2.25rem;
}

.tarot-focus-header {
    margin-bottom: 0.75rem;
}

.tarot-focus-description {
    margin-bottom: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 1120px;
}

.tarot-advisors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tarot-advisors-grid .advisor-card {
    max-width: 100%;
}

.tarot-advisors-grid .advisor-card .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tarot-advisors-grid .hsd-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
    padding: 1rem;
}

.lgbtq-focus-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.25rem;
}

.lgbtq-focus-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.lgbtq-focus-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 0.85rem;
}

.lgbtq-focus-gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: repeat(2, minmax(132px, 1fr));
    gap: 0.75rem;
    min-height: 276px;
}

.lgbtq-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(124, 76, 255, 0.14), rgba(255, 255, 255, 0.05));
    box-shadow: 0 18px 36px rgba(8, 10, 25, 0.26);
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.lgbtq-gallery-card.is-placeholder {
    background:
        radial-gradient(circle at 25% 24%, rgba(255, 255, 255, 0.2), transparent 8%),
        linear-gradient(135deg, rgba(124, 76, 255, 0.16), rgba(236, 72, 153, 0.08));
}

.lgbtq-gallery-card-1 {
    grid-row: 1 / span 2;
}

.lgbtq-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lgbtq-gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1rem 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(11, 12, 31, 0.88));
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lgbtq-gallery-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.lgbtq-gallery-role {
    font-size: 0.78rem;
    color: rgba(235, 230, 255, 0.8);
}

.star-advisor-section {
    margin-bottom: 2.2rem;
}

.star-advisor-header {
    margin-bottom: 0.8rem;
}

.star-advisor-slot .hsd-empty {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
    padding: 1rem;
}

.star-advisor-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(124, 76, 255, 0.05));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.star-advisor-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 76, 255, 0.55);
    box-shadow: 0 16px 36px rgba(9, 10, 26, 0.34);
}

.star-advisor-media {
    position: relative;
    min-height: 100%;
    background: rgba(9, 10, 26, 0.45);
}

.star-advisor-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.star-advisor-name {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.05;
}

.star-advisor-title-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.star-advisor-title {
    margin: 0.2rem 0 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.star-advisor-status {
    border-radius: 999px;
    padding: 0.22rem 0.64rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.star-advisor-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.star-advisor-status.online {
    background: rgba(52, 199, 89, 0.2);
    border: 1px solid rgba(52, 199, 89, 0.6);
    color: #8ff0ad;
}

.star-advisor-status.busy {
    background: rgba(255, 149, 0, 0.2);
    border: 1px solid rgba(255, 149, 0, 0.6);
    color: #ffd18b;
}

.star-advisor-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 1.05rem 1.1rem 0.95rem 0;
}

.star-advisor-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.star-advisor-name {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.05;
}

.star-advisor-title {
    margin: 0.2rem 0 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.star-rating {
    flex-shrink: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 210, 106, 0.42);
    background: rgba(255, 210, 106, 0.17);
    color: #ffe08f;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
}

.star-advisor-description {
    margin: 0;
    color: rgba(247, 246, 255, 0.88);
    line-height: 1.55;
    font-size: 0.98rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-height: 15.2rem;
    overflow: hidden;
}

.star-advisor-description-heading {
    margin: 0;
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.96rem;
    line-height: 1.35;
    font-weight: 700;
}

.star-advisor-description p {
    margin: 0;
}

.star-advisor-description-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.3rem;
}

.star-advisor-description-list li {
    margin: 0;
}

.star-advisor-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 0.95rem;
}

.star-advisor-meta {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.star-advisor-price {
    order: 2;
    font-size: 0.96rem;
    font-weight: 600;
    color: rgba(177, 156, 255, 0.92);
    letter-spacing: 0.01em;
}

.star-advisor-readings {
    order: 1;
    color: rgba(247, 246, 255, 0.96);
    font-size: 1.28rem;
    font-weight: 700;
}

.star-advisor-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(220, 215, 246, 0.88);
}

.star-advisor-action-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.star-advisor-action-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Promo Credit Banner */
.promo-credit-section {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

.promo-credit-banner {
    width: min(935px, 100%);
    min-height: 130px;
    margin: 0 auto;
    border: 1px solid rgba(124, 76, 255, 0.45);
    border-radius: 22px;
    padding: 1.25rem 1.5rem;
    background:
        radial-gradient(130% 180% at 92% 6%, rgba(124, 76, 255, 0.37) 0%, rgba(124, 76, 255, 0) 62%),
        linear-gradient(135deg, rgba(23, 21, 49, 0.95), rgba(31, 27, 65, 0.97));
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(9, 10, 26, 0.42);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.promo-credit-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 76, 255, 0.72);
    box-shadow: 0 16px 44px rgba(74, 45, 156, 0.32);
}

.promo-credit-kicker {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(240, 233, 255, 0.92);
}

.promo-credit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.promo-credit-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
}

.promo-credit-bonus-pill {
    align-self: flex-start;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(157, 101, 255, 0.34);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 2;
}

.promo-credit-glow {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(173, 120, 255, 0.42) 0%, rgba(173, 120, 255, 0) 72%);
    z-index: 1;
}

.hero-categories-section {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.hero-categories-section .categories {
    margin: 0;
}

/* About Section */
.about-content {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 0 0 auto;
    width: clamp(90px, 14vw, 120px); /* fluid width: 90px–120px */
    min-height: 44px; /* WCAG touch target minimum */
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 76, 255, 0.4);
    border-color: var(--accent-primary);
    background: rgba(124, 76, 255, 0.08);
}

.feature-item:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 4px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.feature-item:hover .feature-icon svg {
    fill: var(--accent-primary);
    filter: drop-shadow(0 0 15px rgba(124, 76, 255, 0.8)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.1);
}

.feature-item h3 {
    color: white !important;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Social Login (auth modals) */
.social-login {
    margin: 2rem 0;
    text-align: center;
}

.social-divider {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.social-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--accent-primary);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Heading Links */
.heading-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.heading-link:hover {
    color: var(--accent-primary);
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Enhanced Glass Shimmer (index-specific) */
.glass {
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.glass:hover::before {
    left: 100%;
}

/* ============================================
   Responsive — index-specific overrides
   ============================================ */
@media (max-width: 768px) {
    /* Hero */
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.15rem; margin-bottom: 0.85rem; line-height: 1.1; max-width: 15ch; }
    .hero-subtitle { font-size: 1rem; }

    .hero-search-container {
        margin-top: clamp(1.4rem, 12vh, 3.2rem);
    }

    .hero-search-bar {
        min-height: 58px;
        border-radius: 14px;
        padding: 0.45rem;
        gap: 0.45rem;
    }

    .hero-search-icon {
        margin-left: 0.4rem;
        width: 18px;
        height: 18px;
    }

    .hero-search-input {
        font-size: 0.95rem;
        padding-right: 0;
        min-width: 0;
    }

    .hero-search-submit {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 38px;
        border-radius: 9px;
        width: auto;
        flex-shrink: 0;
    }

    .hero-search-dropdown {
        top: calc(100% + 8px);
    }

    /* Search */
    .search-bar { flex-direction: column; }
    .search-btn { width: 100%; padding: 1rem; }

    /* About */
    .about-content { padding: 2rem 1.5rem; }

    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .feature-icon { width: 60px; height: 60px; }
    .feature-icon svg { width: 30px; height: 30px; }

    .tarot-focus-section {
        margin-bottom: 1.6rem;
    }

    .tarot-focus-header {
        margin-bottom: 0.6rem;
    }

    .tarot-focus-description {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 0.9rem;
    }

    .lgbtq-focus-intro {
        grid-template-columns: 1fr;
    }

    .lgbtq-focus-gallery {
        min-height: 230px;
    }

    .tarot-advisors-grid {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
    }

    .tarot-advisors-grid::-webkit-scrollbar {
        height: 6px;
    }

    .tarot-advisors-grid::-webkit-scrollbar-thumb {
        background: rgba(124, 76, 255, 0.45);
        border-radius: 3px;
    }

    .tarot-advisors-grid .advisor-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
    }

    .lgbtq-focus-badges {
        margin-top: 0.85rem;
    }

    .star-advisor-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .star-advisor-media {
        min-height: 220px;
    }

    .star-advisor-body {
        padding: 0.95rem 1rem 1rem;
    }

    .star-advisor-name {
        font-size: 1.45rem;
    }

    .star-advisor-description {
        font-size: 0.94rem;
        line-height: 1.5;
        gap: 0.38rem;
        max-height: 11.8rem;
    }

    .star-advisor-description-heading {
        font-size: 0.9rem;
    }

    .star-advisor-footer {
        padding-top: 0.85rem;
    }

    .special-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Modals */
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .form-actions { flex-direction: column; gap: 0.75rem; }
    .social-buttons { flex-direction: column; gap: 0.75rem; }

    /* Profile */
    .profile-button { min-width: auto; padding: 0.4rem 0.8rem; }
    .profile-avatar { width: 32px; height: 32px; }
    .profile-info { display: none; }
    .profile-arrow-icon { display: none; }

    .promo-credit-section {
        margin-top: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .promo-credit-banner {
        border-radius: 18px;
        padding: 1rem 1.05rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .promo-credit-title {
        white-space: normal;
    }

    .promo-credit-glow {
        right: -88px;
        bottom: -92px;
    }

    .special-section {
        padding: 3rem 0.75rem;
    }

}

@media (max-width: 768px) and (min-width: 481px) {
    .hero-orb-glow {
        right: 3%;
        bottom: 3rem;
        width: clamp(118px, 22vw, 170px);
        opacity: 0.34;
    }

    .hero-orb-stardust {
        right: 5.2%;
        bottom: 3.8rem;
        width: clamp(86px, 15vw, 126px);
        opacity: 0.64;
    }

    .hero-orb-starfall:nth-child(8),
    .hero-orb-starfall:nth-child(9),
    .hero-orb-starfall:nth-child(10) {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .feature-item { width: 100%; padding: 1.25rem 0.75rem; }
    .feature-icon { width: 52px; height: 52px; }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature-item h3 { font-size: 0.85rem; }
    .feature-item p { font-size: 0.8rem; }

    /* Hero */
    .hero { padding: 4rem 0 2rem; margin-top: 1rem; }
    .hero-content { padding: 0 1rem; padding-top: 1rem; }

    .hero-orb-glow {
        right: 2%;
        bottom: 2.1rem;
        width: 108px;
        opacity: 0.28;
    }

    .hero-orb-stardust {
        right: 4.4%;
        bottom: 2.95rem;
        width: 82px;
        opacity: 0.56;
    }

    .hero-orb-starfall:nth-child(6),
    .hero-orb-starfall:nth-child(7),
    .hero-orb-starfall:nth-child(8),
    .hero-orb-starfall:nth-child(9),
    .hero-orb-starfall:nth-child(10) {
        display: none;
    }

    .hero-twinkles .hero-twinkle:nth-child(6),
    .hero-twinkles .hero-twinkle:nth-child(7),
    .hero-twinkles .hero-twinkle:nth-child(8),
    .hero-twinkles .hero-twinkle:nth-child(9),
    .hero-twinkles .hero-twinkle:nth-child(10),
    .hero-twinkles .hero-twinkle:nth-child(11),
    .hero-twinkles .hero-twinkle:nth-child(12) {
        display: none;
    }

    /* Search */
    .hero-search-container { margin-top: 1.25rem; }
    .hero-search-bar {
        display: flex;
        align-items: center;
        border-radius: 14px;
        padding: 0.5rem;
        gap: 0.4rem;
    }
    .hero-search-icon {
        width: 21px;
        height: 21px;
        margin-left: 0.3rem;
    }
    .hero-search-input {
        font-size: 0.9rem;
    }
    .hero-search-submit {
        width: auto;
        min-height: 36px;
        font-size: 0.76rem;
        padding: 0.45rem 0.65rem;
        border-radius: 10px;
    }

    .hero-search-dropdown {
        left: 0;
        right: 0;
    }

    /* Section headers */
    .section-header { margin-bottom: 1rem; flex-direction: column; gap: 1rem; align-items: flex-start; }
    .section-header h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }

    .promo-credit-kicker { font-size: 0.9rem; }
    .promo-credit-title { font-size: 1.2rem; }

    .tarot-focus-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .tarot-advisors-grid .advisor-card {
        flex: 0 0 calc((100% - 0.75rem) / 2);
        min-width: 0;
        max-width: none;
    }

    .lgbtq-focus-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, minmax(118px, 1fr));
    }

    .lgbtq-gallery-card-1 {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 180px;
    }

    .star-advisor-name {
        font-size: 1.26rem;
    }

    .star-advisor-title {
        font-size: 0.88rem;
    }

    .star-advisor-description {
        font-size: 0.9rem;
        line-height: 1.45;
        gap: 0.34rem;
        max-height: 8.8rem;
    }

    .star-advisor-description-heading {
        font-size: 0.86rem;
    }

    .star-advisor-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .star-advisor-readings {
        font-size: 1rem;
    }

    .star-advisor-price {
        font-size: 0.84rem;
    }

    .star-advisor-media {
        min-height: 188px;
    }

    .star-advisor-body {
        padding: 0.85rem 0.85rem 0.9rem;
    }

    .star-rating {
        font-size: 0.84rem;
        padding: 0.32rem 0.62rem;
    }

    .star-advisor-actions {
        display: none;
    }

    .special-content-grid {
        grid-template-columns: 1fr;
    }

    .special-content-card {
        min-height: 188px;
    }

    /* Sections */
    section { padding: 2.5rem 0; }

    /* About */
    .about-content { padding: 1.5rem 1rem; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb-glow,
    .hero-orb-glow::before,
    .hero-orb-glow::after,
    .hero-orb-starfall,
    .hero-twinkle,
    .sparkle {
        animation: none !important;
    }

    .hero-orb-glow {
        opacity: 0.28;
    }

    .hero-orb-stardust {
        opacity: 0.24;
    }

    .hero-orb-starfall {
        opacity: 0.16;
        transform: translate3d(-50%, 0, 0) rotate(10deg);
    }

    .hero-twinkle {
        opacity: 0.18;
    }
}

@media (max-width: 375px) {
    .hero h1 { font-size: 1.8rem; max-width: 14ch; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .feature-item { padding: 1rem 0.5rem; }
    .feature-item h3 { font-size: 0.8rem; }
}

@media (max-width: 320px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { width: 100%; max-width: 180px; margin: 0 auto; }
}

body {
    --bg-primary: #fcf9ff;
    --bg-secondary: #f4edff;
    --accent-primary: #8b5cf6;
    --text-primary: #2b2145;
    --text-secondary: #71658f;
    --text-muted: #9c90b9;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-hover: rgba(255, 255, 255, 0.94);
    --glass-border: rgba(143, 113, 228, 0.18);
    --glass-border-hover: rgba(143, 113, 228, 0.32);
    --shadow-glow: 0 24px 60px rgba(139, 92, 246, 0.16);
    --shadow-card: 0 18px 48px rgba(111, 92, 170, 0.12);
    --shadow-button: 0 12px 28px rgba(139, 92, 246, 0.2);
    background:
        radial-gradient(78% 54% at 50% 0%, rgba(217, 194, 255, 0.62) 0%, rgba(217, 194, 255, 0) 58%),
        linear-gradient(180deg, #fdfbff 0%, #f6efff 43%, #ffffff 100%);
    color: var(--text-primary);
}

main {
    position: relative;
}

#sparkles-container {
    opacity: 0.5;
}

body #header,
body #header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 16px 40px rgba(126, 92, 197, 0.1);
}

body #header .burger span,
body #header .logo,
body #header .profile-name,
body #header .profile-menu-item,
body #header .header-search-input {
    color: var(--text-primary);
}

body #header .logo svg {
    fill: var(--accent-primary);
}

body #header .profile-arrow,
body #header .header-search-icon,
body #header .header-search-clear {
    color: var(--text-secondary);
}

body #header .profile-button,
body #header .profile-menu,
body #header .header-search-box,
body #header .header-search-dropdown {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 16px 36px rgba(126, 92, 197, 0.08);
}

body #header .profile-button:hover,
body #header .profile-menu-item:hover,
body #header .header-search-box:focus-within,
body #header .hsd-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

body #header .header-search-input::placeholder,
body #header .hsd-title,
body #header .hsd-empty {
    color: var(--text-secondary);
}

body #header .hsd-name {
    color: var(--text-primary);
}

body #header .hsd-dot {
    border-color: rgba(255, 255, 255, 0.95);
}

body #header .nav-right .btn {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(143, 113, 228, 0.16);
    color: var(--text-primary);
    box-shadow: 0 10px 24px rgba(126, 92, 197, 0.08);
}

body #header .nav-right .btn:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-primary);
}

body #header .nav-right .btn.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 28px rgba(139, 92, 246, 0.24);
}

body #header .nav-right .btn.btn-primary:hover {
    background: linear-gradient(135deg, #7c4dff 0%, #9747ff 100%);
    color: #fff;
}

.hero {
    position: relative;
}

.hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(249, 242, 255, 0.44) 44%, rgba(252, 247, 255, 0.9) 100%);
}

.hero h1 {
    color: #2f1f4f;
    text-shadow:
        0 14px 30px rgba(255, 255, 255, 0.45),
        0 6px 16px rgba(140, 110, 215, 0.16);
}

.hero-orb-glow {
    opacity: 0.2;
}

.hero-orb-stardust {
    opacity: 0.22;
    filter: drop-shadow(0 0 12px rgba(181, 144, 255, 0.12));
}

.hero-twinkles {
    opacity: 0.58;
}

.hero-search-bar {
    border-color: rgba(143, 113, 228, 0.18);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 40px rgba(127, 93, 196, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-search-icon {
    color: rgba(97, 84, 140, 0.5);
}

.hero-search-input {
    color: var(--text-primary);
}

.hero-search-input::placeholder {
    color: rgba(113, 101, 143, 0.72);
}

.hero-search-submit,
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 12px 26px rgba(139, 92, 246, 0.22);
}

.hero-search-submit:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #7c4dff 0%, #9747ff 100%);
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.28);
}

.hero-search-dropdown {
    border-color: rgba(143, 113, 228, 0.18);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 46px rgba(111, 92, 170, 0.15);
}

.hero-search-dropdown .hsd-item {
    border-bottom-color: rgba(143, 113, 228, 0.08);
}

.hero-search-dropdown .hsd-item:hover {
    background: rgba(139, 92, 246, 0.08);
}

.hero-search-dropdown .hsd-name {
    color: var(--text-primary);
}

.hero-search-dropdown .hsd-title,
.hero-search-dropdown .hsd-empty {
    color: var(--text-secondary);
}

.hero-search-dropdown .hsd-price {
    color: var(--accent-primary);
}

.hero-search-dropdown .hsd-dot {
    border-color: rgba(255, 255, 255, 0.96);
}

.hero-categories-section {
    margin-top: 0.9rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 14px 30px rgba(126, 92, 197, 0.08);
}

.category-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(139, 92, 246, 0.22);
}

.section-title-link:hover,
.heading-link:hover {
    color: #6f46e8;
}

.tarot-focus-description,
.love-focus-description,
.astrology-focus-description,
.lgbtq-focus-description,
.about-content p,
.special-section-subtitle,
.testimonials-section .section-subtitle,
.testimonials-pause-hint {
    color: var(--text-secondary);
}

.tarot-advisors-grid .advisor-card,
.love-advisors-grid .advisor-card,
.astrology-advisors-grid .advisor-card,
.lgbtq-advisors-grid .advisor-card,
.advisors-carousel .advisor-card {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(143, 113, 228, 0.14);
    box-shadow: 0 16px 38px rgba(111, 92, 170, 0.1);
}

.tarot-advisors-grid .advisor-card:hover,
.love-advisors-grid .advisor-card:hover,
.astrology-advisors-grid .advisor-card:hover,
.lgbtq-advisors-grid .advisor-card:hover,
.advisors-carousel .advisor-card:hover {
    box-shadow: 0 22px 44px rgba(126, 92, 197, 0.16);
}

.advisor-card .card-image {
    background: linear-gradient(135deg, rgba(240, 233, 255, 0.95), rgba(228, 216, 255, 0.68));
}

.advisor-card .rating-badge {
    background: rgba(255, 255, 255, 0.88);
    color: #b7791f;
    box-shadow: 0 8px 18px rgba(111, 92, 170, 0.12);
}

.advisor-card .status-dot {
    border-color: rgba(255, 255, 255, 0.9);
}

.advisor-card .card-title {
    color: var(--text-primary);
}

.advisor-card .card-subtitle,
.advisor-card .card-stats,
.advisor-card .card-description {
    color: var(--text-secondary);
}

.advisor-card .card-footer {
    border-top-color: rgba(143, 113, 228, 0.12);
}

.advisor-card .icon-btn {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(143, 113, 228, 0.16);
    color: var(--text-primary);
}

.advisor-card .icon-btn:hover {
    color: #fff;
}

.star-advisor-slot .hsd-empty,
.about-content,
.special-content-placeholder {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 18px 38px rgba(111, 92, 170, 0.1);
}

.star-advisor-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 238, 255, 0.82));
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 18px 38px rgba(111, 92, 170, 0.1);
}

.star-advisor-card:hover {
    box-shadow: 0 24px 46px rgba(126, 92, 197, 0.16);
}

.star-advisor-media {
    background: rgba(235, 227, 255, 0.7);
}

.star-advisor-title,
.star-advisor-actions {
    color: var(--text-secondary);
}

.star-advisor-description,
.star-advisor-description-heading,
.star-advisor-readings {
    color: var(--text-primary);
}

.star-advisor-footer {
    border-top-color: rgba(143, 113, 228, 0.12);
}

.star-advisor-price {
    color: var(--accent-primary);
}

.star-advisor-action-icon {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(143, 113, 228, 0.16);
}

.trust-section,
.testimonials-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(244, 236, 255, 0.72) 100%);
    border-color: rgba(143, 113, 228, 0.12);
}

.special-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 242, 255, 0.72) 100%);
}

.stat-item,
.badge-item,
.live-testimonial-card,
.special-content-card {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(143, 113, 228, 0.16);
    box-shadow: 0 16px 34px rgba(111, 92, 170, 0.08);
}

.stat-item:hover,
.badge-item:hover,
.live-testimonial-card:hover,
.special-content-card:hover {
    box-shadow: 0 20px 40px rgba(126, 92, 197, 0.14);
}

.trust-interactive.is-expanded {
    box-shadow: 0 18px 38px rgba(139, 92, 246, 0.18);
}

.badge-icon {
    box-shadow: 0 14px 28px rgba(139, 92, 246, 0.18);
}

.testimonials-marquee {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(143, 113, 228, 0.16);
}

.testimonials-marquee::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.testimonials-marquee::after {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.live-testimonial-text,
.special-content-title,
.about-content strong,
.about-content em {
    color: var(--text-primary);
}

.live-testimonial-author,
.live-testimonial-title,
.special-content-excerpt,
.special-content-meta,
.testimonials-empty {
    color: var(--text-secondary);
}

.live-testimonial-advisor {
    border-top-color: rgba(143, 113, 228, 0.12);
}

.live-testimonial-avatar {
    border-color: rgba(143, 113, 228, 0.34);
}

.testimonials-empty {
    border-color: rgba(143, 113, 228, 0.16);
    background: rgba(255, 255, 255, 0.84);
}

.special-content-card {
    color: var(--text-primary);
    background:
        radial-gradient(130% 180% at 100% 0%, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 55%),
        rgba(255, 255, 255, 0.88);
}

.special-content-category {
    border-color: rgba(143, 113, 228, 0.18);
    background: rgba(139, 92, 246, 0.12);
    color: #6d40e6;
}

.trust-verify-modal {
    background: rgba(247, 242, 255, 0.7);
}

.trust-verify-dialog {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 255, 0.98));
    border-color: rgba(143, 113, 228, 0.18);
    box-shadow: 0 30px 70px rgba(111, 92, 170, 0.16);
    color: var(--text-primary);
}

.trust-verify-close {
    border-color: rgba(143, 113, 228, 0.16);
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-primary);
}

.trust-verify-close:hover {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.28);
}

.trust-verify-intro,
.trust-verify-step-text p,
.trust-verify-highlight-copy {
    color: var(--text-secondary);
}

.trust-verify-step,
.trust-verify-highlight {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(143, 113, 228, 0.16);
}

.trust-verify-step-icon,
.trust-verify-brandmark {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(168, 85, 247, 0.12));
    border-color: rgba(143, 113, 228, 0.18);
}

.trust-verify-step-icon svg,
.trust-verify-brandmark svg {
    fill: #6d40e6;
}

.trust-verify-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 14px 28px rgba(139, 92, 246, 0.2);
}

footer {
    background: rgba(255, 255, 255, 0.64);
    border-top-color: rgba(143, 113, 228, 0.14);
}

footer .logo,
footer .footer-links h4,
footer .app-store-btn,
footer .footer-entertainment-bar strong {
    color: var(--text-primary);
}

footer .app-store-btn,
footer .footer-links a,
footer .footer-entertainment-bar {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(143, 113, 228, 0.16);
}

footer .footer-links a,
footer .footer-bottom,
footer .footer-bottom a,
footer .app-subtitle {
    color: var(--text-secondary);
}

footer .footer-links a:hover,
footer .footer-bottom a:hover,
footer .footer-entertainment-bar a {
    color: var(--accent-primary);
}
