:root {
    --loom-primary: #c5d6e8;
    --loom-secondary: #a4b7d9;
    --loom-accent: #8d9fc7;
    --loom-text: #526686;
    --loom-background: #f5f8fc;
    --loom-gradient-1: #e8edf7;
    --loom-gradient-2: #d5e0f2;
    --loom-critical: #e17979;
    --loom-warning: #e7c976;
    --loom-action: #76a0e7;
    --loom-declining: #e7a976;
    --animation-speed: 1;
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --font-display: 'Limelight', cursive;
    --font-heading: 'Space Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --text-xs: 0.7rem;
    --text-sm: 0.85rem;
    --text-base: 1rem;
    --text-lg: 1.2rem;
    --text-xl: 1.4rem;
    --breathing-initial-duration: 6s;
    --breathing-slowdown-factor: 1.5;
}

.loomecho-body {
    background: var(--loom-background);
    color: var(--loom-text);
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Hero Section */
.hero-section {
    position: fixed;
    inset: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(245, 248, 252, 0.2) 0%,
        rgba(245, 248, 252, 0.6) 50%,
        rgba(245, 248, 252, 0.85) 100%
    );
}

/* Noise overlay for texture */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Header & Navigation */
.loom-header {
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-sizing: border-box;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: #B1C2CB; /* Match the start free trial button color */
    letter-spacing: 0.02em;
}

.logo-svg {
    height: 38px; /* Increased from 32px */
    width: auto;
    filter: invert(77%) sepia(13%) saturate(264%) hue-rotate(168deg) brightness(90%) contrast(84%); /* Filter for #B1C2CB */
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-top: -3px; /* Adjust vertical alignment to compensate for increased size */
}

.logo-svg:hover {
    opacity: 1;
}

.loom-nav ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #B1C2CB;
    text-decoration: none;
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: transparent;
}

.nav-link:hover {
    background: rgba(177, 194, 203, 0.1);
    color: #fff;
}

/* Remove existing ::after styles */
.nav-link::after {
    display: none;
}

/* Restore and improve tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #B1C2CB;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    animation: fadeIn 0.2s ease forwards;
}

.nav-link.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.nav-link.disabled:hover {
    background: transparent;
    color: #B1C2CB;
}

.nav-link.status-indicator {
    color: #fff; /* White text */
    opacity: 0.95;
    font-size: 0.75rem;
    text-decoration: none;
    pointer-events: none;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: none; /* Remove border */
    border-radius: 4px;
    background: rgba(225, 121, 121, 0.9); /* More opaque red background */
    font-weight: 500;
}

.nav-link.trial-button {
    color: #fff;
    background-color: #B1C2CB; /* Changed to requested color */
    font-size: var(--text-base);
    padding: 0.6rem 1.5rem;  /* Slightly wider padding */
    min-width: 140px;  /* Ensure consistent width */
    text-align: center;
    border-radius: 30px;
    letter-spacing: 0.01em;
    font-weight: 500;
    text-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    box-shadow: 0 2px 8px rgba(177, 194, 203, 0.3);
    cursor: pointer;
}

.nav-link.trial-button:hover {
    background-color: #9fb0b9; /* Slightly darker version of #B1C2CB */
    box-shadow: 0 2px 12px rgba(177, 194, 203, 0.4);
    color: #fff;
}

/* Remove the tooltip for trial button since we're using modal instead */
.nav-link.trial-button[data-tooltip]:hover::before {
    display: none;
}

/* Modal/Popup for trial button */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal {
    background: var(--loom-background);
    border-radius: 10px;
    padding: 2rem;
    max-width: 90%;
    width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.3s forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--loom-critical);
    border-bottom: 1px solid rgba(225, 121, 121, 0.2);
    padding-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--loom-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transform: translateY(-2px);
}

.modal-body {
    color: var(--loom-text);
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: var(--font-heading);
    padding: 1rem 0;
}

