:root {
    /* Brand Logo Cyan Palette */
    --logo-cyan: #00F2FF;
    /* The exact logo color */
    --heading-blue: #00D1DB;
    /* A slightly deeper Cyan for readability on light backgrounds */
    --body-blue: #00A3AB;
    /* Deep enough for accessibility but still very 'Cyan' */
    --accent-blue: #00F2FF;
    --bg-cyan-light: #F0FDFF;
    --blue-100: #E0F2F1;
    --blue-50: #F0F9FB;

    /* Neutral & Depth */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-shadow: 0 10px 15px -3px rgba(0, 242, 255, 0.1), 0 4px 6px -2px rgba(0, 242, 255, 0.05);
    --deep-shadow: 0 20px 25px -5px rgba(0, 242, 255, 0.1), 0 10px 10px -5px rgba(0, 242, 255, 0.04);
    --transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--body-blue);
    line-height: 1.7;
    background-color: #030608;
    overflow-x: hidden;
    width: 100%;
}

/* Cosmic Grain Texture Overlay展 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Custom Scrollbar展 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #030608;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--logo-cyan), var(--heading-blue));
    border-radius: 10px;
    border: 2px solid #030608;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--white);
    box-shadow: 0 0 10px var(--logo-cyan);
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--heading-blue);
    font-weight: 800;
    letter-spacing: -0.04em;
    /* Elite tighter kerning */
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    letter-spacing: -0.02em;
}

/* Navbar - Dark Glassmorphism Refresh */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 18, 26, 0.85);
    /* Darker space-themed glass */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    /* Cyan accent border */
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
    /* Brighter for dark background */
    letter-spacing: -0.01em;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.8), 0 0 20px rgba(0, 242, 255, 0.4);
}

.logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.9));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    /* Lighter text for dark bg */
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    color: var(--logo-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.8);
}

.badges-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.badge-handmade {
    background: var(--heading-blue);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.badge-premium {
    background: var(--white);
    color: var(--heading-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--logo-cyan);
    box-shadow: var(--premium-shadow);
    transform: rotate(2deg);
    transition: var(--transition);
}

.badge-handmade:hover,
.badge-premium:hover {
    transform: rotate(0deg) scale(1.1);
}

.cta-btn {
    color: var(--logo-cyan);
    font-weight: 700;
    transition: var(--transition);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.3);
}

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

.cta-btn:hover {
    color: var(--white);
    text-shadow: 0 0 15px var(--logo-cyan), 0 0 25px rgba(0, 242, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--logo-cyan);
    /* Bright cyan for visibility */
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 242, 255, 0.5);
}

/* Hero Section - Elevated Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2.5rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1.2;
    padding-right: 4rem;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    color: var(--heading-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid var(--logo-cyan);
    animation: fadeInDown 0.8s ease-out forwards;
}

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

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

.hero h1,
.animated-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg,
            var(--heading-blue) 0%,
            var(--logo-cyan) 25%,
            #ffffff 50%,
            var(--logo-cyan) 75%,
            var(--heading-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    animation:
        titleReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        titleShimmer 4s linear infinite;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleShimmer {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: var(--body-blue);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.hero-reviews-link {
    text-decoration: none;
    color: var(--logo-cyan);
    font-weight: 600;
    font-size: 1rem;
    margin-left: 0.5rem;
    position: relative;
    transition: var(--transition);
}

.hero-reviews-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--logo-cyan);
    transition: var(--transition);
}

.hero-reviews-link:hover {
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.hero-reviews-link:hover:after {
    width: 100%;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: var(--heading-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--logo-cyan);
    color: #030608;
    /* Dark text on bright background */
    box-shadow: 0 0 25px var(--logo-cyan), 0 0 50px rgba(0, 242, 255, 0.4);
}

.btn.secondary {
    border: 1px solid var(--logo-cyan);
    color: var(--logo-cyan);
    background: rgba(0, 242, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn.secondary:hover {
    background: rgba(0, 242, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), inset 0 0 10px rgba(0, 242, 255, 0.3);
    color: var(--white);
    text-shadow: 0 0 8px var(--logo-cyan);
}

/* Cool Scanner Effect for Cards */
.product-card,
.service-card,
.feature-item {
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 242, 255, 0.05) 40%,
            rgba(0, 242, 255, 0.2) 50%,
            rgba(0, 242, 255, 0.05) 60%,
            transparent);
    z-index: 2;
    pointer-events: none;
    animation: scannerBeam 6s linear infinite;
}

@keyframes scannerBeam {
    0% {
        top: -100%;
    }

    20% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

.product-card:hover,
.service-card:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 242, 255, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(0, 242, 255, 0.4) !important;
}

.hero-graphic {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: floatingHero 6s ease-in-out infinite;
    /* Cooler floating effect */
}

