@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Smooth Scroll System */
#voltrack-smooth-scroll-height {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    overflow-x: hidden;
}

#gwg-smooth-scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    overflow-x: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HERO SECTION */
.hero-robotics-main-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    overflow: hidden;
}

/* City Background Image */
.hero-robotics-city-background-image-container {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-robotics-navbar-left-combined-section {
    cursor: pointer;
}

.hero-robotics-city-background-image {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    min-height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.6;
    filter: brightness(0.5);
    clip-path: inset(100% 0 0 0);
    animation: hero-robotics-city-reveal-from-bottom 3s cubic-bezier(0.19, 1, 0.22, 1) forwards 5s;
}

@keyframes hero-robotics-city-reveal-from-bottom {
    0% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


/* Responsive city */
@media (max-width: 768px) {
    .hero-robotics-city-background-image {
        opacity: 0.4;
    }
}

/* Purple Spotlight from Top */
.hero-robotics-purple-spotlight-from-top {
    position: absolute;
    top: 20%;
    right: -150px;
    transform: translateY(-50%);
    width: 50%;
  min-width: 350px;
  min-height: 400px;
  max-height: 500px;
    height: 60%;
    background: radial-gradient(
        ellipse at center top,
        rgba(138, 43, 226, 0.8) 0%,
        rgba(147, 51, 234, 0.6) 20%,
        rgba(138, 43, 226, 0.3) 40%,
        transparent 70%
    );
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    animation: hero-robotics-spotlight-flash-then-solid 6s ease-out forwards 4.5s;
    filter: blur(20px);
}

@keyframes hero-robotics-spotlight-flash-then-solid {
    0% {
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    4% {
        opacity: 0.3;
    }
    6% {
        opacity: 1;
    }
    8% {
        opacity: 0.4;
    }
    10% {
        opacity: 1;
    }
    14% {
        opacity: 0.5;
    }
  16% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
    100% {
        opacity: 1;
    }
}

/* Responsive spotlight */
@media (max-width: 768px) {
    .hero-robotics-purple-spotlight-from-top {
        width: 400px;
        height: 600px;
    }
}

/* Company Logo */
.hero-robotics-company-logo-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: hero-robotics-logo-fade-in-appear 1.5s ease-out forwards 0.5s;
}

@keyframes hero-robotics-logo-fade-in-appear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-robotics-company-logo-image {
    max-width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.hero-robotics-company-logo-image:hover {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

/* Podium Lines Container */
.hero-robotics-podium-lines-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 150px;
    margin-top: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
}

/* Left Podium Line - bottom left to top right at 35 degrees */
.hero-robotics-podium-line-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 200px;
    background: #ffffff;
    transform-origin: bottom left;
    transform: rotate(35deg);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4);
}

/* Right Podium Line - bottom right to top left at 35 degrees */
.hero-robotics-podium-line-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3px;
    height: 200px;
    background: #ffffff;
    transform-origin: bottom right;
    transform: rotate(-35deg);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4);
}

.hero-robotics-podium-line-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4);
    animation: hero-robotics-podium-center-glow-pulse 3s ease-in-out infinite 0.25s;
}

@keyframes hero-robotics-podium-center-glow-pulse {
  0%, 100% {
      box-shadow: 
          0 0 20px rgba(255, 255, 255, 0.8),
          0 0 40px rgba(255, 255, 255, 0.6),
          0 0 60px rgba(255, 255, 255, 0.4);
  }
  50% {
      box-shadow: 
          0 0 30px rgba(255, 255, 255, 1),
          0 0 60px rgba(255, 255, 255, 0.8),
          0 0 90px rgba(255, 255, 255, 0.6);
  }
}

