/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden; /* Apply to both html and body */
    line-height: 1.2;
}


/* Utility for gradient text */
.gradient-text {
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
}

/* Landing Page Container */
.landing-page {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #000000;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Set explicit height */
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.1); /* Added light transparent background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo-container {
    width: 108px; /* Reduced to 50% of previous size (216px) */
    height: 54px; /* Reduced to 50% of previous size (108px) */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 24px;
}

/* Hide mobile menu icon by default */
.mobile-menu-icon {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px; /* Adjust size as needed */
    cursor: pointer;
    padding: 0; /* Remove padding if any */
}

.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.15;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom for desktop */
    background-color: #000000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-video, .hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bottom-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Changed height */
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); /* Adjusted for 100% transparent at top */
    z-index: 1; /* Ensure it's above the video but below content */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Keep internal alignment */
    align-items: center;
    padding-bottom: 0; /* Remove bottom padding for desktop bottom alignment */
    flex: 1; /* Allow content to fill space before being pushed down for desktop */
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0; /* Ensure no extra margin at the bottom */
}

.hero-logo-container {
    display: flex;
    align-items: center; /* Vertically align items */
    gap: 20px; /* Add some space between items */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items horizontally */
}

.soma-logo-svg {
    width: 400px; /* Reverted to original size */
    height: auto;
    margin-bottom: 5px; /* Reduced margin-bottom */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-subtitle-jp {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 0.9;
    text-align: center;
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Hero title and features moved to intro section */
.hero-title-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 10;
    max-width: 1000px;
    margin-bottom: 40px;
}

.hero-main-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 0.9;
    text-align: center;
    /* CSS Variables for customization */
    --base-color: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    --shimmer-color: rgba(255, 255, 255, 0.8);
    --shimmer-duration: 2s;
    --shimmer-spread: 40px; /* Will be dynamically adjusted by JS */
    /* Base styling */
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(30px) scale(0.95); /* Add initial scale */
    filter: blur(5px); /* Add initial blur */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out, filter 1s ease-out; /* Add filter transition */
    /* Text styling */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* Shimmer effect */
    background-image:
        linear-gradient(
            90deg,
            transparent calc(50% - var(--shimmer-spread)),
            var(--shimmer-color),
            transparent calc(50% + var(--shimmer-spread))
        ),
        var(--base-color);
    background-size: 250% 100%, 100% 100%;
    background-position: 100% 0%, 0% 0%;
    background-repeat: no-repeat;
    animation: framer-shimmer var(--shimmer-duration) linear infinite;
}

.hero-main-title.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal scale */
    filter: blur(0px); /* Remove blur */
}

/* Glow effect for hero-main-title - only on mobile */
@media (max-width: 768px) {
    .hero-main-title::after {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: blur(10px);
        z-index: -1;
        opacity: 0.85;
        animation: glowKineticTight 3s infinite ease-in-out;
        will-change: transform, filter, opacity;
        display: block;
        text-align: center;
        pointer-events: none;
        letter-spacing: 0.02em; /* Match the original text */
        line-height: 0.9; /* Match the original text */
    }

    .hero-main-title::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: blur(18px);
        z-index: -2;
        opacity: 0.7;
        animation: glowKineticWideTight 4s infinite ease-in-out;
        will-change: transform, filter, opacity;
        display: block;
        text-align: center;
        pointer-events: none;
        letter-spacing: 0.02em; /* Match the original text */
        line-height: 0.9; /* Match the original text */
    }
}

/* For desktop, no glow effect on hero-main-title */
@media (min-width: 769px) {
    .hero-main-title::before,
    .hero-main-title::after {
        display: none;
    }
}

.hero-sub-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 41px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    white-space: nowrap; /* Prevent feature points from wrapping */
}