@keyframes floatingHero {

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

    33% {
        transform: translateY(-30px) rotate(2deg);
    }

    66% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

.hero-logo-container {
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.floating-graphic {
    width: 85%;
    max-width: 420px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.7)) drop-shadow(0 0 60px rgba(0, 242, 255, 0.3));
    animation: float 8s ease-in-out infinite;
}

/* Sections General */
section {
    padding: 3.5rem 2.5rem;
    overflow: hidden;
    position: relative;
}

/* Tighten Competitors and Gallery sections */
#competitors {
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
}

#competitors .container {
    padding: 1rem 2rem !important;
}

#competitors .section-title {
    margin-bottom: 1.5rem !important;
}

#competitors .stat-item {
    margin-top: 0 !important;
    padding: 2rem !important;
}

.features {
    padding: 1rem 2.5rem !important;
    margin: 0 !important;
    min-height: auto !important;
}

.features .section-title {
    margin-bottom: 2rem !important;
}

.gallery {
    padding-top: 1rem !important;
    margin-top: 0 !important;
    min-height: auto !important;
}

.gallery .section-title {
    margin-bottom: 3rem !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-blue);
    position: relative;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3), 0 0 20px rgba(0, 242, 255, 0.2);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--logo-cyan);
    opacity: 0.15;
    filter: blur(8px);
    z-index: -1;
    animation: neonPulse 4s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        filter: blur(8px);
        opacity: 0.15;
    }

    50% {
        filter: blur(12px);
        opacity: 0.25;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--logo-cyan), var(--white), var(--logo-cyan), transparent);
    margin: 1.5rem auto 0;
    border-radius: 4px;
    box-shadow: 0 0 20px var(--logo-cyan);
    animation: glowStretch 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--body-blue);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes glowStretch {

    0%,
    100% {
        width: 100px;
        opacity: 0.5;
    }

    50% {
        width: 180px;
        opacity: 1;
    }
}

/* WOW About Section - Split Layout & Stats */
.about {
    background: rgba(8, 18, 26, 0.4);
    /* Dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    margin: 0 2rem 3rem;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    transform-style: preserve-3d;
}

.about-visual {
    background: rgba(0, 242, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    position: relative;
    border-right: 1px solid var(--blue-100);
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--logo-cyan) 0%, transparent 60%);
    opacity: 0.1;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

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

.profile-avatar {
    width: 240px;
    height: 240px;
    background: var(--white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure image follows morphing shape */
    box-shadow: var(--deep-shadow), 0 0 30px rgba(0, 242, 255, 0.2);
    border: 3px solid var(--logo-cyan);
    animation: morph 8s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: 0.5s;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-avatar:hover img {
    transform: scale(1.1);
}


@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.about-story {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.about-story h3 {
    font-size: 1.25rem;
    color: var(--heading-blue);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.about-story p {
    font-size: 1.25rem;
    color: var(--body-blue);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--bg-cyan-light);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--blue-100);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid var(--logo-cyan);
    box-shadow: 0 4px 10px rgba(0, 242, 255, 0.2);
    transition: var(--transition);
}

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

.custom-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--white);
    color: var(--heading-blue);
}

.stat-item:hover .stat-image {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--body-blue);
}

.stat-item:hover {
    background: var(--white);
    border-color: var(--logo-cyan);
    box-shadow: var(--premium-shadow);
}

.stat-item strong {
    display: block;
    color: var(--heading-blue);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.stat-item span {
    color: var(--body-blue);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        border-right: none;
        border-bottom: 1px solid var(--blue-100);
    }

    .about-story {
        padding: 4rem 2rem;
    }
}

/* Gallery - Modern Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
}

.product-card {
    background: rgba(8, 18, 26, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Holographic Shimmer Layer展 */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(0, 242, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    background-position: var(--shimmer-x, 100%) var(--shimmer-y, 100%);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.card-image {
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-info {
    padding: 2.5rem;
    text-align: center;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--logo-cyan);
}

.card-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services & Features Refresh */
.services {
    background-color: transparent;
    padding: 6rem 2.5rem;
    /* Reduced gap */
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    padding: 4rem 2.5rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--premium-shadow);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    border-color: var(--logo-cyan);
    transform: translateY(-10px);
    box-shadow: var(--deep-shadow);
}

/* Restoration Slider Section */
.restoration {
    padding: 6rem 2.5rem;
    background: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--body-blue);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: var(--deep-shadow), 0 0 30px rgba(0, 242, 255, 0.1);
    background: rgba(8, 18, 26, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

#creeper-slider {
    width: 100%;
    min-height: 400px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--logo-cyan);
}

.label-before {
    text-align: left;
}

.label-after {
    text-align: right;
}

/* Existing Service Card Icon */
.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(0, 242, 255, 0.2));
}