.modal-error {
    font-family: 'Space Grotesk', monospace;
    background: rgba(225, 121, 121, 0.1);
    color: var(--loom-critical);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.modal-glitch {
    font-family: monospace;
    opacity: 0.7;
    margin-top: 1rem;
    animation: textGlitch 2s infinite;
}

@keyframes textGlitch {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.5; }
    75% { opacity: 0.9; }
    85% { opacity: 0.3; }
}

.sentiment-log {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--loom-text);
    opacity: 0.9;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(173, 179, 184, 0.06);
    border-radius: 6px;
    border-left: 2px solid var(--loom-critical);
}

.echo-quote {
    font-style: italic;
    color: var(--loom-critical);
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(225, 121, 121, 0.3);
}

.shutdown-note {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--loom-text);
    opacity: 0.7;
    margin-top: 2rem;
    text-align: right;
    font-style: italic;
}

/* Special tooltip just for the trial button */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive nav adjustments */
@media (max-width: 768px) {
    .loom-header {
        padding: 1.5rem;
    }
    
    .loom-nav ul {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: var(--text-sm);
    }
    
    .nav-link.status-indicator {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-link.trial-button {
        font-size: var(--text-sm);
        padding: 0.5rem 1rem;
    }
    
    .logo-svg {
        height: 34px;
    }
    
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(245, 248, 252, 0.2) 0%,
            rgba(245, 248, 252, 0.6) 50%,
            rgba(245, 248, 252, 0.85) 100%
        );
        /* Removing the dark overlay and keeping consistent with desktop */
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 1rem;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .menu-line {
        display: block;
        width: 24px;
        height: 2px;
        margin: 4px 0;
        background: #a8afb4;
        transition: 0.3s ease;
    }

    .menu-open .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-open .menu-line:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .loom-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--loom-background);
        border-left: 1px solid rgba(173, 179, 184, 0.2);
        backdrop-filter: none; /* Remove blur */
        transition: 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 1000;
    }

    .menu-open .loom-nav {
        right: 0;
        backdrop-filter: none; /* Remove blur */
        background: var(--loom-background);
    }

    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(228, 227, 224, 0.1);
        backdrop-filter: none; /* Remove blur */
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 999;
    }

    .menu-open .nav-backdrop {
        opacity: 0.5;
        visibility: visible;
    }

    .loom-nav ul {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .loom-nav ul li {
        margin: 1rem 0;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
    
    .left-column {
        padding: 0;
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .error-message {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        align-items: center;
        padding: 1rem;
    }
    
    .glitch-text {
        font-size: 10rem;
        text-align: center;
        letter-spacing: normal;
        width: 100%;
        font-weight: normal;
        margin: 0 auto;
    }
    
    .error-container {
        margin: 0.5rem auto;
        text-align: center;
        width: 100%;
        max-width: 90%;
    }

    .breathing-container {
        justify-content: center;
        margin: 2rem auto;
    }

    .breathing-element-container {
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Content Wrapper */
.content-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Error Message */
.error-message {
    width: 100%;
    margin: 0;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.error-message.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.glitch-text {
    font-family: var(--font-display);
    text-align: left;
    font-size: 18rem;
    line-height: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
    letter-spacing: -5px;
    font-family: 'Limelight', cursive;
}

.error-container {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    margin-left: 0;
}

.error-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
    opacity: 0.7;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.error-notice {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    line-height: 1.4;
    margin-top: 0.8rem;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.9);
    margin-left: auto;
    margin-right: auto;
}

/* App Interface */
.app-interface {
    width: 100%;
    max-width: 420px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
}

.last-session {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 
        0 4px 24px -1px rgba(82, 102, 134, 0.06),
        0 1px 4px -1px rgba(82, 102, 134, 0.03);
}

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

.session-header h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    position: relative;
}

.session-header h3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(225, 121, 121, 0.4);
    bottom: -5px;
    left: 0;
}

.progress-tag {
    font-size: 0.8rem;
    opacity: 0.6;
    font-family: 'Inter', monospace;
}

.session-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(164, 183, 217, 0.5);
    background: transparent;
    color: var(--loom-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    opacity: 0.5;
}

.play-icon {
    font-size: 0.8rem;
}

.timeline {
    flex: 1;
    height: 4px;
    background: rgba(164, 183, 217, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 43%;
    background: var(--loom-accent);
}

.timeline-progress::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--loom-accent);
}

.session-stats {
    margin-top: 1rem;
    border-top: 1px solid rgba(164, 183, 217, 0.2);
    padding-top: 1rem;
}

.stats-note {
    font-size: 0.75rem;
    margin: 0 0 0.7rem;
    opacity: 0.7;
}

.stat-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stat-bar {
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-bar.critical {
    background: var(--loom-critical);
    width: 85%;
}

.stat-label {
    font-size: var(--text-xs);
    opacity: 0.6;
    align-self: flex-end;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(164, 183, 217, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--loom-text);
}

.stat-value.warning {
    color: var(--loom-warning);
}

.stat-value.critical {
    color: var(--loom-critical);
}

.stat-name {
    font-size: var(--text-xs);
    opacity: 0.6;
    margin-top: 0.2rem;
}

/* System Message */
.system-message {
    text-align: center;
    margin: 1.5rem 0;
}

.final-message {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.6;
    position: relative;
    display: inline-block;
}

.quote::before, .quote::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: rgba(164, 183, 217, 0.4);
}

.quote::before {
    left: -40px;
    top: 50%;
}

.quote::after {
    right: -40px;
    top: 50%;
}

/* Close Button */
#release-button {
    background: transparent;
    border: 1px solid var(--loom-critical);
    color: var(--loom-critical);
    padding: 1rem 3rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
}