.feature-point {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(20px) scale(0.9); /* Add initial scale */
    filter: blur(4px); /* Add initial blur */
    transition: opacity 1.0s ease-out, transform 1.0s ease-out, filter 0.8s ease-out; /* Adjust timing */
    transition-delay: calc(var(--index, 0) * 0.2s); /* Slightly faster stagger */

    /* CSS Variables for shimmer customization - monochrome */
    --base-color: linear-gradient(to right, #595959 0%, #595959 50%, #595959 100%);
    --shimmer-color: rgba(255, 255, 255, 0.8);
    --shimmer-duration: 2s;
    --shimmer-spread: 40px;

    /* Text styling with shimmer */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);

    /* Shimmer effect */
    background-image:
        linear-gradient(
            90deg,
            transparent calc(50% - var(--shimmer-spread)),
            var(--shimmer-color),
            transparent calc(50% + var(--shimmer-spread))
        ),
        var(--base-color);
    background-size: 250% 100%, 100% 100%;
    background-position: 100% 0%, 0% 0%;
    background-repeat: no-repeat;
    animation: framer-shimmer var(--shimmer-duration) linear infinite;
}

.feature-point.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal scale */
    filter: blur(0px); /* Remove blur */
}

/* Introduction Section */
.intro-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

    .intro-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 800px;
        padding: 0 40px;
    }

    @media (max-width: 768px) {
        .intro-content {
            padding: 0 20px;
            margin: 40px 0;
        }
    }

.intro-title-container {
    margin-bottom: 30px;
}

.intro-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
}

/* Features Section */
.features-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #000000;
}

.feature-item {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    opacity: 0; /* Start fully transparent */
    transform: translateY(60px) scale(0.95); /* Start lower and slightly smaller */
    filter: blur(8px); /* Start blurred */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out, filter 1.2s ease-out; /* Smoother transition */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */ /* Removed border */
}

.feature-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal to normal position and scale */
    filter: blur(0px); /* Remove blur */
}

.feature-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.feature-video-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    position: relative;
}

.feature-video, .feature-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay for feature videos (matches hero overlay) */
.feature-bottom-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 237px; /* Same height as hero overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1; /* Above video, below text container */
    pointer-events: none; /* Allow clicks to pass through */
}

    @media (max-width: 768px) {
        /* Hide feature gradient on mobile if needed, or adjust height */
        .feature-bottom-gradient-overlay {
             display: none; /* Example: Hide on mobile */
             /* height: 100px; */ /* Example: Reduce height on mobile */
        }

        .feature-item {
            position: relative; /* Ensure proper positioning context */
            overflow: hidden !important; /* Change from visible to hidden */
        }

        .feature-video-container {
            position: relative; /* Ensure proper stacking context */
            z-index: 0; /* Lower z-index for the video container */
        }

        /* Position the text container */
        .feature-text-container {
            position: relative; /* Changed to relative positioning */
            width: 100%;
            z-index: 20; /* Higher z-index to ensure it's above the video */
            padding: 20px; /* Add padding for better spacing */
            background-color: transparent; /* No background */
        }
    }

/* Removed overlay styles */

.feature-text-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 40px 80px;
    display: flex; /* Make it a flex container */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between title and description */
    background-color: rgba(0, 0, 0, 0.15); /* Updated background color */
    backdrop-filter: blur(20px); /* Same as header background */
    -webkit-backdrop-filter: blur(20px); /* Same as header background */
    opacity: 0;
    transform: translateY(30px);
    /* Apply transition with a delay after the parent .feature-item starts revealing */
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.feature-text-container.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-title-frame {
    flex: 0 0 40%; /* Take up 40% of the container width */
    display: flex;
    align-items: center;
    margin-bottom: 0; /* Remove bottom margin */
    opacity: 0;
    transform: translateY(20px) scale(0.9); /* Add initial scale */
    /* Stagger delay further */
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.feature-title-frame.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal to normal scale */
}

.feature-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 0.9;
    text-align: left; /* Left align instead of center */
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.02em;
}

.feature-description-frame {
    flex: 0 0 55%; /* Take up 55% of the container width */
    margin-left: 5%; /* Add some space between title and description */
    opacity: 0;
    transform: translateY(20px) scale(0.9); /* Add initial scale */
    /* Stagger delay even further */
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

.feature-description-frame.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal to normal scale */
}

/* General style for feature description paragraphs */
.feature-description {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Prioritize SF Pro Display */
    font-size: 21px; /* Updated */
    font-style: normal; /* Added */
    font-weight: 500; /* Updated to medium weight */
    line-height: 1.381002381; /* Updated */
    text-transform: capitalize; /* Added */
    color: #86868B; /* Updated base paragraph color */
    max-width: 600px;
    margin: 0 auto 30px;
    letter-spacing: normal; /* Reset letter spacing to default */
    text-align: center; /* Center align */
}