/* Responsive adjustments for podium */
@media (max-width: 768px) {
    .hero-robotics-podium-lines-container {
        height: 120px;
        margin-top: 40px;
    }

    .hero-robotics-podium-line-left,
    .hero-robotics-podium-line-right {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-robotics-podium-lines-container {
        height: 100px;
        margin-top: 30px;
    }

    .hero-robotics-podium-line-left,
    .hero-robotics-podium-line-right {
        height: 120px;
    }
}

/* Title Container */
.hero-robotics-title-container {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

/* Large Title: GLOBAL ARTIFICIAL INTELLIGENCE */
.hero-robotics-main-title-large-text {
    position: relative;
    font-family: 'Montserrat', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    max-width: 1400px;
    color: #000000;
    background: radial-gradient(
        circle at center,
        #ffffff 0%,
        #ffffff 20%,
        #000000 40%,
        #000000 100%
    );
    background-size: 0% 0%;
    background-position: center center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-robotics-large-title-circular-reveal 3s ease-in-out forwards 0.5s;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hero-robotics-large-title-circular-reveal {
    0% {
        background-size: 0% 0%;
    }
    100% {
        background-size: 350% 350%;
    }
}

.hero-robotics-main-title-large-text:hover {
    transform: scale(1.02);
}

/* Bottom Row Container */
.hero-robotics-subtitle-bottom-row-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Left Part: & ROBOTICS */
.hero-robotics-subtitle-left-part {
  position: relative;
  font-family: 'Libre Baskerville', serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transform: translateY(50px);
  animation: hero-robotics-subtitle-left-slide-up-fade 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 2s;
  transition: all 0.4s ease;
}

@keyframes hero-robotics-subtitle-left-slide-up-fade {
  0% {
      opacity: 0;
      transform: translateY(150px) translateX(-100px);
  }
  60% {
      opacity: 1;
      transform: translateY(0) translateX(-100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0) translateX(0);
  }
}

.hero-robotics-subtitle-left-part:hover {
    transform: translateY(-5px);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Right Part: MARKETING CORPORATION */
.hero-robotics-subtitle-right-part {
    position: relative;
    font-family: 'Libre Baskerville', serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(50px);
    animation: hero-robotics-subtitle-right-slide-up-fade 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 2s;
    transition: all 0.4s ease;
}

@keyframes hero-robotics-subtitle-right-slide-up-fade {
  0% {
      opacity: 0;
      transform: translateY(150px) translateX(100px);
  }
  60% {
      opacity: 1;
      transform: translateY(0) translateX(100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0) translateX(0);
  }
}

.hero-robotics-subtitle-left-part:hover {
    transform: translateY(-5px);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Sparkle Canvas */
.hero-robotics-sparkle-impact-canvas {
    position: absolute;

    pointer-events: none;
    z-index: 10;
}

/* Chinese Subtitle */
.hero-robotics-chinese-subtitle-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 6px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: hero-robotics-chinese-fade-in-upward 1.8s ease-out forwards 3s;
    transition: all 0.4s ease;
    z-index: 6;
}

@keyframes hero-robotics-chinese-fade-in-upward {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-robotics-chinese-subtitle-text:hover {
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    letter-spacing: 8px;
}

/* Additional Background Depth Layers */
.hero-robotics-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(0, 0, 0, 1) 70%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-robotics-main-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.02) 0%,
        transparent 60%
    );
    z-index: 2;
    pointer-events: none;
    animation: hero-robotics-subtle-glow-pulse 8s ease-in-out infinite;
}

@keyframes hero-robotics-subtle-glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Hover Effect on Large Title - Additional Glow */
.hero-robotics-main-title-large-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-robotics-main-title-large-text:hover::before {
    width: 120%;
    height: 120%;
}


/* Purple Grid Perspective Container */
.hero-robotics-purple-grid-perspective-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 70%;
    z-index: 1;
    perspective: 600px;
    overflow: hidden;
}

.hero-robotics-purple-grid-perspective-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg) translateZ(0);
    transform-origin: bottom center;
    width: 200%;
    height: 200%; /* Doubled to allow for scrolling */
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(138, 43, 226, 0.8) 79px,
            rgba(138, 43, 226, 0.8) 81px,
            transparent 81px,
            transparent 160px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(147, 51, 234, 0.8) 79px,
            rgba(147, 51, 234, 0.8) 81px,
            transparent 81px,
            transparent 160px
        );
    background-size: 160px 160px;
    background-position: 0 0;
    will-change: transform;
    animation: hero-robotics-retro-grid-scroll-forward-transform 40s linear infinite;
    box-shadow: 
        0 0 80px rgba(138, 43, 226, 0.5),
        inset 0 -100px 100px rgba(0, 0, 0, 0.8);
}