/* Features Section - Clean & Modern */
.features {
    background-color: transparent;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 4.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 32px;
    box-shadow: var(--premium-shadow);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 242, 255, 0.05);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    box-shadow: var(--deep-shadow);
    border-color: var(--logo-cyan);
}

.feature-icon-circle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Contact Section - Bold & High End */
.contact {
    background: transparent;
    color: var(--white);
    text-align: center;
    border-radius: 40px;
    margin: 0 2rem 5rem;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.contact::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--logo-cyan) 0%, transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0.1;
    z-index: 0;
}

.contact-box {
    position: relative;
    z-index: 1;
}

.contact-box h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-box p {
    color: var(--bg-cyan-light);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 1.25rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: var(--transition);
}

.email-link:hover {
    background: var(--white);
    color: var(--heading-blue);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.school-info {
    margin-top: 4rem;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

/* Animations Enhanced */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: fadeInUp 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-in-delayed {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: fadeInUp 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    /* Enhanced scale展 */
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Specific Animations */
.slide-in-bottom {
    transform: translateY(60px);
}

.slide-in-bottom.active {
    transform: translateY(0);
}

.scale-up {
    transform: scale(0.95);
}

.scale-up.active {
    transform: scale(1);
}

.bounce-in {
    transform: translateY(100px) scale(0.8);
}

.bounce-in.active {
    transform: translateY(0) scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 2100;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem;
        display: block;
    }

    .decorations-container {
        display: block;
        opacity: 0.5;
        /* Subtle on mobile */
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 3rem;
    }

    .hero-logo-container {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    section {
        padding: 4rem 1.25rem;
    }

    .about {
        margin: 0 1rem 3rem;
        border-radius: 20px;
    }

    .about-story {
        padding: 2.5rem 1.25rem;
    }

    .about-story h2 {
        font-size: 2.25rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.25rem;
    }

    .contact {
        margin: 0 1rem 3rem;
        padding: 4rem 1.25rem;
    }

    .contact-box h2 {
        font-size: 2.25rem;
    }

    .email-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .astronaut-container {
        display: block;
        transform: scale(0.6) translateX(-50px);
        /* Smaller on mobile */
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.25rem;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .product-card {
        border-radius: 24px;
    }

    .card-info {
        padding: 1.5rem;
    }

    .card-image {
        height: 280px;
    }
}

/* Background Blobs for Depth */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    background: var(--logo-cyan);
    top: -100px;
    right: -100px;
}

.blob-2 {
    background: #7000FF;
    /* Adding Purple for depth */
    bottom: -200px;
    left: -100px;
    animation-delay: -5s;
    opacity: 0.15;
}

.blob-3 {
    background: #00D1DB;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.07;
}

/* Magnetic Button Utility展 */
.btn,
.cta-btn {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

/* --- Space Animations --- */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Behind everything including blobs */
    background: radial-gradient(ellipse at bottom, #08121a 0%, #030608 100%);
    overflow: hidden;
}

/* Stars using box-shadow for performance */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: transparent;
    border-radius: 50%;
}

.stars-1 {
    width: 1px;
    height: 1px;
    box-shadow: 15vw 10vh #fff, 35vw 45vh #fff, 55vw 25vh #fff, 75vw 65vh #fff, 95vw 85vh #fff,
        10vw 80vh #fff, 30vw 20vh #fff, 50vw 90vh #fff, 70vw 30vh #fff, 90vw 10vh #fff,
        25vw 55vh #fff, 45vw 15vh #fff, 65vw 75vh #fff, 85vw 35vh #fff, 5vw 40vh #fff;
    animation: twinkle 4s ease-in-out infinite;
}

.stars-2 {
    width: 1.5px;
    height: 1.5px;
    box-shadow: 20vw 15vh #fff, 40vw 50vh #fff, 60vw 30vh #fff, 80vw 70vh #fff, 100vw 90vh #fff,
        15vw 85vh #fff, 35vw 25vh #fff, 55vw 95vh #fff, 75vw 35vh #fff, 95vw 15vh #fff,
        2vw 2vh #fff, 18vw 12vh #fff, 32vw 28vh #fff, 48vw 42vh #fff, 62vw 58vh #fff;
    animation: twinkle 6s ease-in-out infinite 1s;
}

.stars-3 {
    width: 2px;
    height: 2px;
    box-shadow: 5vw 5vh #fff, 25vw 35vh #fff, 45vw 15vh #fff, 65vw 55vh #fff, 85vw 75vh #fff,
        55vw 8vh #fff, 75vw 48vh #fff, 95vw 28vh #fff, 15vw 68vh #fff, 35vw 88vh #fff,
        12vw 92vh #fff, 28vw 72vh #fff, 42vw 52vh #fff, 58vw 32vh #fff, 72vw 12vh #fff;
    animation: twinkle 8s ease-in-out infinite 2s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Shooting Stars */
.shooting-stars {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: shootingStar 10s linear infinite;
}

.shooting-stars::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes shootingStar {
    0% {
        transform: rotate(215deg) translateX(0);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(215deg) translateX(-1500px);
        opacity: 0;
    }
}

/* Space Station - Removed Rectangular Borders */
.space-station {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: auto;
    opacity: 0.85;
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 0 20px rgba(0, 242, 255, 0.4));
    animation: stationFloat 4s ease-in-out infinite;
    z-index: 1;
    mix-blend-mode: screen;
    clip-path: circle(48%);
    -webkit-clip-path: circle(48%);
}

@keyframes stationFloat {

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

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

/* Constellation Canvas */
.constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Space Planets - Removed Rectangular Borders */
.space-planet {
    position: absolute;
    image-rendering: auto;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 0 20px rgba(0, 242, 255, 0.4));
    animation: planetOrbit 60s ease-in-out infinite;
    background: transparent !important;
    clip-path: circle(48%);
    /* Cut off edges */
    -webkit-clip-path: circle(48%);
}

.planet-mars {
    width: 80px;
    top: 25%;
    left: 10%;
    animation-duration: 50s;
}

.planet-saturn {
    width: 140px;
    /* Slightly larger */
    bottom: 10%;
    left: 10%;
    animation-duration: 80s;
    animation-delay: -20s;
}

@keyframes planetOrbit {

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

    25% {
        transform: translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }

    75% {
        transform: translateY(-40px) rotate(4deg);
    }
}

/* Space Asteroids */
.space-asteroid {
    position: absolute;
    width: 40px;
    image-rendering: auto;
    mix-blend-mode: screen;
    opacity: 0.8;
    animation: asteroidDrift 40s linear infinite;
    background: transparent !important;
    clip-path: circle(48%);
    -webkit-clip-path: circle(48%);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
}

.asteroid-1 {
    top: 40%;
    left: 5%;
    animation-duration: 35s;
}

.asteroid-2 {
    top: 70%;
    right: 20%;
    animation-duration: 45s;
    animation-delay: -15s;
}

@keyframes asteroidDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, -30px) rotate(360deg);
    }
}

