/* =========================================
   Aeternitas | Digital Memorial App Styles
   Premium, Dark Mode, Glassmorphism
========================================= */

:root {
    /* Color Palette */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --primary-color: #6d28d9;
    --primary-glow: rgba(109, 40, 217, 0.6);
    --secondary-color: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(109, 40, 217, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(25, 25, 25, 0.98) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    /* changed from exactly 100vh to min-height so it naturally expands if needed */
    display: flex;
    align-items: center;
    padding: 50px 10% 0 10%;
    /* Extra padding top for navbar */
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Compressed for fit */
    line-height: 1.1;
    margin-top: 40px;
    /* Compressed for fit */
    /* Push below Navbar and absolute logos */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    /* Compressed */
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    /* Better spacing above easy-onboarding */
}

.feature-btn {
    display: block;
    text-decoration: none;
    color: var(--text-base);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glow-blue:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.glow-blue .feature-icon {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.glow-green:hover {
    border-color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.glow-green .feature-icon {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.glow-purple:hover {
    border-color: #c084fc;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.3);
}

.glow-purple .feature-icon {
    color: #c084fc;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

.glow-gold:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.glow-gold .feature-icon {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Capture & Memory Section */
/* Features Section */
.features-section {
    padding: 6rem 10%;
    background-color: var(--bg-darker);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* =========================================
   Eternity Gallery (Quantum Glassmorphism Player)
========================================= */

.gallery-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 10;
}

.quantum-player-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quantum-player {
    position: relative;
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    background: rgba(20, 20, 30, 0.4);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(109, 40, 217, 0.2);
}

.player-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: quantum-breath 8s infinite alternate;
}

@keyframes quantum-breath {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

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

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#eternity-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
}

.pulse-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: rotate-pulse 4s linear infinite;
}

@keyframes rotate-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
        filter: hue-rotate(180deg);
    }

    100% {
        transform: rotate(360deg) scale(1);
        filter: hue-rotate(360deg);
    }
}

/* Player Controls */
.player-controls {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.quantum-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text-main);
    box-shadow: 0 0 10px var(--primary-glow);
    cursor: pointer;
    transition: transform 0.2s;
}

.quantum-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.btn-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--secondary-color);
}

.play-btn {
    font-size: 2rem;
    opacity: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--primary-glow);
    color: white;
}

/* Chapters Grid */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.chapter-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chapter-card:hover {
    transform: translateY(-5px);
}

.chapter-card.active {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.chapter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.chapter-card:hover .chapter-glow,
.chapter-card.active .chapter-glow {
    opacity: 0.3;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--text-main);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px white;
}

.chapter-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.chapter-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* =========================================
   Memory Capture & Upload Section
========================================= */
.capture-section {
    padding: 4rem 10%;
    position: relative;
    z-index: 10;
}

.capture-container {
    padding: 3rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.capture-header {
    margin-bottom: 3rem;
}

.capture-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capture-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.action-box {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.action-box:hover {
    transform: translateY(-5px);
}

.action-box.highlight {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.4);
}

.action-box .icon {
    font-size: 3rem;
}

.action-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.hidden-input {
    display: none;
}

/* Camera Viewport */
.camera-viewport {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
}

.camera-viewport.hidden {
    display: none;
    opacity: 0;
}

#live-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.camera-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.record-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.record-btn::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.record-btn.recording::before {
    border-radius: 4px;
    transform: scale(0.8);
}

.recording-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    animation: blink 2s infinite;
}

.red-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* =========================================
   Avatar Creation Hub Section
========================================= */
.avatar-hub-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.creation-step {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.creation-step:hover {
    transform: translateY(-5px);
    border-color: rgba(109, 40, 217, 0.4);
}

.step-icon {
    font-size: 3rem;
}

.creation-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.creation-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.upload-zone {
    width: 100%;
    padding: 2rem 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.upload-zone:hover {
    border-color: var(--secondary-color);
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-main);
}

.status-bar {
    margin-top: auto;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    /* Green active */
}

.status-dot.inactive {
    background: #64748b;
    /* Gray inactive */
}

/* Avatar Preview UI */
.avatar-preview-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(109, 40, 217, 0.3);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-icon.small {
    font-size: 1rem;
    animation: blink 2s infinite;
}

.preview-viewport {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.placeholder-avatar {
    text-align: center;
}

.wireframe-head {
    width: 100px;
    height: 120px;
    margin: 0 auto 1rem auto;
    border: 2px dashed rgba(56, 189, 248, 0.5);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    animation: floating 4s ease-in-out infinite;
}

.wireframe-head::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: rgba(56, 189, 248, 0.5);
}

.wireframe-head::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 2px;
    height: 60%;
    background: rgba(56, 189, 248, 0.5);
}