/* Use transform instead of background-position */
@keyframes hero-robotics-retro-grid-scroll-forward-transform {
    0% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(0);
    }
    100% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(160px);
    }
}

.hero-robotics-purple-grid-perspective-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* DELETE the old keyframe and the double animation */
/* Remove: hero-robotics-grid-horizon-glow-sweep animation */

/* Responsive grid */
@media (max-width: 1200px) {
    .hero-robotics-purple-grid-perspective-container {
        height: 500px;
        perspective: 500px;
    }
}

@media (max-width: 768px) {
    .hero-robotics-purple-grid-perspective-container {
        height: 400px;
        perspective: 400px;
    }

    .hero-robotics-purple-grid-perspective-container::before {
        background-size: 120px 120px;
        height: 200%;
        background-image: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 59px,
                rgba(138, 43, 226, 0.8) 59px,
                rgba(138, 43, 226, 0.8) 61px,
                transparent 61px,
                transparent 120px
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 59px,
                rgba(147, 51, 234, 0.8) 59px,
                rgba(147, 51, 234, 0.8) 61px,
                transparent 61px,
                transparent 120px
            );
        animation: hero-robotics-retro-grid-scroll-forward-mobile-transform 40s linear infinite;
    }
}

@keyframes hero-robotics-retro-grid-scroll-forward-mobile-transform {
    0% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(0);
    }
    100% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(120px);
    }
}

@media (max-width: 576px) {
    .hero-robotics-purple-grid-perspective-container {
        height: 300px;
        perspective: 300px;
    }

    .hero-robotics-purple-grid-perspective-container::before {
        background-size: 80px 80px;
        height: 200%;
        background-image: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 39px,
                rgba(138, 43, 226, 0.8) 39px,
                rgba(138, 43, 226, 0.8) 41px,
                transparent 41px,
                transparent 80px
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 39px,
                rgba(147, 51, 234, 0.8) 39px,
                rgba(147, 51, 234, 0.8) 61px,
                transparent 41px,
                transparent 80px
            );
        animation: hero-robotics-retro-grid-scroll-forward-small-transform 20s linear infinite;
    }
}

@keyframes hero-robotics-retro-grid-scroll-forward-small-transform {
    0% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(0);
    }
    100% {
        transform: translateX(-50%) rotateX(75deg) translateZ(0) translateY(80px);
    }
}



/* Robot Head Image Background */
.hero-robotics-robot-head-image-container {
    position: absolute;
    bottom: 0;
    left: 85%;
  min-width: 200px;
    width: 50%;
    height: auto;
    z-index: 2;
    opacity: 0;
    animation: hero-robotics-robot-head-fade-in-appear 2s ease-out forwards 4s;
}

@keyframes hero-robotics-robot-head-fade-in-appear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-robotics-robot-head-background-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.3) contrast(1.2) saturate(0.8);
    transition: all 0.5s ease;
}

.hero-robotics-robot-head-background-image:hover {
    filter: brightness(0.4) contrast(1.3) saturate(0.9);
    transform: scale(1.05);
}