/* Animated Gradient Backgrounds for Sections */
.about,
.services,
.features {
    background: linear-gradient(135deg,
            rgba(8, 18, 26, 0.4) 0%,
            rgba(0, 242, 255, 0.05) 50%,
            rgba(8, 18, 26, 0.4) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Pulsing Glow Effects - Restored */
.logo img,
.floating-graphic {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.9));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(0, 242, 255, 1)) drop-shadow(0 0 40px rgba(0, 242, 255, 0.5));
    }
}

/* Enhanced 3D Card Effects with Cursor Following */
.product-card,
.service-card,
.feature-item,
.stat-item,
.card-image,
.profile-avatar {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out !important;
    will-change: transform;
}

.product-card:hover,
.service-card:hover,
.feature-item:hover {
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.3), 0 0 30px rgba(0, 242, 255, 0.2) !important;
}



/* Astronaut Animation handled in JS now */
.astronaut-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 60px;
    height: 100px;
    z-index: 20;
    pointer-events: none;
    /* Initial state */
    transform: translateX(-100px);
}

.astronaut-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.5));
}


.decoration-ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
    opacity: 0.8;
}

.ball-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: -40px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.2), transparent);
}

.ball-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(112, 0, 255, 0.15), transparent);
    animation-delay: -2s;
}

.ball-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    opacity: 0.4;
    background: radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.1), transparent);
    animation-delay: -4s;
}

.ball-4 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    animation-delay: -6s;
}

@keyframes ballFloat {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(30px, 40px) rotate(10deg);
    }
}

/* Video Showcase Section - Premiere Aesthetic */
.video-showcase {
    padding: 4rem 2.5rem;
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
}

.showcase-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--body-blue);
    font-size: 1.25rem;
    margin-top: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-video-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    background: rgba(8, 18, 26, 0.6);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    border: 1px solid rgba(0, 242, 255, 0.25);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(0, 242, 255, 0.1),
        inset 0 0 30px rgba(0, 242, 255, 0.05);
    transform: perspective(2000px) rotateX(1deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-video-container:hover {
    transform: perspective(2000px) rotateX(0deg) translateY(-15px);
    border-color: rgba(0, 242, 255, 0.45);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 242, 255, 0.2),
        inset 0 0 40px rgba(0, 242, 255, 0.1);
}

.video-frame {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-top-bar {
    background: #1a1e22;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-dots span:nth-child(1) {
    background: #ff5f56;
}

.window-dots span:nth-child(2) {
    background: #ffbd2e;
}

.window-dots span:nth-child(3) {
    background: #27c93f;
}

.video-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--logo-cyan);
    letter-spacing: 0.1em;
    animation: pulseAlpha 2s infinite;
}