/* Override for feature descriptions within .feature-description-frame (Desktop) */
.feature-description-frame .feature-description {
    color: var(--Neutral-N0, #FFF) !important; /* Ensure color override */
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 25px */
    letter-spacing: normal; /* Reset letter spacing */
    text-align: left !important; /* Ensure text alignment override */
    text-transform: none;
    max-width: none;
    margin: 0;
}


/* CTA Section */
.cta-section {
    padding: 50px 0 20px; /* Reduced top padding from 100px */
    text-align: center;
    position: relative;
    /* min-height: 100vh; */ /* Removed to allow section to shrink */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #000000;
}

.cta-content {
    z-index: 1;
    max-width: 872px;
    margin-bottom: 30px; /* Reduced space below text from 60px */
    margin-top: 30px; /* Added spacing below the Japanese subtitle */
}

.cta-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 125%;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    /* CSS Variables for customization */
    --base-color: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    --shimmer-color: rgba(255, 255, 255, 0.8);
    --shimmer-duration: 2s;
    --shimmer-spread: 40px; /* Will be dynamically adjusted by JS */
    /* Base styling */
    position: relative;
    /* Start revealed state for CTA title will be handled by JS, but set initial state for potential non-JS scenarios */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(5px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out, filter 1s ease-out;
    z-index: 1;
    /* Text styling */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* Shimmer effect */
    background-image:
        linear-gradient(
            90deg,
            transparent calc(50% - var(--shimmer-spread)),
            var(--shimmer-color),
            transparent calc(50% + var(--shimmer-spread))
        ),
        var(--base-color);
    background-size: 250% 100%, 100% 100%;
    background-position: 100% 0%, 0% 0%;
    background-repeat: no-repeat;
    animation: framer-shimmer var(--shimmer-duration) linear infinite;
}

/* Define the glow animation with movement for desktop */
@keyframes glowKinetic {
    0% {
        filter: blur(12px);
        opacity: 0.7;
        transform: translateX(-1px) translateY(0px);
    }
    25% {
        filter: blur(14px);
        opacity: 0.8;
        transform: translateX(0px) translateY(-1px);
    }
    50% {
        filter: blur(16px);
        opacity: 0.9;
        transform: translateX(1px) translateY(0px);
    }
    75% {
        filter: blur(14px);
        opacity: 0.8;
        transform: translateX(0px) translateY(1px);
    }
    100% {
        filter: blur(12px);
        opacity: 0.7;
        transform: translateX(-1px) translateY(0px);
    }
}

/* Tighter animation for main title's first glow layer */
@keyframes glowKineticTight {
    0% {
        filter: blur(9px);
        opacity: 0.8;
        transform: translateX(-0.5px) translateY(0px);
    }
    25% {
        filter: blur(10px);
        opacity: 0.85;
        transform: translateX(0px) translateY(-0.5px);
    }
    50% {
        filter: blur(11px);
        opacity: 0.9;
        transform: translateX(0.5px) translateY(0px);
    }
    75% {
        filter: blur(10px);
        opacity: 0.85;
        transform: translateX(0px) translateY(0.5px);
    }
    100% {
        filter: blur(9px);
        opacity: 0.8;
        transform: translateX(-0.5px) translateY(0px);
    }
}

@keyframes glowKineticWide {
    0% {
        filter: blur(20px);
        opacity: 0.4;
        transform: translateX(-2px) translateY(0px);
    }
    25% {
        filter: blur(22px);
        opacity: 0.5;
        transform: translateX(0px) translateY(-2px);
    }
    50% {
        filter: blur(25px);
        opacity: 0.6;
        transform: translateX(2px) translateY(0px);
    }
    75% {
        filter: blur(22px);
        opacity: 0.5;
        transform: translateX(0px) translateY(2px);
    }
    100% {
        filter: blur(20px);
        opacity: 0.4;
        transform: translateX(-2px) translateY(0px);
    }
}

/* Tighter animation for main title's second glow layer */
@keyframes glowKineticWideTight {
    0% {
        filter: blur(16px);
        opacity: 0.6;
        transform: translateX(-1px) translateY(0px);
    }
    25% {
        filter: blur(17px);
        opacity: 0.65;
        transform: translateX(0px) translateY(-1px);
    }
    50% {
        filter: blur(18px);
        opacity: 0.7;
        transform: translateX(1px) translateY(0px);
    }
    75% {
        filter: blur(17px);
        opacity: 0.65;
        transform: translateX(0px) translateY(1px);
    }
    100% {
        filter: blur(16px);
        opacity: 0.6;
        transform: translateX(-1px) translateY(0px);
    }
}

/* Improved shimmer animation based on Framer component */
@keyframes framer-shimmer {
  from {
    background-position: 100% 0%, 0% 0%; /* Start shimmer from right */
  }
  to {
    background-position: 0% 0%, 0% 0%; /* Move shimmer to left */
  }
}

/* Pulse Animation Keyframes */
@keyframes pulse-gradient {
  0% {
    transform: translateX(-50%) rotate(-1.2deg) scale(0.4);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) rotate(-1.2deg) scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) rotate(-1.2deg) scale(0.4);
    opacity: 0.6;
  }
}