/* Responsive for robot head */
@media (max-width: 1200px) {
    .hero-robotics-robot-head-image-container {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-robotics-robot-head-image-container {
        width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-robotics-robot-head-image-container {
        width: 300px;
    }
}



/* Responsive Adjustments */
@media (max-width: 1650px) {
    .hero-robotics-main-title-large-text {
        font-size: 40px;
        max-width: 1200px;
    }

    .hero-robotics-subtitle-left-part,
    .hero-robotics-subtitle-right-part {
        font-size: 15px;
    }

  .hero-robotics-subtitle-bottom-row-container {
    gap: 8px;
  }

  .hero-robotics-chinese-subtitle-text {
    font-size: 27px;
  }
}

@media (max-width: 1200px) {

  
    .hero-robotics-main-title-large-text {
        font-size: 60px;
        max-width: 1000px;
        letter-spacing: 3px;
    }

    .hero-robotics-subtitle-left-part,
    .hero-robotics-subtitle-right-part {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hero-robotics-chinese-subtitle-text {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .hero-robotics-main-title-large-text {
        font-size: 50px;
        max-width: 800px;
    }

    .hero-robotics-subtitle-left-part,
    .hero-robotics-subtitle-right-part {
        font-size: 28px;
    }

    .hero-robotics-chinese-subtitle-text {
        font-size: 26px;
        letter-spacing: 5px;
    }

    .hero-robotics-subtitle-bottom-row-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
  
    .hero-robotics-main-title-large-text {
        font-size: 40px;
        max-width: 600px;
        letter-spacing: 2px;
    }

    .hero-robotics-subtitle-left-part,
    .hero-robotics-subtitle-right-part {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .hero-robotics-chinese-subtitle-text {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .hero-robotics-main-section {
        padding: 100px 40px;
    }

    .hero-robotics-subtitle-bottom-row-container {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
  
    .hero-robotics-main-title-large-text {
        font-size: 32px;
        max-width: 90%;
        letter-spacing: 1px;
    }

    .hero-robotics-subtitle-left-part,
    .hero-robotics-subtitle-right-part {
        font-size: 18px;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .hero-robotics-chinese-subtitle-text {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .hero-robotics-company-logo-image {
        max-width: 140px;
    }

    .hero-robotics-subtitle-bottom-row-container {
        gap: 15px;
    }
}



















/* COMING SOON SECTION */
.comingsoon-main-section-container {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    overflow: hidden;
}

/* Glass Circle with Gradient Border Fade */
.comingsoon-glass-circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border-radius: 50%;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#000000, #000000),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.4) 15%,
            rgba(255, 255, 255, 0.3) 35%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%,
            transparent 100%
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.15),
        0 0 100px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 -50px 80px rgba(255, 255, 255, 0.02),
        inset 0 20px 60px rgba(255, 255, 255, 0.05);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.1));
}

/* Moon Element */
.comingsoon-moon-wrapper-container {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    z-index: 10;
  overflow: visible;
}

/* White gradient oval BEHIND moon */
.comingsoon-moon-glow-oval-behind {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 140px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(240, 240, 245, 0.3) 40%,
        rgba(220, 220, 230, 0.1) 70%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

/* Moon Element */
.comingsoon-moon-element-top {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 30%,
        #9c9c9c 0%,
        #bababa 25%,
        #d6d6d6 50%,
        #f2f2f2 75%,
        #ffffff 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(200, 200, 220, 0.6),
        0 0 50px rgba(180, 180, 200, 0.4),
        0 0 70px rgb(0, 0, 0, 0.2),
        inset -15px -15px 30px rgba(0, 0, 0, 0.25),
        inset 8px 8px 20px rgba(255, 255, 255, 0.15),
        inset 0 -50px 70px rgb(0, 0, 0, 0.35),
        inset 0 50px 50px rgba(255, 255, 255, 0.08);
    z-index: 2;
    overflow: hidden;
}

/* White gradient oval between moon and circle */
.comingsoon-moon-element-top::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 220px;
    height: 120px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(240, 240, 245, 0.2) 30%,
        rgba(220, 220, 230, 0.05) 60%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: -8;
    pointer-events: none;
}

/* Moon surface texture details */
.comingsoon-moon-element-top::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 28%;
    width: 22px;
    height: 22px;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.08) 50%,
        transparent 100%
    );
    border-radius: 50%;
    box-shadow: 
        20px 12px 0 -4px rgba(0, 0, 0, 0.09),
        -12px 18px 0 -6px rgba(0, 0, 0, 0.07),
        8px -10px 0 -5px rgba(0, 0, 0, 0.06),
        inset 2px 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Content Text */
.comingsoon-content-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px;
    text-align: center;
}

.comingsoon-main-title-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.comingsoon-vertical-divider-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
}

.comingsoon-subtitle-description-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
    max-width: 400px;
}

/* Chinese Translation Container */
.comingsoon-chinese-translation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 3px;
}

/* Individual Chinese Characters with Staggered Animation */
.comingsoon-chinese-char {
    display: inline-block;
    color: rgba(255, 255, 255, 0);
    text-shadow: 0 0 20px rgba(138, 43, 226, 0);
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: comingsoon-chinese-char-reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards paused;
    animation-delay: calc(var(--char-index) * 0.15s);
}