@keyframes floating {

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

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

.preview-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================
   Full-Body Avatar Calibration (Additions)
========================================= */
.body-scan-row {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scan-instructions {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.scan-circle-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scan-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.scan-circle.optional {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.2);
}

.scan-circle:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(56, 189, 248, 0.1);
}

.full-body-viewport {
    aspect-ratio: 9/16;
    /* Taller for full body */
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.wireframe-body {
    width: 120px;
    height: 280px;
    margin: 0 auto 1rem auto;
    border: 2px dashed rgba(56, 189, 248, 0.5);
    border-radius: 40px;
    position: relative;
    animation: floating 4s ease-in-out infinite;
}

.wireframe-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(56, 189, 248, 0.5);
}

.premium-edits {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.btn-premium {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 99px;
    border: 1px solid #fcd34d;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

/* =========================================
   Metaverse Environment Section
========================================= */
.metaverse-hub-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 10;
}

.metaverse-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.6);
}

.environment-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.env-tab {
    flex: 1;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.env-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.env-tab.active {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    background: rgba(56, 189, 248, 0.05);
}

.env-content {
    display: none;
    padding: 2rem;
}

.env-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.earth-controls,
.prompt-controls {
    margin-bottom: 2rem;
}

.search-bar {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 1rem auto;
}

.earth-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    padding: 0 1rem;
    outline: none;
    font-family: var(--font-body);
}

.hint-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ai-prompt-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(109, 40, 217, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: var(--font-body);
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: border-color 0.3s;
}

.ai-prompt-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.2);
}

.earth-viewport,
.skybox-viewport {
    width: 100%;
    aspect-ratio: 21/9;
    background: #000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.placeholder-map {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(20, 20, 30, 1) 0%, rgba(5, 5, 10, 1) 100%);
    color: var(--text-muted);
    position: relative;
}

.radar-sweep {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.radar-sweep::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.8));
    transform-origin: left center;
    animation: radar 4s linear infinite;
}

@keyframes radar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   Generative Metaverse UI Additions
========================================= */
.generative-viewport {
    position: relative;
    padding: 0;
}

.skybox-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Beautiful Blue sky with purplish hues and a sun */
    background: radial-gradient(circle at 50% 30%, #fde047 1%, transparent 10%),
        linear-gradient(180deg, #1e3a8a 0%, #7e22ce 40%, #0f172a 100%);
    z-index: 1;
    animation: slow-pan 20s ease-in-out infinite alternate;
}

@keyframes slow-pan {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 20%;
    }
}

.metaverse-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to map if needed */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.multiplayer-status {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.camera-controls-ui {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: auto;
}

.btn-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon-small:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.generative-prompt-bar {
    align-self: center;
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 0.5rem;
    pointer-events: auto;
    margin-bottom: 2rem;
}

.object-prompt-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(109, 40, 217, 0.5);
    border-radius: 99px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.3);
}

.object-prompt-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.text-overlay {
    background: transparent !important;
    z-index: 5;
    pointer-events: none;
}

.text-overlay p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
}

/* =========================================
   Subscription Tiers Section
========================================= */
.subscriptions-section {
    padding: 6rem 10%;
    background-color: var(--bg-darker);
    position: relative;
    z-index: 10;
}

.pricing-marquee-container {
    width: 100%;
    overflow-x: auto;
    padding: 2rem 0;
    /* Custom scrollbar for horizontal scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.pricing-marquee-container::-webkit-scrollbar {
    height: 8px;
}

.pricing-marquee-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.pricing-marquee-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* allows horizontal scrolling of 6 cards */
    padding: 1rem 2rem;
}

.pricing-card {
    width: 300px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex: 1;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.features-list li:before {
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-card.highlight {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
    transform: scale(1.05);
}

.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 99px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-card.ultimate {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

/* =========================================
   Web3 & Crypto UI Additions
========================================= */
.web3-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-color: rgba(74, 222, 128, 0.5);
    /* Subtle green */
}

.web3-login-btn:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: #4ade80;
    color: white;
}

.ud-icon {
    height: 20px;
    width: auto;
}

.web3-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    /* Dark blur over the skybox */
    backdrop-filter: blur(10px);
    z-index: 50;
    /* Above the metaverse UI */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.gate-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}