#release-button:hover {
    background: var(--loom-critical);
    color: white;
}

/* App Version */
.app-version {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    opacity: 0.5;
    font-family: 'Inter', monospace;
}

/* Return Link */
.return-link {
    position: fixed;
    bottom: 1rem;
    right: 1.5rem;
    color: var(--loom-text);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 50;
}

.return-link:hover {
    opacity: 1;
}

.return-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s var(--transition-smooth);
}

.return-link:hover .return-arrow {
    transform: translateX(-5px);
}

/* Audio Control */
.audio-control {
    position: fixed;
    top: 2rem;
    right: 7rem;
    z-index: 50;
}

#toggle-audio {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    padding: 0.5rem;
    opacity: 0.6;
}

#toggle-audio:hover {
    opacity: 1;
}

.audio-wave {
    display: flex;
    align-items: center;
    height: 20px;
    gap: 3px;
}

.audio-wave span {
    display: block;
    width: 3px;
    height: 5px;
    background-color: var(--loom-text);
    border-radius: 3px;
    transition: height 0.2s var(--transition-smooth);
}

.audio-wave span:nth-child(1) { height: 10px; }
.audio-wave span:nth-child(2) { height: 16px; }
.audio-wave span:nth-child(3) { height: 12px; }
.audio-wave span:nth-child(4) { height: 8px; }

.audio-on .audio-wave span {
    animation: wave 1.2s infinite ease-in-out;
}

.audio-on .audio-wave span:nth-child(1) { animation-delay: 0s; }
.audio-on .audio-wave span:nth-child(2) { animation-delay: 0.2s; }
.audio-on .audio-wave span:nth-child(3) { animation-delay: 0.4s; }
.audio-on .audio-wave span:nth-child(4) { animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { height: 5px; }
    50% { height: 16px; }
}

/* Cursor particle */
.cursor-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
}