@keyframes comingsoon-chinese-char-reveal {
    0% {
        opacity: 0;
        color: rgba(255, 255, 255, 0);
        text-shadow: 0 0 20px rgba(138, 43, 226, 0);
        transform: translateY(30px) rotateX(90deg) scale(0.5);
    }
    50% {
        color: rgba(138, 43, 226, 1);
        text-shadow: 
            0 0 30px rgba(138, 43, 226, 1),
            0 0 60px rgba(138, 43, 226, 0.6);
        transform: translateY(-5px) rotateX(0deg) scale(1.2);
    }
    100% {
        opacity: 1;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

/* Separator Dot */
.comingsoon-chinese-separator {
    color: rgb(255, 255, 255, 0.6);
    font-size: 18px;
    opacity: 0;
    animation: comingsoon-separator-fade-in 0.6s ease forwards paused;
}

@keyframes comingsoon-separator-fade-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.comingsoon-chinese-animation-active .comingsoon-chinese-char,
.comingsoon-chinese-animation-active .comingsoon-chinese-separator {
    animation-play-state: running;
}

.comingsoon-floating-animation-active .comingsoon-floating-char {
    animation-play-state: running;
}

/* Hover effect on Chinese characters */
.comingsoon-chinese-char:hover {
    color: rgba(138, 43, 226, 1);
    text-shadow: 
        0 0 30px rgba(138, 43, 226, 1),
        0 0 60px rgba(138, 43, 226, 0.8);
    transform: translateY(-3px) scale(1.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .comingsoon-chinese-translation-container {
        font-size: 16px;
        gap: 6px;
        letter-spacing: 2px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .comingsoon-chinese-translation-container {
        font-size: 14px;
        gap: 4px;
        letter-spacing: 1px;
        flex-wrap: wrap;
    }
}

/* Responsive Coming Soon */
@media (max-width: 768px) {
    .comingsoon-glass-circle-container {
        width: 500px;
        height: 500px;
    }

    .comingsoon-moon-element-top {
        width: 140px;
        height: 140px;
        top: -60px;
    }

    .comingsoon-main-title-text {
        font-size: 48px;
    }

    .comingsoon-vertical-divider-line {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .comingsoon-main-section-container {
        padding: 0;
    }

    .comingsoon-glass-circle-container {
        width: 350px;
        height: 350px;
    }

    .comingsoon-moon-element-top {
        width: 100px;
        height: 100px;
        top: -40px;
    }

    .comingsoon-main-title-text {
        font-size: 36px;
    }

    .comingsoon-subtitle-description-text {
        font-size: 16px;
    }

    .comingsoon-vertical-divider-line {
        height: 50px;
    }
}












/* NURACELL TECHNOLOGY SECTION */
.nuracell-technology-announcement-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0514 0%, #1a0a28 50%, #0a0514 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    overflow: hidden;
}

/* Dark wave transition at top */
.nuracell-technology-announcement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #000000 20%,
        rgba(10, 5, 20, 0.8) 50%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Wave effect using SVG-like gradient */
.nuracell-technology-announcement-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 300px;
    background: 
        radial-gradient(ellipse 100% 50% at 25% 0%, rgba(26, 10, 40, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 100% 50% at 75% 0%, rgba(26, 10, 40, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 120% 60% at 50% 0%, rgba(10, 5, 20, 0.8) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.nuracell-announcement-content-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brain-AI Connection Visual */
.nuracell-brain-ai-connection-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    z-index: 1;
    opacity: 0.3;
}

.nuracell-brain-hemisphere-left {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 183, 77, 0.4) 0%,
        rgba(255, 107, 107, 0.3) 40%,
        rgba(186, 85, 211, 0.2) 70%,
        transparent 100%
    );
    filter: blur(2px);
}

.nuracell-energy-bridge-connector {
    position: absolute;
    left: 35%;
    top: 45%;
    transform: translateY(-50%);
    width: 30%;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(255, 183, 77, 0.8) 0%,
        rgba(255, 107, 107, 0.9) 25%,
        rgba(186, 85, 211, 0.9) 50%,
        rgba(0, 191, 255, 0.9) 75%,
        rgba(0, 255, 127, 0.8) 100%
    );
    box-shadow: 
        0 0 20px rgba(255, 183, 77, 0.6),
        0 0 40px rgba(186, 85, 211, 0.4);
}

.nuracell-ai-circuit-head-right {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(0, 191, 255, 0.4) 0%,
        rgba(0, 255, 127, 0.3) 40%,
        rgba(138, 43, 226, 0.2) 70%,
        transparent 100%
    );
    filter: blur(2px);
}

/* Neural Sparks */
.nuracell-neural-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffb74d;
    box-shadow: 
        0 0 10px rgba(255, 183, 77, 1),
        0 0 20px rgba(255, 183, 77, 0.6);
    animation: nuracell-spark-pulse-glow 2s ease-in-out infinite;
}

.nuracell-spark-1 {
    left: 30%;
    top: 40%;
    animation-delay: 0s;
}

.nuracell-spark-2 {
    left: 45%;
    top: 35%;
    animation-delay: 0.4s;
}

.nuracell-spark-3 {
    left: 50%;
    top: 50%;
    animation-delay: 0.8s;
}

.nuracell-spark-4 {
    left: 55%;
    top: 60%;
    animation-delay: 1.2s;
}

.nuracell-spark-5 {
    left: 70%;
    top: 55%;
    animation-delay: 1.6s;
}

@keyframes nuracell-spark-pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Content Wrapper */
.nuracell-announcement-text-wrapper {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    max-width: 900px;
}

/* Brand Badge */
.nuracell-brand-badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 183, 77, 0.1) 0%,
        rgba(186, 85, 211, 0.1) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(
        90deg,
        rgba(255, 183, 77, 0.6),
        rgba(186, 85, 211, 0.6),
        rgba(0, 191, 255, 0.6)
    ) 1;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.nuracell-badge-new-tag {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffb74d;
    text-shadow: 0 0 10px rgba(255, 183, 77, 0.8);
}