/* Glowing text effect for CTA title - works regardless of revealed class */
.cta-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(15px);
    z-index: -1;
    opacity: 0.8;
    animation: glowKinetic 3s infinite ease-in-out;
    will-change: transform, filter, opacity;
    display: block; /* Ensure it's displayed */
    text-align: center;
    pointer-events: none; /* Prevent interference with text selection */
}

/* Additional glow layer for stronger effect - works regardless of revealed class */
.cta-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(25px);
    z-index: -2;
    opacity: 0.6;
    animation: glowKineticWide 4s infinite ease-in-out;
    will-change: transform, filter, opacity;
    display: block; /* Ensure it's displayed */
    text-align: center;
    pointer-events: none; /* Prevent interference with text selection */
}

.cta-title.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.cta-description {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    color: #BFBFBF;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 20px; /* Added bottom padding */
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px) scale(0.95); /* Add scale */
    filter: blur(3px); /* Add blur */
    transition: opacity 1.0s ease-out 0.3s, transform 1.0s ease-out 0.3s, filter 0.8s ease-out 0.3s; /* Stagger delay */
}

.cta-description.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal scale */
    filter: blur(0px); /* Remove blur */
}

.cta-image-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Further reduced from 500px */
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px) scale(0.9); /* Add scale */
    filter: blur(8px); /* Add blur */
    transition: opacity 1.0s ease-out 0.6s, transform 1.0s ease-out 0.6s, filter 0.8s ease-out 0.6s; /* Stagger delay */
}

.cta-image-container.revealed {
    opacity: 1;
    transform: translateY(0) scale(1); /* Reveal scale */
    filter: blur(0px); /* Remove blur */
}

.cta-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Collection Section - Adjusted for Standard Vertical Flow */
.collection-section {
    position: relative;
    background-color: #000000;
    height: auto; /* Allow height to be determined by content */
    overflow: visible; /* Allow content to be visible */
    padding: 80px 0; /* Add vertical padding */
}

.collection-sticky-container {
    /* Removed sticky positioning and related flex properties */
    position: relative; /* Change to relative */
    width: 100%;
    display: block; /* Change to block */
    padding: 0; /* Remove padding */
    box-sizing: border-box;
}

.collection-horizontal-track {
    /* Removed properties related to horizontal scrolling track */
    display: block; /* Change to block */
    width: auto; /* Allow normal width */
    will-change: auto; /* Reset */
    position: relative;
    padding: 0; /* Remove padding */
    box-sizing: border-box;
    margin-bottom: 60px; /* Add space below the gallery */
}

/* New Agent Card Styles */
.agent-card {
    box-shadow: 0px 0px 6px 0px rgba(207, 213, 219, 0.05) inset;
    overflow: hidden; /* Ensure content stays within rounded corners */
    padding: 8px; /* Padding around the entire card content */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Keep subtle hover effect */
    cursor: default; /* Remove pointer cursor if not interactive */
    position: relative; /* Establishes stacking context */
    border-radius: 36px; /* Keep overall rounding */
}