@keyframes pulseAlpha {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.video-content {
    position: relative;
    line-height: 0;
}

.video-content video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

.video-overlay-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1) 0%, transparent 40%, rgba(0, 242, 255, 0.1) 100%);
    z-index: 2;
}

.video-stats-overlay {
    position: absolute;
    bottom: -20px;
    right: 40px;
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.stat-pill {
    background: var(--heading-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatVertical 4s ease-in-out infinite;
}

.stat-pill:nth-child(2) {
    animation-delay: -2s;
    background: var(--white);
    color: var(--heading-blue);
    border: 1px solid var(--logo-cyan);
}

@keyframes floatVertical {

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

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

@media (max-width: 992px) {
    .premium-video-container {
        padding: 1.5rem;
        border-radius: 32px;
    }

    .video-stats-overlay {
        right: 20px;
        bottom: -15px;
    }

    .stat-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 4rem 1.5rem;
    }

    .video-stats-overlay {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }
}

/* Coming Soon Locked State */
.coming-soon {
    position: relative;
    overflow: hidden;
}

.coming-soon::after {
    content: 'COMING SOON';
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 26, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-cyan);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.coming-soon:hover::after {
    opacity: 1;
}

.coming-soon::before {
    content: '🔒';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    z-index: 11;
    opacity: 0.5;
    transition: var(--transition);
}

.coming-soon:hover::before {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--heading-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--logo-cyan);
    color: #030608;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px var(--logo-cyan), 0 0 50px rgba(0, 242, 255, 0.4);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Personal Website Link Styles */
.about-actions {
    margin: 2rem 0;
}

.personal-btn {
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-width: 2px;
}

.btn-icon {
    font-size: 1.2rem;
}

footer {
    padding: 4rem 2rem;
    background: rgba(8, 18, 26, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-link {
    color: var(--logo-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition);
    background: rgba(0, 242, 255, 0.05);
}

.footer-link:hover {
    background: var(--logo-cyan);
    color: #030608;
    box-shadow: 0 0 20px var(--logo-cyan);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-actions {
        display: flex;
        justify-content: center;
    }
}

/* --- NEW SECTIONS STYLES --- */

/* Process Section */
.process {
    background: rgba(8, 18, 26, 0.3);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: rgba(8, 18, 26, 0.6);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: var(--logo-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

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

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

.step-item:nth-child(2) .step-icon {
    animation-delay: 1s;
}

.step-item:nth-child(3) .step-icon {
    animation-delay: 2s;
}

.step-item:nth-child(4) .step-icon {
    animation-delay: 3s;
}

.step-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-counter {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-box {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--logo-cyan);
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--body-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQ Section */
.faq {
    background: rgba(8, 18, 26, 0.2);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    background: rgba(8, 18, 26, 0.4);
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--logo-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 242, 255, 0.02);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: rgba(0, 163, 171, 0.8);
}

.faq-item.active {
    border-color: var(--logo-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Newsletter Section */
.newsletter {
    padding: 8rem 2rem;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(8, 18, 26, 0.9), rgba(0, 242, 255, 0.05));
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    backdrop-filter: blur(20px);
}

.newsletter-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--logo-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

@media (max-width: 992px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--logo-cyan), var(--heading-blue));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 15px var(--logo-cyan);
}

/* Testimonials Section */
.testimonials {
    background: rgba(8, 18, 26, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(8, 18, 26, 0.6);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--logo-cyan);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.1);
}

.quote-icon {
    font-size: 5rem;
    color: var(--logo-cyan);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
}

.review-stars {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2px;
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tester-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tester-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--logo-cyan);
    overflow: hidden;
    /* Ensure images stay in circle */
}

.stylized-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Masking pixelation with a subtle filter and glow */
    filter: contrast(1.1) brightness(1.1);
    border-radius: 50%;
}

.tester-details strong {
    display: block;
    color: var(--logo-cyan);
    font-size: 1.1rem;
}

.tester-details span {
    color: var(--body-blue);
}

.review-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 242, 255, 0.03);
    border-radius: 24px;
    border: 1px dashed rgba(0, 242, 255, 0.2);
}

.review-cta p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Mission Statement Section */
.mission-statement {
    padding: 8rem 2rem;
}

.mission-box {
    background: linear-gradient(135deg, rgba(8, 18, 26, 0.9), rgba(0, 242, 255, 0.05));
    padding: 5rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 4rem;
    backdrop-filter: blur(20px);
}

.mission-text p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.mission-text .section-title {
    text-align: left;
}

.mission-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.m-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--logo-cyan);
    border-radius: 50px;
    color: var(--logo-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.mission-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image img {
    width: 80%;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
    animation: pulseLogo 4s ease-in-out infinite;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.8));
    }
}

