@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #1A1A2E;
    --bg-card: #2D2D5E;
    --gold: #C9A84C;
    --gold-glow: rgba(201, 168, 76, 0.4);
    --gold-light: #E2CD8A;
    --lavender: #F5F0FF;
    --white: #FAFAF8;
    --rose: #E8B4B8;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Aura Glows */
body::before, body::after {
    content: '';
    position: absolute;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

body::before {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

body::after {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
}

/* Elegant Typography */
h1, h2, h3, h4, .brand-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

/* Header & Logo styling */
header {
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(250, 250, 248, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
}

.aabha-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.aabha-logo:hover {
    transform: scale(1.08) rotate(360deg);
    box-shadow: 0 0 15px var(--gold);
}


.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

/* Language Selector Dropdown */
.lang-selector-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lang-label {
    font-size: 0.8rem;
    color: rgba(250, 250, 248, 0.6);
    font-weight: 500;
}

.lang-select {
    background-color: rgba(45, 45, 94, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.lang-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

/* Main Container */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Landing Page Hero */
.hero {
    text-align: center;
    max-width: 800px;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out;
}

.tagline-container {
    display: inline-block;
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background-color: rgba(45, 45, 94, 0.4);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-light);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Call to Action Buttons */
.cta-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Quiz Interface */
.card {
    background-color: rgba(45, 45, 94, 0.35);
    border: 1px solid rgba(250, 250, 248, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.card-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.progress-indicator {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(250, 250, 248, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--gold);
    width: 20%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--gold);
}

.card h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 500;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-button {
    background-color: rgba(250, 250, 248, 0.03);
    border: 1px solid rgba(250, 250, 248, 0.1);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-button:hover {
    background-color: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    transform: translateX(5px);
}

.option-button.selected {
    background-color: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.option-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(250, 250, 248, 0.3);
    flex-shrink: 0;
    margin-left: 1rem;
}

.option-button:hover .option-icon {
    border-color: var(--gold);
}

.option-button.selected .option-icon {
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

/* Split Results Page Layout */
.result-layout {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0;
    animation: fadeIn 1s ease-out;
}

/* Collectible Story Card wrapper */
.card-outer-wrapper {
    flex: 0 0 auto;
    width: 360px;
    max-width: 100%;
}

.aura-share-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #151525;
    border-radius: 24px;
    overflow: hidden;
    padding: 2.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(250, 250, 248, 0.05);
    z-index: 1;
}

.card-gold-frame {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--gold);
    opacity: 0.4;
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 85px 115px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 110px 220px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 30px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 220px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 240px 160px, #eee, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 280px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 310px 250px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1.2px 1.2px at 35px 390px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 420px, #eee, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 170px 350px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 250px 410px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.2px 1.2px at 320px 490px, #ddd, rgba(0,0,0,0));
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.card-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 3;
    margin-top: 0.5rem;
}

.card-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
    margin-bottom: 2px;
}

.card-logo-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.card-recipient {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(250, 250, 248, 0.75);
    z-index: 3;
    margin-top: -0.4rem;
    text-align: center;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-orb-container {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-aura-orb {
    position: absolute;
    filter: blur(12px);
    mix-blend-mode: screen;
}

.orb-core-morph {
    width: 155px;
    height: 155px;
    opacity: 0.95;
    animation: morphCore 8s ease-in-out infinite alternate, rotateRing 20s linear infinite;
}

.orb-dodge-morph {
    width: 145px;
    height: 145px;
    opacity: 0.8;
    animation: morphSecondary 11s ease-in-out infinite alternate-reverse, rotateRing 15s linear infinite reverse;
}

.orb-energy-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateRing 25s linear infinite;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
}

.card-aura-glow {
    position: absolute;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.55;
    animation: auraPulse 4s ease-in-out infinite alternate;
}

.card-color-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 0 10px;
}

.card-qualities {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 3;
    width: 100%;
}

.quality-badge {
    background-color: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.card-story {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(250, 250, 248, 0.85);
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
    z-index: 3;
    padding: 0 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    background: linear-gradient(135deg, var(--white) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-footer-tagline {
    font-size: 0.65rem;
    color: rgba(250, 250, 248, 0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    margin-bottom: 0.2rem;
}

/* Details Pane & Description */
.details-pane {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 550px;
    width: 100%;
}

.aura-description-container {
    text-align: left;
}

.result-meta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    display: block;
}

.details-pane h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 35%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-pane p {
    font-size: 1.1rem;
    color: rgba(250, 250, 248, 0.85);
    line-height: 1.7;
    font-weight: 300;
}

/* Waitlist card section */
.waitlist-card-wrapper {
    background-color: rgba(45, 45, 94, 0.3);
    border: 1px solid rgba(250, 250, 248, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.waitlist-card-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group input {
    width: 100%;
    background-color: rgba(250, 250, 248, 0.03);
    border: 1px solid rgba(250, 250, 248, 0.1);
    border-radius: 12px;
    padding: 1.1rem 1.3rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(250, 250, 248, 0.06);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.18);
}

.submit-button {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
    transition: var(--transition-smooth);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* Success Card */
.success-card {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon {
    font-size: 3rem;
    color: #4ade80;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.success-card h3 {
    color: #4ade80;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.success-card p {
    font-size: 0.95rem;
    color: rgba(250, 250, 248, 0.85);
    line-height: 1.6;
}

/* Action Share Panel */
.action-panel {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.1rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-icon {
    font-size: 1.1rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.share-btn {
    background-color: rgba(45, 45, 94, 0.5);
    border: 1px solid rgba(250, 250, 248, 0.15);
    color: var(--white);
}

.share-btn:hover {
    background-color: rgba(45, 45, 94, 0.7);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.retake-btn {
    background-color: transparent;
    border: 1px solid rgba(250, 250, 248, 0.08);
    color: rgba(250, 250, 248, 0.5);
    text-decoration: none;
}

.retake-btn:hover {
    color: var(--white);
    border-color: rgba(250, 250, 248, 0.25);
    background-color: rgba(250, 250, 248, 0.03);
}

/* Social Proof Banner */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background-color: rgba(45, 45, 94, 0.25);
    border: 1px solid rgba(250, 250, 248, 0.05);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.9rem;
    color: rgba(250, 250, 248, 0.7);
    font-weight: 300;
}

.social-proof-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Footer Disclaimer */
footer {
    width: 100%;
    padding: 2rem 5%;
    border-top: 1px solid rgba(250, 250, 248, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(250, 250, 248, 0.4);
    line-height: 1.6;
}

.disclaimer-text {
    max-width: 600px;
    margin: 0 auto;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--gold-glow);
    }
    100% {
        box-shadow: 0 0 25px var(--gold);
    }
}

.pulsing-text {
    animation: textPulse 3s ease-in-out infinite alternate;
}

@keyframes textPulse {
    0% { text-shadow: 0 0 10px rgba(255,255,255,0); }
    100% { text-shadow: 0 0 15px rgba(250, 240, 255, 0.35); }
}

/* High Grade Morphing Card Animations */
@keyframes auraMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes auraRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes auraPulse {
    0% { transform: scale(0.92); opacity: 0.45; }
    100% { transform: scale(1.08); opacity: 0.65; }
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .result-layout {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 1rem 0;
    }
    .card-outer-wrapper {
        width: 330px;
    }
    .details-pane {
        max-width: 100%;
        text-align: center;
    }
    .aura-description-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem 5%;
        text-align: center;
    }
    .logo {
        flex-direction: column;
        gap: 0.4rem;
    }
    .aabha-logo {
        width: 45px;
        height: 45px;
    }
    .lang-selector-container {
        width: 100%;
        justify-content: center;
    }
    main {
        padding: 1.5rem 5%;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .card-outer-wrapper {
        width: 100%;
        max-width: 300px;
    }
    .waitlist-card-wrapper {
        padding: 1.5rem;
    }
}

/* High Grade Animated Energy Keyframes */
@keyframes morphCore {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    50% {
        border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    }
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
}

@keyframes morphSecondary {
    0% {
        border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%;
    }
    100% {
        border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    }
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Screen Reveal Aura Flash */
.aura-reveal-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Viewport Edge Aura Glow Vignette */
.aura-viewport-glow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9998; /* Under flash, above main content */
    box-shadow: inset 0 0 50px var(--aura-color, rgba(201, 168, 76, 0.45));
    animation: edgeGlowPulse 4s ease-in-out infinite alternate;
    transition: box-shadow 1.5s ease-in-out;
}

@keyframes edgeGlowPulse {
    0% {
        box-shadow: inset 0 0 35px var(--aura-color, rgba(201, 168, 76, 0.4));
        opacity: 0.6;
    }
    100% {
        box-shadow: inset 0 0 75px var(--aura-color, rgba(201, 168, 76, 0.65));
        opacity: 0.9;
    }
}