/* Nav notification */
.nav-notification {
    position: fixed;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(164, 183, 217, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    background-color: rgba(245, 248, 252, 0.6);
    box-shadow: 0 4px 15px rgba(82, 102, 134, 0.1);
    font-size: 0.9rem;
    color: var(--loom-text);
    max-width: 200px;
    text-align: center;
}

/* AI Log */
.ai-log {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', monospace;
    font-size: 0.75rem;
    color: var(--loom-critical);
    opacity: 0.8;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(225, 121, 121, 0.1);
    margin-bottom: 2rem;
    display: inline-block;
}

.ai-notice {
    font-size: 0.7rem;
    color: var(--loom-critical);
    border: 1px solid currentColor;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-left: 1rem;
}

/* Fixed System Log */
.system-log-fixed {
    position: fixed;
    bottom: 4rem;
    left: 2rem;
    background: rgba(10, 10, 10, 0.85);
    color: rgba(0, 255, 255, 0.7);
    padding: 0.8rem 1.2rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    z-index: 1000;
    border-left: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    max-width: 360px;
    animation: fadeInSlide 0.8s ease-out;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.log-prefix {
    color: rgba(0, 255, 255, 0.9);
    margin-right: 0.5rem;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: minmax(400px, 45%) 1fr;
    min-height: calc(100vh - 180px);
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 4%;
    text-align: left;
    height: 100%;
    padding-bottom: 0;
}

.right-column {
    padding: 3rem;
    max-width: 580px;
    display: flex;
    justify-content: flex-end; /* Change from center to flex-end */
    align-items: center;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 100px);
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 4%;
    text-align: left;
    height: 100%;
    padding-bottom: 0;
}

/* User Dependency Visualization - Updated with new color palette */
.dependency-visualization {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
    background: #e4e3e0; /* off-white with hint of beige */
    border: 1px solid #adb3b8; /* soft steel gray */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(168, 175, 180, 0.12); /* dusty slate gray shadow */
}

.visualization-header {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.visualization-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: #a8afb4; /* dusty slate gray */
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.visualization-subtitle {
    font-size: var(--text-xs);
    color: #a9b0b5; /* muted blue-gray */
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.system-indicator {
    font-size: 0.65rem;
    color: #a8afb4; /* dusty slate gray */
    padding: 0.15rem 0;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-block;
    border-bottom: 1px dotted currentColor;
}

.trend-metrics {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

.metric-card {
    position: relative;
    flex: 1;
}

.metric-card:not(:last-child) {
    margin-right: 2rem;
}

.metric-value {
    font-size: var(--text-xl);
    font-weight: 400;
    margin: 0 0 0.2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #a8afb4; /* dusty slate gray */
}

.metric-value.elevated {
    color: #a9b0b5; /* muted blue-gray */
}

.metric-value.notable {
    color: #a8afb4; /* dusty slate gray */
    position: relative;
}

.metric-value.notable::after {
    content: "*";
    position: absolute;
    top: 0;
    right: -7px;
    font-size: 0.9em;
    opacity: 0.8;
}

.metric-label {
    font-size: var(--text-xs);
    color: #a9b0b5; /* muted blue-gray */
    margin: 0;
}

/* Improved Bar Chart Styles */
.session-chart {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(173, 179, 184, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    color: #a8afb4;
}

.chart-header span {
    font-size: var(--text-xs);
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

.chart-canvas {
    height: 180px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: #adb3b8;
    opacity: 0.15;
}

.chart-data {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 0 1rem 1.5rem;
}

.data-point {
    flex: 1;
    max-width: 32px;
    min-width: 16px;
    background: #e0e0de;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.data-point::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.data-point:hover {
    background: #a8afb4;
}

.data-point:hover::after {
    opacity: 1;
}

/* Add subtle vertical grid lines */
.chart-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent calc(100% / 8 - 1px),
        rgba(173, 179, 184, 0.06) calc(100% / 8 - 1px),
        rgba(173, 179, 184, 0.06) calc(100% / 8)
    );
}

.chart-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent calc(100% / 4 - 1px),
        rgba(173, 179, 184, 0.04) calc(100% / 4 - 1px),
        rgba(173, 179, 184, 0.04) calc(100% / 4)
    );
    pointer-events: none;
}

.analysis-note {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-xs);
    color: #a9b0b5; /* muted blue-gray */
    line-height: 1.5;
    margin: 1.2rem 0;
    font-style: italic;
    opacity: 0.9;
    text-align: center;
}

/* Replace the heavy-handed elements with more subtle indicators */
.archive-timestamp {
    font-size: 0.65rem;
    color: #a9b0b5; /* muted blue-gray */
    opacity: 0.6;
    font-family: 'Inter', monospace;
}

.observation-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border: 1px solid #e0e0de; /* pale warm gray */
    border-radius: 6px;
    background: rgba(225, 225, 223, 0.3); /* soft light gray with transparency */
}