@media (max-width: 992px) {
    .mission-box {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        text-align: center;
    }

    .mission-badges {
        justify-content: center;
    }

    .mission-text .section-title {
        text-align: center;
    }

    .mission-image {
        order: -1;
    }
}

/* PWA Install Banner */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 18, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(0, 242, 255, 0.3);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0, 242, 255, 0.15);
}

.pwa-install-banner.show {
    transform: translateY(0);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pwa-banner-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.8));
}

.pwa-banner-text strong {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.pwa-banner-text span {
    color: var(--body-blue);
    font-size: 0.9rem;
}

.pwa-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.pwa-install-btn {
    padding: 0.75rem 2rem;
    background: var(--logo-cyan);
    color: #030608;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.pwa-install-btn:hover {
    box-shadow: 0 0 25px var(--logo-cyan);
    transform: scale(1.05);
}

.pwa-dismiss-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--body-blue);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.pwa-dismiss-btn:hover {
    border-color: var(--logo-cyan);
    color: var(--white);
}

@media (max-width: 600px) {
    .pwa-install-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .pwa-banner-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Paper Story Section */
.paper-story {
    padding: 10rem 2rem;
    background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.05), transparent);
}

.story-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 4rem;
    padding: 5rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 4rem;
    position: relative;
}

.floating-paper {
    animation: float 4s ease-in-out infinite;
}

.transform-arrow {
    font-size: 2.5rem;
    color: var(--logo-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.glowing-bookmark {
    animation: float 4s ease-in-out infinite reverse;
    filter: drop-shadow(0 0 20px var(--logo-cyan));
}

.story-content h2 {
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .story-box {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
    }

    .story-content h2 {
        text-align: center;
    }

    .story-visual {
        margin-bottom: 2rem;
    }
}

/* Toolkit Section */
.toolkit {
    padding: 8rem 0;
    background: rgba(8, 18, 26, 0.3);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.toolkit-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.toolkit-item:hover {
    background: rgba(0, 242, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--logo-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.toolkit-item h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.toolkit-item p {
    font-size: 1rem;
    color: var(--body-blue);
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: 10rem 0;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 5rem auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 242, 255, 0.1);
}

.roadmap-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #030608;
    border: 4px solid var(--logo-cyan);
    z-index: 2;
    box-shadow: 0 0 15px var(--logo-cyan);
}

.roadmap-item.upcoming::before {
    background: #030608;
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: none;
}

.roadmap-date {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--logo-cyan);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.roadmap-info {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.roadmap-item:hover .roadmap-info {
    background: rgba(0, 242, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--logo-cyan);
}

.roadmap-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.roadmap-info p {
    color: var(--body-blue);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 15px;
    }

    .roadmap-item {
        padding-left: 50px;
    }

    .roadmap-item::before {
        left: 7px;
    }
}

/* Philosophy Section */
.philosophy {
    padding: 10rem 0;
}

.philosophy-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 5rem;
    border-radius: 40px;
}

.philosophy-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
}

.canvas-heart {
    animation: heartPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.4));
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.6));
    }
}

/* Mood Matcher Section */
.mood-matcher {
    padding: 10rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.03), transparent);
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.mood-card {
    background: rgba(8, 18, 26, 0.6);
    padding: 3rem 2rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.mood-card:hover::before {
    opacity: 0.15;
}

.mood-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mood-card * {
    position: relative;
    z-index: 1;
}

.mood-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mood-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.mood-card p {
    font-size: 1.15rem;
    color: var(--body-blue);
    line-height: 1.6;
}

/* Category Colors */
.mood-card.fantasy {
    --accent-color: #bc13fe;
}

.mood-card.scifi {
    --accent-color: #00f2ff;
}

.mood-card.mystery {
    --accent-color: #ff3e3e;
}

.mood-card.nature {
    --accent-color: #3eff5a;
}

/* Spreading Joy Section */
.impact-section {
    padding: 10rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.impact-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.impact-content p:hover {
    transform: scale(1.02);
    color: var(--logo-cyan);
}

.impact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
}

.joy-pulse {
    animation: sunBeam 6s linear infinite;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
}

@keyframes sunBeam {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

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

/* Academy Tips Section */
.academy-tips {
    padding: 10rem 0;
    background: rgba(8, 18, 26, 0.4);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 4rem 3rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--logo-cyan);
    transform: perspective(1000px) rotateX(5deg);
}

.tip-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--logo-cyan);
    opacity: 0.15;
    font-family: 'Outfit', sans-serif;
}

.tip-card p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {

    .philosophy-box,
    .impact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }

    .philosophy-visual,
    .impact-visual {
        order: -1;
        margin-bottom: 3rem;
    }
}

.mood-card.selected {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px var(--accent-color);
}