/* Inner background element */
.agent-card-background {
    position: absolute;
    inset: 0; /* Cover the entire parent */
    border-radius: inherit; /* Inherit parent's border-radius */
    border-bottom: 1px solid rgba(207, 213, 219, 0.10);
    background: rgba(203, 210, 218, 0.10);
    backdrop-filter: blur(15px);
    z-index: 2; /* Middle layer (above pulse and decoration) */
}

/* New pulsing gradient element */
.agent-card-pulse-gradient {
    position: absolute;
    bottom: 10.295px; /* Match decoration position */
    left: 50%;
    /* transform: translateX(-50%) rotate(-1.2deg); */ /* Initial transform handled by animation */
    width: 160px;
    height: 39px;
    background: linear-gradient(90deg, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    border-radius: 50%; /* Make it circular/oval based on width/height */
    z-index: 0; /* Lowest layer */
    animation: pulse-gradient 3s infinite ease-in-out;
}

/* New decoration element */
.agent-card-decoration {
    position: absolute;
    bottom: 10.295px; /* Position at the bottom with some padding */
    left: 50%;
    transform: translateX(-50%) rotate(-0.839deg); /* Center and apply slight rotation */
    width: 230px;  /* Increased from 196px */
    height: 14px; /* Increased from 12px */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='144' height='18' viewBox='0 0 144 18' fill='none'%3E%3Cpath d='M4.47803 6.47656L73.478 13.5026L140.478 4.46913' stroke='%236D7681' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1; /* Bottom layer (behind background) */
}

.agent-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Adjusted shadow */
}

.agent-card-media-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Maintain square aspect ratio for the media */
    overflow: hidden;
    border-radius: 12px; /* Slightly less rounded corners for the media */
    margin-bottom: 20px; /* Space between media and text (matches image) */
    position: relative; /* Needed for z-index */
    z-index: 3; /* Top layer (above background and decoration) */
}

.agent-card .nft-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agent-card-text-container {
    padding: 0 8px 4px; /* Reduced bottom padding */
    text-align: center;
    position: relative; /* Needed for z-index */
    z-index: 3; /* Top layer (above background and decoration) */
}

.agent-card-title {
    color: #BFBFBF; /* var(--Solid-Colors-N5, #BFBFBF); */
    text-align: center;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
    margin-bottom: 4px; /* Keep existing margin */
}

.agent-card-subtitle {
    align-self: stretch;
    color: #8C8C8C; /* var(--Solid-Colors-N6-B, #8C8C8C); */
    text-align: center;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 17.6px */
}

/* Remove old overlay class if it exists */
.agent-card-overlay {
    display: none;
}

/* Adjustments for the grid layout */
.agent-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust minmax for card size */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px; /* Center and add bottom margin */
    padding: 0;
}

/* Remove old agent-item styles if they exist */
.agent-item {
    /* These styles are no longer needed as .agent-card is used */
     display: none; /* Hide elements with this class if they still exist */
}

.collection-text-content {
    /* position: relative; */ /* No longer needed as it's outside sticky */
    /* bottom: auto; */ /* Reset */
    /* left: auto; */ /* Reset */
    /* transform: none; */ /* Reset */
    max-width: 800px;
    width: 90%;
    text-align: center;
    z-index: 5; /* Ensure it's above background but below potential overlays */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    margin: 80px auto 0; /* Add top margin for space below gallery, center horizontally */
}

/* Restore original text styles within collection-text-content */
.collection-subtitle {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    text-transform: capitalize;
    color: #8C8C8C;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.collection-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    opacity: 1;
    transform: none;
    transition: none;
}

.collection-logo-img {
    max-width: 300px; /* Restore original size */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.collection-logo-svg {
   display: none;
}

.collection-soma-jp {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 30px; /* Restore original size */
    line-height: 0.9em;
    text-align: center;
    background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}

.collection-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 30px;
    opacity: 1;
    transform: none;
    transition: none;
}

.collection-title-first,
.collection-title-second {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, #E9C11F 0%, #FFB7F4 27.68%, #DBFF39 52.4%, #C2FFBE 97.4%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    padding: 0;
    line-height: 1.2; /* Restore original line height */
    position: relative;
    z-index: 10;
}