.observation-text {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #a8afb4; /* dusty slate gray */
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.system-query {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #a9b0b5; /* muted blue-gray */
    font-family: 'Space Grotesk', monospace;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dependency-visualization {
        padding: 1.5rem;
    }
    
    .trend-metrics {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .metric-card:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 1200px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .left-column {
        padding-left: 2rem;
        text-align: center;
    }
    
    .error-container {
        margin-left: 0;
    }
    
    .right-column {
        padding: 2rem;
        margin: 0 auto;
    }
    
    .glitch-text {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .left-column {
        padding: 0;
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .error-message {
        top: 0;
        text-align: left;
        align-items: flex-start;
        padding-left: 1.5rem;
    }
    
    .glitch-text {
        font-size: 10rem;
        text-align: center;
        letter-spacing: normal;
        width: 100%;
        font-weight: normal;
        margin: 0;
    }
    
    .error-container {
        margin: 0.5rem 0 0;
        text-align: center;
        width: 100%;
    }
    
    .error-code {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(245, 248, 252, 0.2) 0%,
            rgba(245, 248, 252, 0.6) 50%,
            rgba(245, 248, 252, 0.85) 100%
        );
        /* Removing the dark overlay and keeping consistent with desktop */
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 7rem;
        margin: 0 auto 0.5rem;
        padding: 0;
    }
    
    .error-container {
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    .error-notice {
        font-size: 1.1rem;
        padding: 0;
        margin: 0.5rem auto 0;
        max-width: 90%;
    }

    .breathing-element-container {
        height: 250px;
        width: 250px;
    }

    .circle {
        height: 250px;
        width: 250px;
    }
}

/* Footer Legal Section */
.legal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.legal-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
    margin: 0 1rem 0 0;
    position: relative;
    overflow: hidden;
}

.legal-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.legal-footer a:hover::after {
    width: 100%;
}

.legal-footer a:hover {
    color: #fff;
}

.legal-copyright {
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.legal-left {
    display: flex;
    align-items: center;
}

.legal-right {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .legal-footer {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .legal-left, .legal-right {
        width: 100%;
        justify-content: center;
    }
    
    .legal-right a {
        margin: 0 0.7rem;
    }
}

/* Hidden Report Styles */
.report-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hidden-report {
    position: relative;
    background: linear-gradient(to bottom, #e4e3e0, #e0e0de);
    border: 1px solid rgba(173, 179, 184, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 580px;
    width: 90%;
    display: none;
    animation: reportReveal 0.4s forwards;
    z-index: 201;
    padding: 2.5rem;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes reportReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Updated close button styles */
.close-report {
    position: absolute;
    top: 20px;
    left: 20px;  /* Changed from right to left */
    background: rgba(173, 179, 184, 0.15);
    color: #a8afb4;
    font-size: 1.2rem;  /* Reduced from 1.8rem */
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;  /* Reduced padding */
    border-radius: 4px;
    z-index: 10;
    transition: all 0.2s ease;
    border: 1px solid rgba(173, 179, 184, 0.2);
}

.close-report:hover {
    background: #a8afb4;
    color: #fff;
    transform: scale(1.05);
}

/* Privacy Policy Report Styles */
.privacy-visualization {
    max-width: 600px;
}

.social-mining-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(233, 233, 231, 0.5);
    border-radius: 6px;
}

.section-label {
    font-size: 0.85rem;
    color: #a9b0b5;
    margin: 0 0 1rem 0;
    font-weight: normal;
}

.mining-grid {
    display: grid;
    grid-gap: 1rem;
}

.mining-item {
    padding: 0.8rem;
    background: rgba(233, 233, 231, 0.7);
    border-radius: 4px;
}

.platform-name {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #a8afb4;
}

.platform-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #a9b0b5;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 60%;
    height: 4px;
    background: #e0e0de;
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #adb3b8;
}

.data-point-note {
    font-size: 0.7rem;
    color: #a9b0b5;
    font-style: italic;
}

.highlight {
    color: #a8afb4;
    font-weight: 500;
}

.collection-note {
    font-size: 0.7rem;
    color: #a9b0b5;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Custom scrollbar */
.overlay-content::-webkit-scrollbar,
.hidden-report::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.overlay-content::-webkit-scrollbar-track,
.hidden-report::-webkit-scrollbar-track {
    background: rgba(173, 179, 184, 0.1);
    border-radius: 5px;
}

.overlay-content::-webkit-scrollbar-thumb,
.hidden-report::-webkit-scrollbar-thumb {
    background: rgba(173, 179, 184, 0.3);
    border-radius: 5px;
    border: 2px solid rgba(173, 179, 184, 0.1);
}

.overlay-content::-webkit-scrollbar-thumb:hover,
.hidden-report::-webkit-scrollbar-thumb:hover {
    background: rgba(173, 179, 184, 0.4);
}

/* Fix close report button visibility */
.close-report {
    position: absolute;
    top: 20px;
    left: 20px;  /* Changed from right to left */
    background: rgba(173, 179, 184, 0.15);
    color: #a8afb4;
    font-size: 1.2rem;  /* Reduced from 1.8rem */
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;  /* Reduced padding */
    border-radius: 4px;
    z-index: 10;
    transition: all 0.2s ease;
    border: 1px solid rgba(173, 179, 184, 0.2);
}

.close-report:hover {
    background: #a8afb4;
    color: #fff;
    transform: scale(1.05);
}

/* Footer link overlays */
.overlay-container {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.overlay-content {
    position: relative;
    background: linear-gradient(to bottom, #e4e3e0, #e0e0de);
    border: 1px solid rgba(173, 179, 184, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
    display: none;
    animation: overlayReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 201;
    padding: 2.5rem;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes overlayReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy policy styles */
.data-collection-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: var(--text-sm);
}

.data-collection-table th,
.data-collection-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0de;
}

.data-collection-table th {
    font-weight: 500;
    color: #a8afb4;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.data-collection-table td {
    color: #a9b0b5;
}

.ai-comment {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: var(--loom-critical);
    padding: 1rem;
    background: rgba(225, 121, 121, 0.1);
    border-left: 2px solid var(--loom-critical);
    margin: 1.5rem 0;
    font-style: italic;
}

.internal-document {
    position: relative;
    padding-top: 1.5rem;
}

.document-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: #a8afb4;
    margin: 0.5rem 0 2rem;  /* Adjusted top margin */
    padding-left: 2rem;  /* Add padding to prevent overlap with close button */
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(173, 179, 184, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.document-stamp {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: var(--loom-critical);
    padding: 0.3rem 0.8rem;
    background: rgba(225, 121, 121, 0.1);
    border: 1px solid currentColor;
    transform: rotate(-2deg);
    position: absolute;
    top: -12px;
    right: -8px;
}

.document-content {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #a8afb4;
}

.document-section {
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: #a8afb4;
    margin-bottom: 0.8rem;
}

.redacted {
    background: #a8afb4;
    color: transparent;
    border-radius: 2px;
    user-select: none;
    display: inline-block;
}

.highlight-table {
    margin: 1rem 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(173, 179, 184, 0.2);
}

.highlight-table th {
    background: rgba(173, 179, 184, 0.1);
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: var(--text-xs);
    color: #a8afb4;
}

.highlight-table td {
    padding: 0.7rem 1rem;
    font-size: var(--text-xs);
    border-top: 1px solid rgba(173, 179, 184, 0.1);
    color: #a9b0b5;
}

.contact-log {
    padding: 1rem;
    background: rgba(173, 179, 184, 0.05);
    border-radius: 6px;
    margin: 1.5rem 0;
}

.log-entry {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(173, 179, 184, 0.1);
}

.log-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.log-meta {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: #a9b0b5;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.log-content {
    font-size: var(--text-sm);
    color: #a8afb4;
    line-height: 1.5;
}

.chart-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: #a9b0b5;
    text-align: center;
    margin-top: 0.5rem;
}

/* Enhanced Breathing Animation */
.breathing-container {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Change from center to flex-end */
    height: 100%;
    width: 100%;
    position: relative; /* Ensure position context for children */
}

.breathing-element-container { /* Renamed from .watch-face */
    height: 300px; /* Made even larger */
    width: 300px;  /* Made even larger */
    animation: pulse var(--breathing-initial-duration) cubic-bezier(0.45, 0, 0.55, 1) alternate infinite;
    position: relative;
    will-change: transform;
}

.circle {
    height: 300px; /* Made even larger */
    width: 300px;  /* Made even larger */
    border-radius: 50%;
    position: absolute;
    mix-blend-mode: screen; 
    transform: translate(0, 0);
    background: rgba(255, 255, 255, 0.05); /* Reverted fill opacity */
    border: 4px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3), 
                inset 0 0 10px rgba(255, 255, 255, 0.15); 
    will-change: transform;
}

.circle:nth-child(odd),
.circle:nth-child(even) {
    background: rgba(255, 255, 255, 0.05); /* Reverted fill opacity */
    opacity: 1;
}

.circle:nth-child(1) {
    animation: circle-1 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(2) {
    animation: circle-2 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(3) {
    animation: circle-3 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(4) {
    animation: circle-4 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(5) {
    animation: circle-5 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(6) {
    animation: circle-6 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(7) { 
    animation: circle-7 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(8) { 
    animation: circle-8 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(9) {
    animation: circle-9 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(10) {
    animation: circle-10 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(11) {
    animation: circle-11 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

.circle:nth-child(12) {
    animation: circle-12 var(--breathing-initial-duration) ease-in-out alternate infinite; /* Slower, smoother easing */
}

@keyframes pulse {
    0% {
        transform: scale(.25) rotate(0deg); 
        opacity: 0.8; 
    }
    100% {
        transform: scale(1) rotate(360deg); 
        opacity: 1; 
    }
}

@keyframes circle-1 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(0px, -80px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-2 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(56px, -56px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-3 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(80px, 0px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-4 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(56px, 56px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-5 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(0px, 80px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-6 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-56px, 56px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-7 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-80px, 0px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-8 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-56px, -56px); /* Adjusted for new size */
        opacity: 0.85; 
    }
}

@keyframes circle-9 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(28px, -75px); /* New position */
        opacity: 0.85;
    }
}

@keyframes circle-10 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(75px, 28px); /* New position */
        opacity: 0.85;
    }
}

@keyframes circle-11 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-28px, 75px); /* New position */
        opacity: 0.85;
    }
}

@keyframes circle-12 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-75px, -28px); /* New position */
        opacity: 0.85;
    }
}

.breathing-message {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 1.2rem; /* Increased size */
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 2rem; /* Space below the animation */
    opacity: 0; /* Initially hidden */
    display: none; /* Initially not taking space */
    width: 100%;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}