.gate-content h3 {
    margin-bottom: 1rem;
    color: white;
}

.gate-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pay-crypto-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-color: rgba(251, 191, 36, 0.5);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.pay-crypto-btn:hover {
    border-color: #fbbf24;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.05);
}

/* =========================================
   Aeterni UI Overrides & New Features
========================================= */

.center-layout {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 2rem 0;
}

.btn-massive {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warm-glow {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    border: 2px solid #fcd34d;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: warm-pulse 3s infinite alternate;
}

.warm-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.8);
    color: white;
}

@keyframes warm-pulse {
    0% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

.easy-onboarding {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    /* Compressed */
    padding: 1.5rem;
    /* Compressed */
    border-radius: 20px;
    background: rgba(10, 10, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 20;
}

.onboard-step {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.onboard-step:hover {
    transform: translateY(-8px);
}

.onboard-step h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.onboard-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
}

.onboard-step:hover .step-icon {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.bg-blue {
    background: rgba(56, 189, 248, 0.15);
    border: 2px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
}

.bg-gold {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
}

.bg-purple {
    background: rgba(168, 85, 247, 0.15);
    border: 2px solid rgba(168, 85, 247, 0.5);
    color: #a855f7;
}

.bg-green {
    background: rgba(74, 222, 128, 0.15);
    border: 2px solid rgba(74, 222, 128, 0.5);
    color: #4ade80;
}

.btn-ai-guide {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(74, 222, 128, 0.6);
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-ai-guide:hover {
    background: rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.5);
    color: #4ade80;
}

.btn-web3-login {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(239, 68, 68, 0.6);
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    position: relative;
    padding: 0.6rem 1.4rem;
}

.btn-web3-login:hover {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.red-glint {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444;
    animation: fast-pulse 0.8s infinite alternate;
}

@keyframes fast-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
        box-shadow: 0 0 5px #ef4444;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 15px #ef4444, 0 0 25px rgba(239, 68, 68, 0.8);
    }
}

@media (max-width: 768px) {
    .easy-onboarding {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   SPLASH SCREEN & NEON UI ENHANCEMENTS
========================================= */

/* Splash Page Overlay */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.splash-btn {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.splash-btn::before {
    display: none;
}

.splash-glass-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.splash-text-container {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 2rem;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Anagram Animation Styles */
.anagram-container {
    position: absolute;
    width: 140px;
    height: 30px;
}

.anagram-container .letter {
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, #38bdf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    /* Less intense for navbar */
    text-transform: uppercase;
    top: 0px;
}

/* Initial Positions (A E T E R N I) */
.anagram-container .letter.a {
    left: 0%;
}

.anagram-container .letter.e1 {
    left: 14%;
}

.anagram-container .letter.t {
    left: 28%;
}

.anagram-container .letter.e2 {
    left: 42%;
}

.anagram-container .letter.r {
    left: 56%;
}

.anagram-container .letter.n {
    left: 70%;
}

.anagram-container .letter.i {
    left: 84%;
}

/* Morphed Positions (E N T E R   A I) and Colors */
/* Total width used: 9 letters roughly (2 spaces). E N T E R _ A I */
.anagram-container.morphed .letter.e1 {
    left: -10%;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4ade80;
    filter: drop-shadow(0 0 20px #4ade80);
}

.anagram-container.morphed .letter.n {
    left: 5%;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4ade80;
    filter: drop-shadow(0 0 20px #4ade80);
}

.anagram-container.morphed .letter.t {
    left: 20%;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4ade80;
    filter: drop-shadow(0 0 20px #4ade80);
}

.anagram-container.morphed .letter.e2 {
    left: 35%;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4ade80;
    filter: drop-shadow(0 0 20px #4ade80);
}

.anagram-container.morphed .letter.r {
    left: 50%;
    background: #4ade80;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4ade80;
    filter: drop-shadow(0 0 20px #4ade80);
}

.anagram-container.morphed .letter.a {
    left: 75%;
    background: #ef4444;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ef4444;
    filter: drop-shadow(0 0 20px #ef4444);
}

.anagram-container.morphed .letter.i {
    left: 90%;
    background: #ef4444;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ef4444;
    filter: drop-shadow(0 0 20px #ef4444);
}

.splash-text {
    position: absolute;
    transition: opacity 2s ease, transform 2s ease;
}

.t-enter {
    color: #4ade80;
    text-shadow: 0 0 20px #4ade80;
}

.t-ai {
    color: #ef4444;
    text-shadow: 0 0 20px #ef4444;
}

.t-aeterni {
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
}

@keyframes rotate-lights {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes splash-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 50px rgba(109, 40, 217, 0.5), inset 0 0 30px rgba(56, 189, 248, 0.3);
    }

    33% {
        box-shadow: 0 0 80px rgba(56, 189, 248, 0.7), inset 0 0 50px rgba(168, 85, 247, 0.5);
    }

    66% {
        box-shadow: 0 0 100px rgba(74, 222, 128, 0.6), inset 0 0 40px rgba(251, 191, 36, 0.4);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 120px rgba(239, 68, 68, 0.8), inset 0 0 60px rgba(109, 40, 217, 0.6);
    }
}

/* Neon Nav Links */
.nav-links a {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    /* Base white to make neon pop */
}

.nav-home {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    transition: all 0.3s ease;
}

.nav-home:hover {
    color: #38bdf8 !important;
    text-shadow: 0 0 20px #38bdf8, 0 0 40px #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.nav-legacy {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    transition: all 0.3s ease;
}

.nav-legacy:hover {
    color: #fbbf24 !important;
    text-shadow: 0 0 20px #fbbf24, 0 0 40px #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.nav-metaverse {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}

.nav-metaverse:hover {
    color: #c084fc !important;
    text-shadow: 0 0 20px #c084fc, 0 0 40px #a855f7, 0 0 60px #7e22ce;
    /* Ultra-violet */
    background: rgba(168, 85, 247, 0.1);
}

.nav-pricing {
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    transition: all 0.3s ease;
}

.nav-pricing:hover {
    color: #4ade80 !important;
    text-shadow: 0 0 20px #4ade80, 0 0 40px #4ade80, 0 0 60px #22c55e;
    background: rgba(74, 222, 128, 0.1);
}

/* Animated Logo Text */
.logo-container {
    position: relative;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-absolute {
    position: absolute;
    left: 0;
    transition: opacity 1s ease;
}

.logo-enterai span.l-enter {
    color: #4ade80;
    text-shadow: 0 0 15px #4ade80;
}

.logo-enterai span.l-ai {
    color: #ef4444;
    text-shadow: 0 0 15px #ef4444;
}

.logo-aeterni {
    background: linear-gradient(135deg, #38bdf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.8));
}

/* Shift 3D Element to the Right */
#canvas-container {
    left: 40%;
    /* Shifted right */
    width: 60%;
    /* Reduced width */
    /* Use mask to smooth blend it into the dark background */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.hero-content {
    max-width: 600px;
    z-index: 10;
}

/* =========================================
   USER REVISIONS: Glass Glow, Center Logo, Canvas Pos
========================================= */

/* Animated Navbar Glass */
.animated-glass {
    border-bottom: 2px solid transparent;
    animation: glass-glow 6s infinite alternate;
}

@keyframes glass-glow {
    0% {
        box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4), inset 0 -5px 15px rgba(56, 189, 248, 0.2);
        border-bottom-color: #38bdf8;
    }

    33% {
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4), inset 0 -5px 15px rgba(168, 85, 247, 0.2);
        border-bottom-color: #a855f7;
    }

    66% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4), inset 0 -5px 15px rgba(251, 191, 36, 0.2);
        border-bottom-color: #fbbf24;
    }

    100% {
        box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4), inset 0 -5px 15px rgba(74, 222, 128, 0.2);
        border-bottom-color: #4ade80;
    }
}

/* Base Neon Colors for Nav Links */
.nav-home {
    color: #38bdf8 !important;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8), 0 0 20px rgba(56, 189, 248, 0.5);
}

.nav-legacy {
    color: #fbbf24 !important;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.5);
}

.nav-metaverse {
    color: #c084fc !important;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.8), 0 0 20px rgba(168, 85, 247, 0.5);
}

.nav-pricing {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.8), 0 0 20px rgba(74, 222, 128, 0.5);
}

/* Center Hero Logo */
.hero-logo-container {
    width: 100%;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container .logo-absolute {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    white-space: nowrap;
}

/* Adjust 3D Canvas back towards center/left */
#canvas-container {
    left: 15% !important;
    /* Move left */
    top: 10% !important;
    /* Move down slightly */
    width: 70% !important;
    /* Increase coverage */
    height: 80% !important;
    mask-image: radial-gradient(circle, black 40%, transparent 80%) !important;
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%) !important;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    text-align: center;
}

.hero-subtitle {
    margin: 0 auto 2.5rem auto;
}

/* =========================================
   USER REVISIONS 2: Solid Navbar Glow & Ethereal Fiber Optics
========================================= */

/* Animated Navbar Solid Glow */
.solid-glow-nav {
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 2px solid transparent;
    animation: solid-glass-glow 10s infinite alternate;
}

@keyframes solid-glass-glow {
    0% {
        box-shadow: 0 10px 40px rgba(56, 189, 248, 0.8), inset 0 -5px 15px rgba(56, 189, 248, 0.5);
        border-bottom-color: #38bdf8;
    }

    33% {
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.8), inset 0 -5px 15px rgba(168, 85, 247, 0.5);
        border-bottom-color: #a855f7;
    }

    66% {
        box-shadow: 0 10px 40px rgba(251, 191, 36, 0.8), inset 0 -5px 15px rgba(251, 191, 36, 0.5);
        border-bottom-color: #fbbf24;
    }

    100% {
        box-shadow: 0 10px 40px rgba(74, 222, 128, 0.8), inset 0 -5px 15px rgba(74, 222, 128, 0.5);
        border-bottom-color: #4ade80;
    }
}

/* Ethereal Energy Logo Effect */
.ethereal-energy {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ethereal-energy span {
    filter: blur(1px) drop-shadow(0 0 20px currentColor) drop-shadow(0 0 40px currentColor);
    mix-blend-mode: screen;
    animation: ethereal-flicker 2s infinite alternate;
}

@keyframes ethereal-flicker {
    0% {
        filter: blur(1px) drop-shadow(0 0 20px currentColor) opacity(0.8);
        transform: scale(0.98);
    }

    100% {
        filter: blur(2.5px) drop-shadow(0 0 50px currentColor) drop-shadow(0 0 80px currentColor) opacity(1);
        transform: scale(1.02);
    }
}

/* Fiber Optics Splash Button Ring */
.fiber-optics {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg,
            rgba(56, 189, 248, 0) 0deg,
            rgba(56, 189, 248, 0.9) 2deg,
            rgba(168, 85, 247, 0) 4deg,
            rgba(168, 85, 247, 1) 6deg,
            rgba(74, 222, 128, 0) 8deg,
            rgba(74, 222, 128, 0.8) 10deg,
            rgba(251, 191, 36, 0) 12deg,
            rgba(251, 191, 36, 0.9) 14deg,
            rgba(239, 68, 68, 0) 16deg,
            rgba(239, 68, 68, 1) 18deg,
            transparent 20deg);
    animation: fiber-spin 15s linear infinite, fiber-pulse 2.5s alternate infinite;
    mask-image: radial-gradient(circle, transparent 40%, black 50%, black 52%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, transparent 40%, black 50%, black 52%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

@keyframes fiber-spin {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes fiber-pulse {
    0% {
        opacity: 0.6;
        filter: hue-rotate(0deg) saturate(1.5) brightness(1.2);
    }

    100% {
        opacity: 1;
        filter: hue-rotate(90deg) saturate(3) brightness(2);
        box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
    }
}

/* =========================================
   FOOTER & MODAL UI INTEGRATIONS
========================================= */

.site-footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 10%;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.crypto-disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.6;
    margin-top: 1.5rem !important;
    line-height: 1.6;
}

/* Modal Overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    /* Above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* AI Voice Mic Visualizer Mock */
.mic-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.mic-bar {
    width: 12px;
    height: 10px;
    background: #4ade80;
    border-radius: 6px;
    transition: height 0.1s ease;
}

.mic-bar.active {
    animation: eq-bounce 0.8s infinite alternate ease-in-out;
}

.mic-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.mic-bar:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes eq-bounce {
    0% {
        height: 10px;
        box-shadow: 0 0 5px #4ade80;
    }

    100% {
        height: 50px;
        box-shadow: 0 0 20px #4ade80;
    }
}