.nuracell-badge-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Headline */
.nuracell-main-headline-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #ffb74d 30%,
        #ba55d3 60%,
        #00bfff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Subheadline */
.nuracell-subheadline-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffb74d;
    text-shadow: 
        0 0 30px rgba(255, 183, 77, 0.8),
        0 0 60px rgba(255, 183, 77, 0.4);
    margin: 0;
    text-transform: uppercase;
}

/* Teaser Text */
.nuracell-teaser-message-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 700px;
}

/* CTA Button */
.nuracell-discover-button-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 183, 77, 0.2) 0%,
        rgba(186, 85, 211, 0.2) 100%
    );
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.nuracell-discover-button-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(255, 183, 77, 0.4),
        0 10px 80px rgba(186, 85, 211, 0.3);
}

.nuracell-button-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    z-index: 2;
}

.nuracell-button-arrow {
    font-size: 24px;
    color: #ffb74d;
    z-index: 2;
    transition: all 0.3s ease;
}

.nuracell-discover-button-link:hover .nuracell-button-arrow {
    transform: translateX(10px);
}

.nuracell-button-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: all 0.6s ease;
}

.nuracell-discover-button-link:hover .nuracell-button-glow-effect {
    left: 100%;
}

/* Particles Background */
.nuracell-particles-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.nuracell-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 183, 77, 0.6);
    box-shadow: 0 0 10px rgba(255, 183, 77, 0.8);
    animation: nuracell-particle-float-drift 8s ease-in-out infinite;
}

.nuracell-particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.nuracell-particle-2 {
    top: 40%;
    left: 25%;
    animation-delay: 1.5s;
}

.nuracell-particle-3 {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.nuracell-particle-4 {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

.nuracell-particle-5 {
    bottom: 25%;
    left: 35%;
    animation-delay: 6s;
}

.nuracell-particle-6 {
    bottom: 40%;
    right: 15%;
    animation-delay: 7.5s;
}

@keyframes nuracell-particle-float-drift {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(-20px);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nuracell-main-headline-text {
        font-size: 48px;
    }

    .nuracell-subheadline-description {
        font-size: 60px;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .nuracell-technology-announcement-section {
        padding: 80px 40px;
    }

    .nuracell-main-headline-text {
        font-size: 36px;
    }

    .nuracell-subheadline-description {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .nuracell-teaser-message-text {
        font-size: 18px;
    }

    .nuracell-discover-button-link {
        padding: 18px 40px;
    }

    .nuracell-button-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .nuracell-main-headline-text {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .nuracell-subheadline-description {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .nuracell-teaser-message-text {
        font-size: 16px;
    }

    .nuracell-brand-badge-container {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }
}