.collection-title-first {
    font-size: 60px; /* Restore original size */
    margin-bottom: 10px; /* Restore original margin */
}

.collection-title-second {
    font-size: 80px; /* Restore original size */
}

.collection-info {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 40px; /* Restore original size */
    line-height: 1.4em; /* Restore original line height */
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.88) 0%, rgba(189, 255, 204, 0.71) 59.13%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px; /* Restore original margin */
    opacity: 1;
    transform: none;
    transition: none;
}

.collection-info.revealed {
    /* No change needed */
}

.redacted {
    color: inherit;
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000000;
    position: relative; /* Ensure footer is positioned correctly after tall section */
    z-index: 5; /* Ensure footer is above background elements */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #FFFFFF;
    transform: scale(1.2);
}

/* Animation Classes */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .soma-logo-text { font-size: 140px; }
    .hero-main-title { font-size: 56px; }
    .feature-title { font-size: 40px; }
    /* .collection-title { font-size: 80px; } */ /* Removed as title sizes are now smaller */
    .cta-title { font-size: 60px; }
    /* .agent-gallery { grid-template-columns: repeat(4, 1fr); } */ /* Removed grid style */
    /* .agent-item { width: 280px; height: 280px; } */ /* Removed agent-item reference */
}

@media (max-width: 992px) {
    .soma-logo-text { font-size: 120px; }
    .hero-subtitle-jp { font-size: 36px; }
    .hero-sub-features { gap: 30px; }

    .feature-content-wrapper {
        padding: 40px;
        gap: 40px;
    }

    .feature-text-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .feature-title-container,
    .feature-description-container {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }

    .feature-title {
        font-size: 48px;
        text-align: center;
    }

    .feature-description {
        text-align: center;
    }

    /* .agent-gallery { grid-template-columns: repeat(3, 1fr); } */
    /* .agent-item { width: 250px; height: 250px; } */ /* Removed agent-item reference */
    .agent-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjust grid for tablets */
        gap: 15px;
    }
    .collection-horizontal-track { padding-left: 4vw; padding-right: 4vw; }
}