/* Enhanced Scroll Reveal for New Sections */
.philosophy,
.mood-matcher,
.impact-section,
.academy-tips {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy.active,
.mood-matcher.active,
.impact-section.active,
.academy-tips.active {
    opacity: 1;
    transform: translateY(0);
}

/* Spotlight Effect for Philosophy */
.philosophy.active .philosophy-box {
    animation: spotlightReveal 1.5s ease-out forwards;
}

@keyframes spotlightReveal {
    from {
        clip-path: circle(0% at 50% 50%);
    }

    to {
        clip-path: circle(150% at 50% 50%);
    }
}

/* Visitor Banner Notification */
.visitor-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    padding: 1rem 2rem;
    background: rgba(8, 18, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 255, 0.1);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.visitor-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-icon {
    font-size: 1.4rem;
    animation: simpleFloat 3s ease-in-out infinite;
}

#visitor-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

#visitor-text strong {
    color: var(--logo-cyan);
    font-weight: 800;
}

@keyframes simpleFloat {

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

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

@media (max-width: 768px) {
    .visitor-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        transform: translateY(200%);
    }
}

/* Among Us Easter Egg */
.mini-among-us {
    position: fixed;
    bottom: 20%;
    right: 30px;
    width: 45px;
    height: auto;
    z-index: 20000;
    cursor: pointer;
    animation: floatingSus 8s ease-in-out infinite, rotationSus 20s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mini-among-us:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 1));
}

.mini-among-us img {
    width: 100%;
    height: auto;
}

.giant-among-us-container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 100000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(30px);
}

.giant-among-us-container.active {
    display: flex;
    animation: susAppear 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.giant-among-us {
    height: 70vh;
    width: auto;
    object-fit: contain;
    animation: susHeartbeat 1.5s ease-in-out infinite;
}

.sus-text {
    color: #ff0000;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin-top: 1rem;
    letter-spacing: 1rem;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    animation: textFlicker 0.2s infinite;
}

.sus-back-btn {
    margin-top: 3rem;
    padding: 1.2rem 3rem;
    background: #ff0000;
    color: white;
    border: 4px solid #800000;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    z-index: 100001;
    /* Above the overlay content */
}

.sus-back-btn:hover {
    transform: scale(1.1) rotate(-1deg);
    background: #ff3333;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
}

.sus-back-btn:active {
    transform: scale(0.95);
}

@keyframes floatingSus {

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

    33% {
        transform: translate(-30px, 20px);
    }

    66% {
        transform: translate(20px, -40px);
    }
}

@keyframes rotationSus {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes susAppear {
    from {
        transform: scale(0.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes susHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes textFlicker {
    0% {
        opacity: 1;
        filter: blur(0);
    }

    50% {
        opacity: 0.7;
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* XP Jar Feature */
.xp-jar-container {
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 999;
    pointer-events: auto;
    cursor: pointer;
}

.xp-jar {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(0, 242, 255, 0.3);
    border-radius: 10px 10px 20px 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.xp-jar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: rgba(0, 242, 255, 0.4);
    border-radius: 4px;
}

.xp-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--logo-cyan), #fff);
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px var(--logo-cyan);
}

.xp-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--white);
    text-shadow: 0 0 5px #000;
    z-index: 2;
}

/* XP Jar States */
.xp-jar.full {
    animation: fullGlow 2s ease-in-out infinite, jarPulse 1.5s ease-in-out infinite;
    border-color: #fff;
    box-shadow: 0 0 25px var(--logo-cyan), 0 0 50px rgba(0, 242, 255, 0.4);
}

.xp-jar.shake {
    animation: jarShake 0.4s ease-in-out;
}

@keyframes fullGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--logo-cyan));
    }

    50% {
        filter: drop-shadow(0 0 25px #fff);
    }
}

@keyframes jarPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes jarShake {

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

    25% {
        transform: translateX(-5px) rotate(-5deg);
    }

    75% {
        transform: translateX(5px) rotate(5deg);
    }
}

/* Present Overlay */
.present-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 26, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.present-overlay.active {
    display: flex;
    animation: fadeIn 0.5s ease forwards;
}

.present-box {
    text-align: center;
}

.present-trigger {
    font-size: 15rem;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.present-trigger:hover {
    transform: scale(1.1) rotate(5deg);
}

.present-trigger.open {
    animation: explode 0.5s ease forwards;
}

.joke-reveal {
    display: none;
    max-width: 600px;
    padding: 2rem;
}

.joke-reveal.active {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

#joke-text {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@keyframes explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
        filter: blur(10px);
    }

    100% {
        transform: scale(3);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .xp-jar-container {
        top: auto;
        bottom: 20px;
        left: 20px;
    }

    #joke-text {
        font-size: 1.5rem;
    }
}