@media (max-width: 768px) {
    .landing-page {
        overflow-x: hidden !important; /* Prevent horizontal overflow within the main container */
    }

    .header {
        padding: 15px 20px;
        flex-direction: row; /* Change back to row for logo/icon alignment */
        justify-content: space-between; /* Space out logo and icon */
        align-items: center; /* Vertically align items */
        gap: 15px;
        position: absolute; /* Keep header absolute for alignment */
        /* Revert mobile header background to desktop style */
        background-color: rgba(255, 255, 255, 0.1); /* Changed to light transparent */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    /* .logo-container { width: 120px; height: auto; } */ /* Remove redundant rule */
    .header {
        height: auto; /* Allow height to adjust */
        min-height: 60px; /* Ensure minimum height */
    }
    .logo-container {
        width: 90px; /* Slightly smaller logo */
        justify-content: flex-start; /* Ensure logo stays left */
    }
    .main-nav { display: none; } /* Keep desktop nav hidden */
    .mobile-menu-icon { display: block; } /* Show mobile menu icon */

    .hero-section {
        height: auto;
        min-height: 80vh; /* Slightly less than full viewport */
        padding: 80px 20px 0; /* Remove bottom padding */
        justify-content: flex-end; /* Explicitly push content to bottom */
    }
    .hero-content {
        margin-top: 0;
        padding-bottom: 0; /* Set to 0 to move content to the very bottom */
    }

    .hero-logo-container {
        margin-bottom: 0; /* Remove bottom margin to push content lower */
    }
    .soma-logo-svg { width: 168px; } /* 2x bigger than 84px */
    .hero-subtitle-jp { font-size: 28px; } /* Adjust size */

    /* Intro Section adjustments */
    .intro-section {
        height: auto;
        min-height: 60vh;
        padding: 60px 10px 0; /* Remove bottom padding to bring feature videos closer */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-main-title {
        font-size: 32px; /* Matching Figma design */
        line-height: 0.9; /* Matching Figma design */
        letter-spacing: normal; /* Reset letter spacing */
    }
    .hero-title-frame {
        margin-bottom: 0; /* Remove bottom margin as it's now last */
        max-width: 100%; /* Allow frame to take full width */
    }
    .hero-sub-features {
        flex-direction: column;
        gap: 10px; /* Reduced gap */
        margin-bottom: 60px; /* Increased margin to create more space above title */
    }

    .hero-title-frame {
        margin-top: 20px; /* Add space above title */
        margin-bottom: 28px; /* Exactly 28px space below title as requested */
    }
    .feature-point {
        font-size: 11.6px; /* Match Figma design */
        color: #595959; /* Match Figma design */
        text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); /* Match Figma shadow effect */
        font-weight: 500; /* Match Figma design */
        line-height: 1.15; /* Match Figma design */
    }

    /* Features Section adjustments */
    .feature-item {
        min-height: auto;
        padding: 0; /* Remove padding to allow full-width video */
        margin-bottom: 20px; /* Add margin between feature items */
        border-bottom: none; /* Remove border for mobile view */
    }
    .feature-video-container {
        height: auto; /* Allow natural height */
        width: 100%; /* Use 100% instead of 100vw */
        margin-left: 0; /* Remove calculated margin */
        margin-right: 0;
        position: relative;
    }

    .feature-video, .feature-fallback-image {
        width: 100%;
        height: auto; /* Allow natural height ratio */
        object-fit: cover; /* Cover the container */
        aspect-ratio: 16/9; /* Maintain aspect ratio */
    }
    .feature-text-container {
        flex-direction: column; /* Stack title and description */
        padding: 30px 20px; /* Adjust padding */
        text-align: center; /* Center text */
        position: relative; /* Change from absolute */
        bottom: auto;
        left: auto;
        background-color: transparent; /* Remove backdrop */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .feature-title-frame {
        flex-basis: auto; /* Reset flex basis */
        margin-bottom: 15px; /* Add space below title */
        width: 100%;
    }
    .feature-title {
        font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 24px;
        font-weight: 700; /* Bold */
        line-height: 29px; /* ~1.2x font size */
        color: #E6E6E6;
        letter-spacing: 0.02em;
        text-align: left;
        background: linear-gradient(to right, #E8E0D7 0%, #547B84 54%, #A0A57B 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .feature-description-frame {
        flex-basis: auto; /* Reset flex basis */
        margin-left: 0; /* Remove left margin */
        width: 100%;
    }
    .feature-description {
        font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 16px;
        font-weight: 400; /* Regular */
        line-height: 24px; /* 1.5x font size */
        color: #E6E6E6;
        letter-spacing: 0.03em;
        text-align: left;
    }

    /* CTA Section adjustments */
    .cta-section {
        padding: 60px 20px; /* Adjust padding */
        min-height: auto;
    }
    .cta-title { font-size: 32px; } /* Adjust size */
    .cta-description { font-size: 16px; } /* Adjust size */
    .cta-image-container { max-width: 80%; } /* Adjust image size */

    /* Collection Section adjustments for mobile */
    .collection-section {
        height: auto; /* Revert height for mobile */
        padding: 60px 0 40px; /* Remove horizontal padding */
    }
    .collection-sticky-container {
        position: relative; /* Revert sticky positioning */
        height: auto; /* Revert height */
        overflow: visible; /* Allow overflow */
    }
    .collection-horizontal-track {
        display: block; /* Revert to block display */
        padding: 0; /* Remove padding */
        transform: none !important; /* Disable transform */
        will-change: auto; /* Reset will-change */
    }
    .agent-gallery {
        display: grid; /* Revert to grid */
        grid-template-columns: repeat(3, 1fr); /* 3 columns on mobile */
        gap: 8px; /* Adjust gap */
        padding: 0; /* REMOVE horizontal padding */
        margin-bottom: 60px; /* Adjust spacing */
        /* Make gallery full width */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box; /* Keep box-sizing */
        padding: 0 10px; /* Add small padding directly to gallery if needed */
    }
    /* Agent card specific mobile styles */
    .agent-card {
        padding: 3px; /* Adjust padding */
        border-radius: 13px; /* Adjust border-radius */
    }
    .agent-card-title {
        font-size: 8px; /* Mobile font size */
    }
    .agent-card-subtitle {
        font-size: 8px; /* Mobile font size */
    }
     .agent-card-overlay {
        font-size: 14px;
        padding: 10px;
    }
    /* Remove agent-item mobile styles */
    /* .agent-item { ... } */

    .collection-text-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none; /* Reset transform */
        margin: 0 auto 60px; /* Restore margin */
        padding: 0 20px; /* Restore padding */
        background-color: transparent; /* Remove background */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-width: 800px; /* Restore max-width */
        width: 100%; /* Take full width */
    }
    /* Restore original text sizes for mobile */
    .collection-subtitle { font-size: 24px; margin-bottom: 30px; }
    .collection-logo-container { margin-bottom: 30px; }
    .collection-logo-img { max-width: 200px; margin-bottom: 10px; }
    .collection-soma-jp { font-size: 24px; }
    .collection-title-container { margin: 0 auto 30px; }
    .collection-title-first { font-size: 36px; margin-bottom: 10px; }
    .collection-title-second { font-size: 48px; }
    .collection-info { font-size: 24px; margin-bottom: 40px; }

    /* Footer adjustments */
    .footer { padding: 40px 0; }
    .social-links { gap: 20px; }
    .social-links a { font-size: 20px; }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .hero-main-title { font-size: 26px; }
    .feature-point { font-size: 14px; }
    .feature-title { font-size: 24px; }
    .feature-description { font-size: 15px; }
    .cta-title { font-size: 28px; }
    .cta-description { font-size: 15px; }
    /* Adjust collection text for very small screens if needed */
    .collection-title-first { font-size: 30px; }
    .collection-title-second { font-size: 40px; }
    .collection-info { font-size: 20px; }
    .poxel-font { font-size: 12px; }
    /* Adjust agent card size for very small screens */
    .agent-gallery {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns */
        gap: 10px;
    }
     .agent-card-overlay {
        font-size: 12px;
        padding: 8px;
    }
    /* Remove agent-item reference */
    /* .agent-item { width: 200px; height: 200px; } */
    .collection-horizontal-track { padding-left: 3vw; padding-right: 3vw; }
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .collection-section {
    margin-bottom: 100px; /* Adjusted space below collection section on desktop */
  }

  .agent-gallery {
      grid-template-columns: repeat(4, 1fr); /* Keep 4 columns on larger screens */
      gap: 25px;
  }

  /* Force visibility for collection text elements on desktop */
  .collection-title-second,
  .collection-info {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Added from about-styles.css to ensure override and remove capitalize */
main .feature-description {
    text-align: center !important;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 21px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 1.381002381 !important;
    text-transform: none !important; /* Explicitly set to none */
    color: #86868B !important;
    max-width: 800px !important; /* Changed from 600px */
    margin: 0 auto 30px !important;
    letter-spacing: normal !important;
}

/* Enhanced pulse animation for buy button */
@keyframes enhancedPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 113, 227, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
        transform: scale(1);
    }
}

.buy-button {
    animation: enhancedPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Increase width and size of BUY button in hero section */
.cta-links .buy-button {
    padding: 8px 40px; /* Increased padding */
    font-size: 17px; /* Larger font size */
    background-color: transparent; /* Set background to transparent */
    border: 1px solid #C6C6C6; /* Change border to 1px solid grey */
    color: #fff; /* Set text color to white */
    transition: background 0.3s, color 0.3s, border-color 0.3s; /* Update transition properties */
    border-radius: 9999px; /* Add rounded corners for pill shape */
    display: inline-block; /* Ensure padding and border-radius are applied correctly */
    text-decoration: none; /* Remove underline */
}

.cta-links .buy-button:hover {
    background: linear-gradient(270deg, #26332D -2.25%, #11181D 97.75%); /* New gradient background on hover */
    color: #fff; /* White text on hover */
    border-color: #fff; /* Change border color on hover to white */
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(145, 145, 145, 0.30);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-top: 1.117px solid rgba(207, 213, 219, 0.10);
    box-shadow: 0px 0px 6.699px 0px rgba(207, 213, 219, 0.05) inset;
    padding: 5px;
    border-radius: 30px;
}

.bottom-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transition: background 0.3s;
    border-radius: 25px;
}

.bottom-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bottom-nav-link span {
    display: block;
    text-align: center;
}