/* Shooting Star */
.shooting-star {
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.shooting-star.active {
    animation: shoot 1.5s linear forwards;
}

@keyframes shoot {
    0% {
        transform: translate(0, 0) rotate(45deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translate(10vw, 10vh) rotate(45deg) scale(1);
    }

    100% {
        transform: translate(100vw, 100vh) rotate(45deg) scale(1);
        opacity: 0;
    }
}

/* Magnetic Button Utility */
.magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Other Projects Section */
.other-projects {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--logo-cyan);
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(5px);
}

.other-projects h4 {
    margin-bottom: 1rem;
    color: var(--logo-cyan);
    font-size: 1.2rem;
    font-weight: 700;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-tag {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: var(--logo-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

/* --- NEW FEATURES STYLES --- */

/* Achievement Toast Display */
.achievement-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.achievement-toast {
    background: rgba(8, 18, 26, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--logo-cyan);
    padding: 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 255, 0.25);
    transform: translateX(130%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.achievement-toast.show {
    transform: translateX(0);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.achievement-info h4 {
    color: var(--logo-cyan);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
}

.achievement-info p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Doodle Section */
.doodle-section {
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.03) 0%, transparent 70%);
}

.doodle-container {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.doodle-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 255, 0.15);
    backdrop-filter: blur(10px);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.control-group label {
    color: var(--logo-cyan);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.doodle-tool-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.doodle-tool-btn.active {
    background: var(--logo-cyan);
    color: #030608;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    border-color: var(--logo-cyan);
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 400px;
    /* Keep colors contained */
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.color-swatch.active {
    border-color: var(--white);
    transform: scale(1.2) translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.template-selector {
    display: flex;
    gap: 0.75rem;
}

.template-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.template-btn.active {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--logo-cyan);
    color: var(--logo-cyan);
}

.doodle-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.bookmark-canvas-wrapper {
    position: relative;
    width: 300px;
    height: 640px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 242, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
    cursor: crosshair;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bookmark-canvas-wrapper.shape-corner {
    width: 350px;
    height: 350px;
    border-radius: 16px 160px 16px 16px;
}

.bookmark-canvas-wrapper.shape-wide {
    width: 450px;
    height: 250px;
}

.bookmark-canvas-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
}

#doodle-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.canvas-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 242, 255, 0.05);
    pointer-events: none;
    z-index: 5;
}

.canvas-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.05);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Custom Cosmic Cursor & Trails */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--logo-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10005;
    mix-blend-mode: screen;
    box-shadow: 0 0 15px var(--logo-cyan), 0 0 30px rgba(0, 242, 255, 0.5);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovering {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.2);
    border: 2px solid var(--logo-cyan);
}

.cursor-trail {
    width: 4px;
    height: 4px;
    background: var(--logo-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10004;
    opacity: 0.8;
    box-shadow: 0 0 10px var(--logo-cyan);
    animation: cursorParticleFade 1s forwards ease-out;
}

@keyframes cursorParticleFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -100%) scale(0) rotate(90deg);
    }
}

/* Success State for Clear Button */
.btn.success {
    background: #00FF19 !important;
    color: #030608 !important;
    border-color: #00FF19 !important;
    box-shadow: 0 0 20px rgba(0, 255, 25, 0.4) !important;
}

@media (max-width: 768px) {
    .doodle-controls {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .bookmark-canvas-wrapper {
        width: 240px;
        height: 500px;
    }

    .custom-cursor,
    .cursor-trail {
        display: none;
        /* Hide custom cursor on mobile */
    }
}

/* Footer & Cookie Consent Branding */
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(8, 18, 26, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 24px;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
    transform: translateY(200%);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 255, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.cookie-text a {
    color: var(--logo-cyan);
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 1.5rem;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
        color: var(--body-blue);
    }

    .cookie-text {
        font-size: 0.9rem;
    }
}

/* Book Battle Styling */
.book-battle {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.05) 0%, transparent 70%);
    padding: 8rem 0;
}

.battle-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.battle-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 40px;
    padding: 3rem;
    width: 350px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.battle-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--logo-cyan);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.2);
}

.battle-visual {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.battle-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.battle-card:hover .battle-visual img {
    transform: scale(1.1);
}

.battle-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vote-counter {
    margin-bottom: 2rem;
}

.vote-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--logo-cyan);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.vote-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--body-blue);
}

.battle-vs {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, #7000FF, #00F2FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
    animation: vsPulse 2s ease-in-out infinite;
}

@keyframes vsPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.winner-timer {
    text-align: center;
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(0, 242, 255, 0.05);
    border-radius: 20px;
    border: 1px dashed rgba(0, 242, 255, 0.3);
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.winner-timer p {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
}

.winner-timer strong {
    color: var(--logo-cyan);
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .battle-vs {
        order: -1;
        width: 100%;
        margin-bottom: 2rem;
    }
}