@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "VinaSans";
  src: url("/assets/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
.nebula-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  font-family: "Poppins";
}
.nebula-header .stellar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nebula-header .quantum-logo {
  position: relative;
  z-index: 1001;
}
.nebula-header .quantum-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "VinaSans";
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .quantum-logo .logo-link:hover .logo-core {
  text-shadow: 0 0 10px rgba(94, 33, 235, 0.4);
}
.nebula-header .quantum-logo .logo-link:hover .logo-orb {
  text-shadow: 0 0 10px rgba(235, 33, 150, 0.4);
}
.nebula-header .quantum-logo .logo-link:hover .logo-aura {
  opacity: 1;
  transform: scale(1.15);
}
.nebula-header .quantum-logo .logo-core {
  font-weight: 700;
  color: #5e21eb;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .quantum-logo .logo-orb {
  color: #eb2196;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .quantum-logo .logo-aura {
  position: absolute;
  top: -50%;
  left: -20%;
  right: -20%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(94, 33, 235, 0.15) 0%, rgba(235, 33, 150, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .cosmic-nav {
  position: relative;
  z-index: 1000;
}
.nebula-header .cosmic-nav .nav-portal {
  display: flex;
  gap: 1.8rem;
}
.nebula-header .cosmic-nav .nav-portal .nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.5rem 0;
  overflow: hidden;
  transition: color 0.3s ease;
}
.nebula-header .cosmic-nav .nav-portal .nav-link .link-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .cosmic-nav .nav-portal .nav-link .link-text {
  position: relative;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .cosmic-nav .nav-portal .nav-link:hover, .nebula-header .cosmic-nav .nav-portal .nav-link.active {
  color: #5e21eb;
}
.nebula-header .cosmic-nav .nav-portal .nav-link:hover .link-hover, .nebula-header .cosmic-nav .nav-portal .nav-link.active .link-hover {
  transform: translateX(0);
}
.nebula-header .cosmic-nav .nav-portal .nav-link.active {
  font-weight: 600;
}
.nebula-header .quantum-auth {
  display: flex;
  gap: 1.2rem;
  position: relative;
  z-index: 1000;
}
.nebula-header .quantum-auth .auth-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .quantum-auth .auth-btn .btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(94, 33, 235, 0.1), rgba(235, 33, 150, 0.1));
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.nebula-header .quantum-auth .auth-btn .btn-text {
  position: relative;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .quantum-auth .auth-btn.warp-effect {
  background-color: transparent;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.nebula-header .quantum-auth .auth-btn.warp-effect:hover {
  color: #fff;
  border-color: transparent;
}
.nebula-header .quantum-auth .auth-btn.warp-effect:hover .btn-hover {
  transform: translateY(0);
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.nebula-header .quantum-auth .auth-btn.supernova {
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 4px 15px rgba(235, 33, 150, 0.3);
}
.nebula-header .quantum-auth .auth-btn.supernova:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(235, 33, 150, 0.4);
}
.nebula-header .quantum-auth .auth-btn.supernova:hover .btn-hover {
  background: linear-gradient(90deg, #5114de, #de1489);
}
.nebula-header .quantum-auth .auth-btn.supernova:active {
  transform: translateY(0);
}
.nebula-header .nebula-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nebula-header .nebula-menu-toggle .quantum-bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000000;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: center;
}
.nebula-header .nebula-menu-toggle .quantum-bar:nth-child(1) {
  transform: translateY(0) rotate(0);
}
.nebula-header .nebula-menu-toggle .quantum-bar:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
}
.nebula-header .nebula-menu-toggle .quantum-bar:nth-child(3) {
  transform: translateY(0) rotate(0);
}
.nebula-header .nebula-menu-toggle[aria-expanded=true] .quantum-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nebula-header .nebula-menu-toggle[aria-expanded=true] .quantum-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nebula-header .nebula-menu-toggle[aria-expanded=true] .quantum-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.nebula-header .nebula-menu-toggle:hover .quantum-bar {
  background-color: #5e21eb;
}
@media (max-width: 1024px) {
  .nebula-header .cosmic-nav,
  .nebula-header .quantum-auth {
    display: none;
  }
  .nebula-header .nebula-menu-toggle {
    display: flex;
  }
}

.cosmic-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.cosmic-mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cosmic-mobile-menu .mobile-nav-portal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
  text-align: center;
}
.cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link {
  position: relative;
  text-decoration: none;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link .mobile-link-text {
  position: relative;
  display: inline-block;
}
.cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link .mobile-link-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link:hover, .cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link.active {
  color: #5e21eb;
}
.cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link:hover .mobile-link-text::after, .cosmic-mobile-menu .mobile-nav-portal .mobile-nav-link.active .mobile-link-text::after {
  width: 100%;
}
.cosmic-mobile-menu .mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 300px;
  margin-top: 3rem;
}
.cosmic-mobile-menu .mobile-auth .mobile-auth-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.cosmic-mobile-menu .mobile-auth .mobile-auth-btn.warp-effect {
  background-color: #f9f9f9;
  color: #000000;
}
.cosmic-mobile-menu .mobile-auth .mobile-auth-btn.warp-effect:hover {
  background-color: #5e21eb;
  color: #fff;
  transform: translateY(-3px);
}
.cosmic-mobile-menu .mobile-auth .mobile-auth-btn.supernova {
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 4px 15px rgba(235, 33, 150, 0.3);
}
.cosmic-mobile-menu .mobile-auth .mobile-auth-btn.supernova:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(235, 33, 150, 0.4);
}

/* COSMIC AGE GATE STYLES */
.cosmic-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(19, 16, 16, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Poppins";
  opacity: 1;
  transition: opacity 0.5s ease;
}
.cosmic-gate .gate-animation {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cosmic-gate .particle-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.15) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.15) 0%, transparent 20%);
  animation: cosmicPulse 8s infinite alternate;
}
.cosmic-gate .particle-field::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 25%), radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
}
.cosmic-gate .verification-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem 4rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
  animation: panelAppear 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cosmic-gate .gate-title {
  font-family: "VinaSans";
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.cosmic-gate .gate-title span {
  color: #5e21eb;
  display: inline-block;
  animation: textGlow 2s infinite alternate;
}
.cosmic-gate .gate-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.cosmic-gate .gate-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cosmic-gate .gate-btn {
  position: relative;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  z-index: 1;
  min-width: 160px;
}
.cosmic-gate .gate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  z-index: -1;
  transition: all 0.4s ease;
}
.cosmic-gate .gate-btn.pulse {
  color: #fff;
  box-shadow: 0 5px 25px rgba(235, 33, 150, 0.3);
}
.cosmic-gate .gate-btn.pulse::before {
  opacity: 1;
}
.cosmic-gate .gate-btn.pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(235, 33, 150, 0.4);
}
.cosmic-gate .gate-btn.pulse:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6f38ed, #ed38a1);
  z-index: -1;
  animation: pulseGlow 1.5s infinite;
}
.cosmic-gate .gate-btn.exit {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cosmic-gate .gate-btn.exit:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.cosmic-gate .gate-footnote {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes panelAppear {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0);
  }
  100% {
    text-shadow: 0 0 15px rgba(94, 33, 235, 0.5);
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.cosmic-entrance {
  animation: cosmicEntrance 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cosmicEntrance {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .cosmic-gate .verification-panel {
    padding: 2rem 1.5rem;
  }
  .cosmic-gate .gate-title {
    font-size: 2.2rem;
  }
  .cosmic-gate .gate-controls {
    flex-direction: column;
    gap: 1rem;
  }
  .cosmic-gate .gate-btn {
    width: 100%;
  }
}
/* SINGULARITY HERO STYLES */
.singularity-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #050404 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins";
  padding: 6rem 0;
  display: flex;
  align-items: center;
}
.singularity-hero .event-horizon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.singularity-hero .black-hole-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 0%, black 70%);
  box-shadow: 0 0 60px rgba(94, 33, 235, 0.3);
  animation: blackHolePulse 8s infinite alternate;
}
.singularity-hero .black-hole-core .gravity-well {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 33, 150, 0.1) 0%, rgba(235, 33, 150, 0) 70%);
  animation: gravityDistortion 12s infinite linear;
}
.singularity-hero .accretion-disk {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: diskRotation 60s infinite linear;
}
.singularity-hero .accretion-disk .disk-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  box-shadow: 0 0 15px rgba(235, 33, 150, 0.7);
}
.singularity-hero .accretion-disk .disk-particle.p1 {
  top: 10%;
  left: 50%;
  animation: particleGlow 3s infinite alternate;
}
.singularity-hero .accretion-disk .disk-particle.p2 {
  top: 50%;
  right: 10%;
  animation: particleGlow 4s infinite alternate 0.5s;
}
.singularity-hero .accretion-disk .disk-particle.p3 {
  bottom: 10%;
  left: 50%;
  animation: particleGlow 5s infinite alternate 1.5s;
}
.singularity-hero .accretion-disk .disk-particle.p4 {
  bottom: 70%;
  left: 20%;
  animation: particleGlow 6s infinite alternate 2s;
}
.singularity-hero .accretion-disk .disk-particle.p5 {
  bottom: 30%;
  left: 20%;
  animation: particleGlow 7s infinite alternate 2.5s;
}
.singularity-hero .accretion-disk .disk-particle.p6 {
  bottom: 40%;
  left: 5%;
  animation: particleGlow 8s infinite alternate 3s;
}
.singularity-hero .accretion-disk .disk-particle.p7 {
  bottom: 30%;
  left: 60%;
  animation: particleGlow 9s infinite alternate 3.5s;
}
.singularity-hero .accretion-disk .disk-particle.p8 {
  bottom: 40%;
  left: 20%;
  animation: particleGlow 10s infinite alternate 4s;
}
.singularity-hero .stellar-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 4rem;
}
.singularity-hero .hero-message {
  flex: 1;
  max-width: 600px;
}
.singularity-hero .cosmic-title {
  font-family: "VinaSans";
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.singularity-hero .cosmic-title .title-line {
  display: block;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.singularity-hero .cosmic-title .title-line:nth-child(1) {
  animation-delay: 0.3s;
}
.singularity-hero .cosmic-title .title-line:nth-child(2) {
  animation-delay: 0.6s;
}
.singularity-hero .cosmic-title .title-line:nth-child(3) {
  animation-delay: 0.9s;
}
.singularity-hero .cosmic-title .title-line.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
}
.singularity-hero .hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 80%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}
.singularity-hero .quantum-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}
.singularity-hero .quantum-stats .stat-wormhole {
  text-align: center;
}
.singularity-hero .quantum-stats .stat-value {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: #eb2196;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.singularity-hero .quantum-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 120px;
}
.singularity-hero .hero-portals {
  display: flex;
  gap: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}
.singularity-hero .hero-portals .portal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.singularity-hero .hero-portals .portal-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(94, 33, 235, 0.3), rgba(235, 33, 150, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.singularity-hero .hero-portals .portal-btn .btn-text {
  position: relative;
  z-index: 2;
}
.singularity-hero .hero-portals .portal-btn.starburst {
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 5px 25px rgba(235, 33, 150, 0.3);
}
.singularity-hero .hero-portals .portal-btn.starburst:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(235, 33, 150, 0.5);
}
.singularity-hero .hero-portals .portal-btn.starburst:hover .btn-glow {
  opacity: 1;
  animation: starburstPulse 1.5s infinite;
}
.singularity-hero .hero-portals .portal-btn.nebula {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.singularity-hero .hero-portals .portal-btn.nebula:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}
.singularity-hero .hero-portals .portal-btn.nebula:hover .btn-glow {
  opacity: 1;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.singularity-hero .hero-hologram {
  flex: 1;
  position: relative;
  min-height: 400px;
  perspective: 1000px;
  transform-style: preserve-3d;
  transform: translateX(50px);
  opacity: 0;
  animation: fadeInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}
.singularity-hero .hero-hologram .holographic-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(94, 33, 235, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 0 60px rgba(94, 33, 235, 0.1), inset 0 0 30px rgba(94, 33, 235, 0.05);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.singularity-hero .hero-hologram .holographic-display::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(94, 33, 235, 0.05) 0%, transparent 70%);
  animation: holoScan 8s linear infinite;
}
.singularity-hero .hero-hologram .holo-game {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 33, 235, 0.2);
  box-shadow: 0 0 20px rgba(94, 33, 235, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  overflow: hidden;
}
.singularity-hero .hero-hologram .holo-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.1) 0%, rgba(235, 33, 150, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.singularity-hero .hero-hologram .holo-game:hover::before {
  opacity: 1;
}
.singularity-hero .hero-hologram .holo-game[data-game=slots] {
  top: 20%;
  left: 10%;
  width: 180px;
  height: 120px;
  animation: float 6s ease-in-out infinite;
}
.singularity-hero .hero-hologram .holo-game[data-game=slots] .holo-reel {
  position: absolute;
  top: 10%;
  width: 30%;
  height: 80%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(235, 33, 150, 0.8));
  border-radius: 5px;
}
.singularity-hero .hero-hologram .holo-game[data-game=slots] .holo-reel:nth-child(1) {
  left: 10%;
  animation: slotSpin 3s infinite;
}
.singularity-hero .hero-hologram .holo-game[data-game=slots] .holo-reel:nth-child(2) {
  left: 35%;
  animation: slotSpin 3s infinite 0.3s;
}
.singularity-hero .hero-hologram .holo-game[data-game=slots] .holo-reel:nth-child(3) {
  left: 60%;
  animation: slotSpin 3s infinite 0.6s;
}
.singularity-hero .hero-hologram .holo-game[data-game=cards] {
  top: 50%;
  right: 15%;
  width: 160px;
  height: 100px;
  animation: float 7s ease-in-out infinite 1s;
}
.singularity-hero .hero-hologram .holo-game[data-game=cards] .holo-card {
  position: absolute;
  width: 70%;
  height: 90%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.singularity-hero .hero-hologram .holo-game[data-game=cards] .holo-card:nth-child(1) {
  top: 5%;
  left: 5%;
  transform: rotate(-5deg);
}
.singularity-hero .hero-hologram .holo-game[data-game=cards] .holo-card:nth-child(2) {
  top: 5%;
  left: 25%;
  transform: rotate(5deg);
  z-index: 2;
}
.singularity-hero .hero-hologram .holo-game[data-game=dice] {
  bottom: 15%;
  left: 25%;
  width: 80px;
  height: 80px;
  animation: float 5s ease-in-out infinite 0.5s;
}
.singularity-hero .hero-hologram .holo-game[data-game=dice] .holo-dice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: diceRoll 8s infinite;
}
.singularity-hero .cosmic-scroll-prompt {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.5s forwards;
}
.singularity-hero .cosmic-scroll-prompt .pulsar-beacon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  animation: pulsar 2s infinite;
}
.singularity-hero .cosmic-scroll-prompt .scroll-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

/* ANIMATIONS */
@keyframes blackHolePulse {
  0% {
    box-shadow: 0 0 60px rgba(94, 33, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 80px rgba(235, 33, 150, 0.4);
  }
  100% {
    box-shadow: 0 0 60px rgba(94, 33, 235, 0.3);
  }
}
@keyframes gravityDistortion {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}
@keyframes diskRotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes particleGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes titleReveal {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes starburstPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
@keyframes holoScan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slotSpin {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 200px;
  }
}
@keyframes diceRoll {
  0% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0);
  }
  25% {
    transform: translate(-50%, -50%) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(360deg);
  }
}
@keyframes pulsar {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
  .singularity-hero .stellar-container {
    flex-direction: column;
    text-align: center;
  }
  .singularity-hero .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .singularity-hero .quantum-stats {
    justify-content: center;
  }
  .singularity-hero .hero-hologram {
    margin-top: 4rem;
    min-height: 300px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .singularity-hero {
    padding-top: 8rem;
  }
  .singularity-hero .cosmic-title {
    font-size: 3.5rem;
  }
  .singularity-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  .singularity-hero .quantum-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .singularity-hero .hero-portals {
    flex-direction: column;
  }
  .singularity-hero .hero-hologram {
    min-height: 250px;
  }
}
/* QUANTUM GAMES SECTION - COSMIC STYLES */
.quantum-games {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(ellipse at center, #0a0e23 0%, #020111 70%, #000000 100%);
  overflow: hidden;
  z-index: 1;
}

.quantum-games::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 33, 235, 0.15) 0%, transparent 20%), radial-gradient(circle at 70% 70%, rgba(235, 33, 150, 0.15) 0%, transparent 20%);
  animation: cosmic-drift 120s infinite linear;
  z-index: -1;
}

.section-event-horizon {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 30%, #6dd5fa 50%, #ffffff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  margin-bottom: 1rem;
}

.title-decor {
  display: inline-block;
  margin: 0 0.5rem;
}

.title-decor.highlight {
  color: #6dd5fa;
  text-shadow: 0 0 15px rgba(109, 213, 250, 0.7);
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.section-subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #6dd5fa, transparent);
  margin: 1.5rem auto 0;
}

/* MULTIVERSE GRID - PORTAL EFFECTS */
.multiverse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.dimension-card {
  position: relative;
  background: rgba(15, 20, 50, 0.4);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(109, 213, 250, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dimension-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(109, 213, 250, 0.2);
  border-color: rgba(109, 213, 250, 0.3);
}

.dimension-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #6dd5fa, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dimension-card:hover::before {
  opacity: 1;
}

.dimension-card.featured {
  background: rgba(25, 30, 70, 0.5);
  border: 1px solid rgba(235, 33, 150, 0.2);
}

.dimension-card.featured:hover {
  border-color: rgba(235, 33, 150, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(235, 33, 150, 0.2);
}

/* PORTAL GATE ANIMATION */
.dimension-portal {
  position: relative;
  height: 200px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portal-gate {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gate-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
  animation: portal-spin infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gate-ring.outer {
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-left-color: #6dd5fa;
  border-right-color: #6dd5fa;
  animation-duration: 20s;
}

.gate-ring.middle {
  width: 70%;
  height: 70%;
  border-width: 3px;
  border-top-color: #eb2196;
  border-bottom-color: #eb2196;
  animation-duration: 15s;
  animation-direction: reverse;
}

.gate-ring.inner {
  width: 40%;
  height: 40%;
  border-width: 4px;
  border-left-color: #5e21eb;
  border-right-color: #5e21eb;
  animation-duration: 10s;
}

.portal-core {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #6dd5fa 70%, transparent 100%);
  box-shadow: 0 0 20px #6dd5fa;
  z-index: 2;
}

/* DIMENSION PREVIEWS */
.dimension-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Slot Machine Preview */
.slot-machine {
  width: 140px;
  height: 140px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid rgba(109, 213, 250, 0.3);
  position: relative;
  padding: 10px;
}

.slot-window {
  display: flex;
  height: 100px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.slot-reel {
  flex: 1;
  margin: 0 2px;
  background: rgba(109, 213, 250, 0.1);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.slot-reel::before {
  content: "✦♠♥♣♦★";
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  animation: slot-spin 3s infinite linear;
  line-height: 1;
}

.slot-reel:nth-child(2)::before {
  animation-delay: 0.1s;
}

.slot-reel:nth-child(3)::before {
  animation-delay: 0.2s;
}

.slot-lever {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 40px;
  background: linear-gradient(to right, #c9c9c9, #e0e0e0);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Card Table Preview */
.card-table {
  width: 160px;
  height: 120px;
  background: rgba(25, 30, 50, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(235, 33, 150, 0.3);
  position: relative;
  padding: 10px;
}

.card-hand {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.playing-card {
  width: 40px;
  height: 60px;
  background: white;
  border-radius: 5px;
  margin: 0 -10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.playing-card:first-child {
  transform: rotate(-10deg) translateY(5px);
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
}

.playing-card:last-child {
  transform: rotate(5deg) translateY(-5px);
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.playing-card::before {
  content: "♠";
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 12px;
  color: #333;
}

.playing-card::after {
  content: "♠";
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 12px;
  color: #333;
  transform: rotate(180deg);
}

.card-deck {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 70px;
  background: linear-gradient(135deg, #5e21eb, #3b12a8);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Dice Arena Preview */
.dice-arena {
  width: 140px;
  height: 140px;
  background: rgba(15, 20, 40, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(94, 33, 235, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dice-cup {
  width: 60px;
  height: 60px;
  background: linear-gradient(to bottom, #6dd5fa, #4a9cf0);
  border-radius: 5px 5px 15px 15px;
  position: relative;
  margin-bottom: 10px;
  transform: translateY(0);
  animation: dice-shake 2s infinite ease-in-out;
}

.dice-cup::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px 5px 0 0;
}

.dice-result {
  display: flex;
}

.die {
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 4px;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* DIMENSION INFO */
.dimension-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.dimension-name::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6dd5fa, transparent);
  margin: 0.5rem auto 0;
}

.featured .dimension-name::after {
  background: linear-gradient(90deg, transparent, #eb2196, transparent);
}

.warp-link {
  display: block;
  text-align: center;
  color: #6dd5fa;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.warp-link::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.warp-link:hover {
  color: white;
  text-shadow: 0 0 10px rgba(109, 213, 250, 0.7);
}

.warp-link:hover::after {
  transform: translateX(5px);
}

.featured .warp-link {
  color: #eb2196;
}

.featured .warp-link:hover {
  text-shadow: 0 0 10px rgba(235, 33, 150, 0.7);
}

.dimension-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #eb2196, #c2185b);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(235, 33, 150, 0.3);
}

/* ANIMATIONS */
@keyframes cosmic-drift {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes portal-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slot-spin {
  0% {
    top: -100px;
  }
  100% {
    top: 100px;
  }
}
@keyframes dice-shake {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-10px) rotate(-5deg);
  }
  40% {
    transform: translateY(5px) rotate(5deg);
  }
  60% {
    transform: translateY(-5px) rotate(-3deg);
  }
  80% {
    transform: translateY(3px) rotate(2deg);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .multiverse-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .dimension-portal {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .quantum-games {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .multiverse-grid {
    grid-template-columns: 1fr;
  }
}
/* COSMIC FEATURES SECTION */
.cosmic-features {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(94, 33, 235, 0.15) 0%, transparent 30%), radial-gradient(ellipse at 80% 80%, rgba(235, 33, 150, 0.15) 0%, transparent 30%), linear-gradient(to bottom, #0a0e23 0%, #020111 100%);
  overflow: hidden;
  z-index: 1;
}

.cosmic-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

/* Section Header Styles */
.section-event-horizon {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  font-family: "VinaSans";
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.title-decor.highlight {
  color: #6dd5fa;
  text-shadow: 0 0 20px rgba(109, 213, 250, 0.5);
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(109, 213, 250, 0.5), transparent);
  margin: 1rem auto 0;
}

/* BENEFITS GRID - PLANETARY ORBITS */
.cosmic-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-orbit {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  z-index: 1;
}

.benefit-orbit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(15, 20, 50, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(109, 213, 250, 0.1);
  z-index: -1;
  transition: all 0.4s ease;
}

.benefit-orbit:hover::before {
  background: rgba(25, 30, 70, 0.4);
  border-color: rgba(109, 213, 250, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(109, 213, 250, 0.1);
  transform: translateY(-5px);
}

/* PLANET ANIMATIONS */
.benefit-planet {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.planet-surface {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 25, 60, 0.8), rgba(10, 15, 40, 0.9));
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5), inset -5px -5px 10px rgba(109, 213, 250, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: planet-float 6s ease-in-out infinite;
}

.benefit-orbit:nth-child(1) .planet-surface {
  background: linear-gradient(145deg, rgba(20, 60, 80, 0.8), rgba(10, 40, 60, 0.9));
}

.benefit-orbit:nth-child(2) .planet-surface {
  background: linear-gradient(145deg, rgba(80, 20, 60, 0.8), rgba(60, 10, 40, 0.9));
}

.benefit-orbit:nth-child(3) .planet-surface {
  background: linear-gradient(145deg, rgba(60, 20, 80, 0.8), rgba(40, 10, 60, 0.9));
}

.benefit-orbit:nth-child(4) .planet-surface {
  background: linear-gradient(145deg, rgba(20, 80, 60, 0.8), rgba(10, 60, 40, 0.9));
}

.planet-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(109, 213, 250, 0.5);
  border-bottom-color: rgba(109, 213, 250, 0.5);
  animation: ring-rotate 20s linear infinite;
  z-index: 1;
}

.benefit-orbit:nth-child(2) .planet-ring {
  border-top-color: rgba(235, 33, 150, 0.5);
  border-bottom-color: rgba(235, 33, 150, 0.5);
  animation-duration: 15s;
  animation-direction: reverse;
}

.benefit-orbit:nth-child(3) .planet-ring {
  border-top-color: rgba(94, 33, 235, 0.5);
  border-bottom-color: rgba(94, 33, 235, 0.5);
  animation-duration: 25s;
}

.benefit-orbit:nth-child(4) .planet-ring {
  border-top-color: rgba(33, 235, 94, 0.5);
  border-bottom-color: rgba(33, 235, 94, 0.5);
  animation-duration: 18s;
  animation-direction: reverse;
}

.benefit-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  transform: translateY(0);
  animation: icon-bounce 3s ease-in-out infinite;
}

.benefit-orbit:nth-child(1) .benefit-icon {
  animation-delay: 0.1s;
  color: #6dd5fa;
}

.benefit-orbit:nth-child(2) .benefit-icon {
  animation-delay: 0.2s;
  color: #eb2196;
}

.benefit-orbit:nth-child(3) .benefit-icon {
  animation-delay: 0.3s;
  color: #5e21eb;
}

.benefit-orbit:nth-child(4) .benefit-icon {
  animation-delay: 0.4s;
  color: #21eb94;
}

/* Benefit Text Styles */
.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.benefit-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(109, 213, 250, 0.5), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.benefit-orbit:hover .benefit-title::after {
  transform: scaleX(1);
  transform-origin: left;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* ANIMATIONS */
@keyframes text-shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes planet-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .cosmic-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .benefit-planet {
    width: 100px;
    height: 100px;
  }
  .planet-surface {
    width: 70px;
    height: 70px;
  }
  .planet-ring {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .cosmic-features {
    padding: 5rem 0;
  }
  .cosmic-benefits {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .benefit-orbit {
    padding: 1.5rem 1rem;
  }
}
/* COMMUNITY NEBULA STYLES */
.community-nebula {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #0b0909 0%, #211c1c 100%);
  overflow: hidden;
  font-family: "Poppins";
  color: #fff;
}
.community-nebula .nebula-cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.community-nebula .nebula-cloud .gas-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 33, 235, 0.3) 0%, transparent 70%);
  filter: blur(15px);
  opacity: 0.7;
}
.community-nebula .nebula-cloud .gas-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  animation: nebulaFloat 25s infinite alternate;
}
.community-nebula .nebula-cloud .gas-particle:nth-child(2) {
  bottom: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  animation: nebulaFloat 30s infinite alternate-reverse;
}
.community-nebula .nebula-cloud .gas-particle:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  animation: nebulaPulse 20s infinite alternate;
}
.community-nebula .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.community-nebula .section-event-horizon {
  text-align: center;
  margin-bottom: 5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: cosmicReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.community-nebula .section-event-horizon .section-title {
  font-family: "VinaSans";
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.community-nebula .section-event-horizon .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.community-nebula .section-event-horizon .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.community-nebula .section-event-horizon .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.community-nebula .section-event-horizon .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.community-nebula .section-event-horizon .section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.community-nebula .cosmic-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}
.community-nebula .cosmic-stats .stat-quasar {
  position: relative;
  text-align: center;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  opacity: 0;
  animation: cosmicReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.community-nebula .cosmic-stats .stat-quasar:nth-child(1) {
  animation-delay: 0.3s;
}
.community-nebula .cosmic-stats .stat-quasar:nth-child(2) {
  animation-delay: 0.6s;
}
.community-nebula .cosmic-stats .stat-quasar:nth-child(3) {
  animation-delay: 0.9s;
}
.community-nebula .cosmic-stats .stat-quasar .quasar-value {
  font-family: "VinaSans";
  font-size: 3rem;
  color: #eb2196;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
.community-nebula .cosmic-stats .stat-quasar .quasar-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}
.community-nebula .cosmic-stats .stat-quasar .quasar-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: radial-gradient(circle, rgba(235, 33, 150, 0.1) 0%, transparent 70%);
  animation: quasarPulse 4s infinite;
  z-index: 1;
}
.community-nebula .cosmic-stats .stat-quasar:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.community-nebula .cosmic-stats .stat-quasar:hover .quasar-pulse {
  animation: quasarPulse 2s infinite;
}
.community-nebula .community-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.community-nebula .community-testimonials .testimonial-beam {
  position: relative;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  animation: cosmicReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.community-nebula .community-testimonials .testimonial-beam:nth-child(1) {
  animation-delay: 0.6s;
}
.community-nebula .community-testimonials .testimonial-beam:nth-child(2) {
  animation-delay: 0.9s;
}
.community-nebula .community-testimonials .testimonial-beam::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.03) 0%, rgba(235, 33, 150, 0.03) 100%);
  border-radius: 20px;
  z-index: -1;
}
.community-nebula .community-testimonials .testimonial-beam .user-hologram {
  position: relative;
  width: 80px;
  height: 120px;
  margin: 0 auto 2rem;
  perspective: 1000px;
}
.community-nebula .community-testimonials .testimonial-beam .user-hologram .hologram-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(235, 33, 150, 0.7));
  box-shadow: 0 0 20px rgba(235, 33, 150, 0.3);
  animation: hologramFloat 6s ease-in-out infinite;
}
.community-nebula .community-testimonials .testimonial-beam .user-hologram .hologram-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 10px;
  background: linear-gradient(to right, rgba(94, 33, 235, 0.8), rgba(235, 33, 150, 0.8));
  border-radius: 50%;
  filter: blur(5px);
  animation: hologramGlow 3s infinite alternate;
}
.community-nebula .community-testimonials .testimonial-beam .testimonial-message p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}
.community-nebula .community-testimonials .testimonial-beam .testimonial-message p::before, .community-nebula .community-testimonials .testimonial-beam .testimonial-message p::after {
  content: '"';
  font-size: 2rem;
  color: rgba(235, 33, 150, 0.5);
  position: absolute;
  line-height: 1;
}
.community-nebula .community-testimonials .testimonial-beam .testimonial-message p::before {
  top: -0.5rem;
  left: -0.5rem;
}
.community-nebula .community-testimonials .testimonial-beam .testimonial-message p::after {
  bottom: -1.5rem;
  right: -0.5rem;
}
.community-nebula .community-testimonials .testimonial-beam .user-signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.community-nebula .community-testimonials .testimonial-beam .user-signature .user-name {
  font-weight: 600;
  color: #fff;
}
.community-nebula .community-testimonials .testimonial-beam .user-signature .user-rating {
  color: #eb2196;
  letter-spacing: 2px;
}
.community-nebula .community-testimonials .testimonial-beam:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.community-nebula .community-testimonials .testimonial-beam:hover .hologram-avatar {
  animation: hologramFloat 6s ease-in-out infinite, hologramColorShift 8s infinite;
}

/* ANIMATIONS */
@keyframes nebulaFloat {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 30px);
  }
  100% {
    transform: translate(-30px, -20px);
  }
}
@keyframes nebulaPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.9;
  }
}
@keyframes cosmicReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes quasarPulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
  }
}
@keyframes hologramFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes hologramGlow {
  0% {
    opacity: 0.7;
    width: 70px;
  }
  50% {
    opacity: 1;
    width: 80px;
  }
  100% {
    opacity: 0.7;
    width: 70px;
  }
}
@keyframes hologramColorShift {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .community-nebula {
    padding: 6rem 0;
  }
  .community-nebula .section-event-horizon .section-title {
    font-size: 3rem;
  }
  .community-nebula .cosmic-stats {
    gap: 2rem;
  }
  .community-nebula .cosmic-stats .stat-quasar {
    padding: 1.5rem 2rem;
  }
  .community-nebula .community-testimonials {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .community-nebula {
    padding: 4rem 0;
  }
  .community-nebula .section-event-horizon .section-title {
    font-size: 2.5rem;
  }
  .community-nebula .section-event-horizon .section-subtitle {
    font-size: 1.1rem;
  }
  .community-nebula .cosmic-stats {
    flex-direction: column;
    align-items: center;
  }
}
/* VIRTUAL TOUR SECTION */
.virtual-tour {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(to bottom, #020111 0%, #0a0e23 50%, #020111 100%);
  overflow: hidden;
  z-index: 1;
}

.virtual-tour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.1) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.1) 0%, transparent 25%);
  z-index: -1;
}

/* Tour Interface Container */
.tour-interface {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}

@media (min-width: 992px) {
  .tour-interface {
    flex-direction: row;
    align-items: center;
  }
}
/* VIEWPORT - HOLOGRAPHIC DISPLAY */
.tour-viewport {
  flex: 1;
  position: relative;
  perspective: 2000px;
}

.viewport-screen {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(15, 20, 50, 0.8) 0%, rgba(10, 15, 40, 0.9) 100%);
  border-radius: 16px;
  border: 1px solid rgba(109, 213, 250, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(109, 213, 250, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(5deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.viewport-screen:hover {
  transform: rotateX(8deg) translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(109, 213, 250, 0.2);
}

.screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(109, 213, 250, 0.05) 0%, transparent 50%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0 L100 0 L100 100 L0 100 Z" fill="none" stroke="rgba(109,213,250,0.05)" stroke-width="1"/></svg>');
  z-index: 1;
}

.screen-glare {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom right, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
  transform: rotate(30deg);
  z-index: 2;
}

/* TOUR CONTROLS */
.viewport-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 20, 50, 0.7);
  border: 1px solid rgba(109, 213, 250, 0.3);
  color: #6dd5fa;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.control-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, transparent 45%, rgba(109, 213, 250, 0.1) 50%, transparent 55%);
  transform: rotate(30deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.control-btn:hover {
  background: rgba(25, 30, 70, 0.8);
  border-color: rgba(109, 213, 250, 0.5);
  box-shadow: 0 0 15px rgba(109, 213, 250, 0.3);
  transform: translateY(-3px);
}

.control-btn:hover::before {
  opacity: 1;
  animation: glare-move 1.5s linear infinite;
}

.control-track {
  flex: 1;
  height: 4px;
  background: rgba(109, 213, 250, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.track-position {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 100%;
  background: linear-gradient(to right, #6dd5fa, #5e21eb);
  border-radius: 2px;
  transition: all 0.5s ease;
}

/* TOUR FEATURES */
.tour-features {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-highlight {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(15, 20, 50, 0.4);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(109, 213, 250, 0.05), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-highlight.active {
  background: rgba(25, 30, 70, 0.6);
  border-left-color: #6dd5fa;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-highlight.active::before {
  opacity: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.feature-highlight.active .feature-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6dd5fa, transparent);
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-progress {
  height: 2px;
  background: rgba(109, 213, 250, 0.1);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.feature-highlight.active .feature-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #6dd5fa, #5e21eb);
  border-radius: 1px;
  animation: progress-fill 3s linear infinite;
}

/* ANIMATIONS */
@keyframes progress-fill {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes glare-move {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .viewport-screen {
    height: 300px;
  }
  .tour-features {
    flex: 1 1 100%;
  }
  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .virtual-tour {
    padding: 5rem 0;
  }
  .viewport-screen {
    height: 250px;
    border-radius: 12px;
  }
  .feature-highlight {
    padding: 1rem;
  }
}
/* QUANTUM DISCLAIMER STYLES */
.quantum-disclaimer {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #050404 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins";
  overflow: hidden;
}
.quantum-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  animation: disclaimerPulse 15s infinite alternate;
}
.quantum-disclaimer .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.quantum-disclaimer .disclaimer-event-horizon {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.quantum-disclaimer .disclaimer-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.quantum-disclaimer .disclaimer-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.quantum-disclaimer .disclaimer-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.quantum-disclaimer .disclaimer-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 15px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.quantum-disclaimer .disclaimer-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.quantum-disclaimer .disclaimer-message {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(94, 33, 235, 0.05);
  margin-bottom: 3rem;
  text-align: left;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: cosmicReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.quantum-disclaimer .disclaimer-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.03) 0%, rgba(235, 33, 150, 0.03) 100%);
  border-radius: 15px;
  z-index: -1;
}
.quantum-disclaimer .disclaimer-message p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.quantum-disclaimer .disclaimer-message p:last-child {
  margin-bottom: 0;
}
.quantum-disclaimer .disclaimer-message p strong {
  color: #fff;
  font-weight: 600;
  position: relative;
}
.quantum-disclaimer .disclaimer-message p strong::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.quantum-disclaimer .age-gate-symbol {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  animation: cosmicReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
.quantum-disclaimer .age-gate-symbol .symbol-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "VinaSans";
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(235, 33, 150, 0.3);
  z-index: 2;
}
.quantum-disclaimer .age-gate-symbol .symbol-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(94, 33, 235, 0.5);
  animation: symbolPulse 3s infinite;
  z-index: 1;
}
.quantum-disclaimer .age-gate-symbol .symbol-ring::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px solid rgba(235, 33, 150, 0.3);
  animation: symbolPulse 3s infinite reverse;
}

/* ANIMATIONS */
@keyframes disclaimerPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes cosmicReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes symbolPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .quantum-disclaimer {
    padding: 4rem 0;
  }
  .quantum-disclaimer .disclaimer-title {
    font-size: 2.5rem;
  }
  .quantum-disclaimer .disclaimer-message {
    padding: 1.5rem;
  }
  .quantum-disclaimer .disclaimer-message p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .quantum-disclaimer .disclaimer-title {
    font-size: 2rem;
  }
  .quantum-disclaimer .disclaimer-title .title-decor {
    display: block;
    padding: 0;
  }
  .quantum-disclaimer .disclaimer-title .title-decor:not(:last-child)::after {
    display: none;
  }
  .quantum-disclaimer .age-gate-symbol {
    width: 60px;
    height: 60px;
  }
  .quantum-disclaimer .age-gate-symbol .symbol-core {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
/* STELLAR FOOTER STYLES */
.stellar-footer {
  position: relative;
  background: linear-gradient(135deg, black 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins";
  padding: 5rem 0 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(94, 33, 235, 0.1);
  /* Cosmic particle decoration */
}
.stellar-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(94, 33, 235, 0.03) 0%, transparent 30%), radial-gradient(circle at 80% 20%, rgba(235, 33, 150, 0.03) 0%, transparent 30%);
  pointer-events: none;
}
.stellar-footer .cosmic-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stellar-footer .footer-constellation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-bottom: 4rem;
  position: relative;
}
.stellar-footer .footer-constellation::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(94, 33, 235, 0.3) 20%, rgba(235, 33, 150, 0.3) 80%, transparent 100%);
}
.stellar-footer .footer-constellation .constellation-link {
  position: relative;
}
.stellar-footer .footer-constellation .constellation-link .star-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
.stellar-footer .footer-constellation .constellation-link .star-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  transition: width 0.3s ease;
}
.stellar-footer .footer-constellation .constellation-link .star-link:hover {
  color: #fff;
}
.stellar-footer .footer-constellation .constellation-link .star-link:hover::before {
  width: 100%;
}
.stellar-footer .footer-quasar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  text-align: center;
}
.stellar-footer .footer-quasar .quasar-core {
  margin-bottom: 2rem;
  position: relative;
}
.stellar-footer .footer-quasar .quasar-core .footer-logo {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.stellar-footer .footer-quasar .quasar-core .footer-logo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  border-radius: 3px;
}
.stellar-footer .footer-quasar .quasar-core .footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}
.stellar-footer .footer-quasar .quasar-jet .social-orbit {
  display: flex;
  gap: 2rem;
}
.stellar-footer .footer-quasar .quasar-jet .social-orbit .social-comet {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
.stellar-footer .footer-quasar .quasar-jet .social-orbit .social-comet::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #eb2196;
  transition: width 0.3s ease;
}
.stellar-footer .footer-quasar .quasar-jet .social-orbit .social-comet:hover {
  color: #fff;
}
.stellar-footer .footer-quasar .quasar-jet .social-orbit .social-comet:hover::before {
  width: 100%;
}
.stellar-footer .footer-asteroid-belt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stellar-footer .footer-asteroid-belt .asteroid .belt-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.stellar-footer .footer-asteroid-belt .asteroid .belt-link:hover {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.stellar-footer .footer-supernova {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.stellar-footer .footer-supernova .supernova-explosion {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.stellar-footer .footer-supernova .supernova-remnant img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.stellar-footer .footer-supernova .supernova-remnant img:hover {
  opacity: 1;
}
.stellar-footer .cosmic-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.stellar-footer .cosmic-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 3px;
  height: 3px;
  box-shadow: 0 0 10px 2px rgba(94, 33, 235, 0.5);
  animation: twinkle 4s infinite alternate;
}
.stellar-footer .cosmic-particle:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 2px;
  height: 2px;
  box-shadow: 0 0 8px 1px rgba(235, 33, 150, 0.5);
  animation: twinkle 5s infinite alternate-reverse;
}
.stellar-footer .cosmic-particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  width: 4px;
  height: 4px;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.4);
  animation: twinkle 3s infinite alternate;
}

/* ANIMATIONS */
@keyframes twinkle {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .stellar-footer {
    padding: 3rem 0 1.5rem;
  }
  .stellar-footer .footer-constellation {
    gap: 1rem 2rem;
    margin-bottom: 3rem;
  }
  .stellar-footer .footer-constellation::before {
    display: none;
  }
  .stellar-footer .footer-quasar {
    margin-bottom: 3rem;
  }
  .stellar-footer .footer-quasar .quasar-core .footer-logo {
    font-size: 2rem;
  }
  .stellar-footer .footer-quasar .quasar-jet .social-orbit {
    gap: 1.5rem;
  }
  .stellar-footer .footer-asteroid-belt {
    gap: 0.8rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .stellar-footer .footer-constellation {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .stellar-footer .footer-quasar .quasar-jet .social-orbit {
    flex-direction: column;
    gap: 1rem;
  }
}
/* COSMIC CONTACT SECTION STYLES */
.cosmic-contact-section {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at center, #0b0909 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins";
  overflow: hidden;
}
.cosmic-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  pointer-events: none;
  animation: cosmicPulse 15s infinite alternate;
}
.cosmic-contact-section .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-contact-section .cosmic-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cosmic-contact-section .cosmic-section-header .section-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-contact-section .cosmic-section-header .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.cosmic-contact-section .cosmic-section-header .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.cosmic-contact-section .cosmic-section-header .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-contact-section .cosmic-section-header .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.cosmic-contact-section .cosmic-section-header .cosmic-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  margin: 2rem auto 0;
  border-radius: 3px;
}
.cosmic-contact-section .quantum-contact-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(94, 33, 235, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(94, 33, 235, 0.05);
}
.cosmic-contact-section .quantum-contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.03) 0%, rgba(235, 33, 150, 0.03) 100%);
  border-radius: 20px;
  z-index: -1;
}
.cosmic-contact-section .cosmic-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(235, 33, 150, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cosmic-contact-section .cosmic-success-message .success-hologram {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}
.cosmic-contact-section .cosmic-success-message .success-hologram .success-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(235, 33, 150, 0.5));
  position: relative;
  z-index: 2;
}
.cosmic-contact-section .cosmic-success-message .success-hologram .success-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(235, 33, 150, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: successPulse 2s infinite alternate;
}
.cosmic-contact-section .cosmic-success-message .success-text {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.cosmic-contact-section .cosmic-success-message .success-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cosmic-contact-section .cosmic-success-message .success-particles .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: floatParticle 4s infinite;
}
.cosmic-contact-section .cosmic-success-message .success-particles .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 5px;
  height: 5px;
  animation-delay: 0s;
}
.cosmic-contact-section .cosmic-success-message .success-particles .particle:nth-child(2) {
  top: 70%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: 1s;
}
.cosmic-contact-section .cosmic-success-message .success-particles .particle:nth-child(3) {
  top: 40%;
  left: 85%;
  width: 4px;
  height: 4px;
  animation-delay: 2s;
}
.cosmic-contact-section .quantum-contact-form {
  display: grid;
  gap: 2rem;
}
.cosmic-contact-section .cosmic-form-group {
  position: relative;
}
.cosmic-contact-section .cosmic-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}
.cosmic-contact-section .cosmic-label .label-icon {
  font-size: 1.1rem;
}
.cosmic-contact-section .cosmic-input-field {
  position: relative;
}
.cosmic-contact-section .cosmic-input,
.cosmic-contact-section .cosmic-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
}
.cosmic-contact-section .cosmic-input:focus,
.cosmic-contact-section .cosmic-textarea:focus {
  outline: none;
  border-color: #5e21eb;
  box-shadow: 0 0 0 3px rgba(94, 33, 235, 0.2);
}
.cosmic-contact-section .cosmic-input:focus ~ .input-aura,
.cosmic-contact-section .cosmic-textarea:focus ~ .input-aura {
  opacity: 1;
}
.cosmic-contact-section .cosmic-textarea {
  min-height: 150px;
  resize: vertical;
}
.cosmic-contact-section .input-aura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(94, 33, 235, 0.1) 0%, transparent 70%);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.cosmic-contact-section .quantum-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 5px 25px rgba(235, 33, 150, 0.3);
}
.cosmic-contact-section .quantum-submit-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(94, 33, 235, 0.3), rgba(235, 33, 150, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cosmic-contact-section .quantum-submit-btn .btn-text {
  position: relative;
  transition: all 0.3s ease;
}
.cosmic-contact-section .quantum-submit-btn .btn-icon {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.cosmic-contact-section .quantum-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(235, 33, 150, 0.5);
}
.cosmic-contact-section .quantum-submit-btn:hover .btn-glow {
  opacity: 1;
  animation: pulseGlow 1.5s infinite;
}
.cosmic-contact-section .quantum-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}
.cosmic-contact-section .quantum-submit-btn:active {
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50px) translateX(20px);
    opacity: 0;
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .cosmic-contact-section {
    padding: 4rem 0;
  }
  .cosmic-contact-section .cosmic-section-header .section-title {
    font-size: 2.5rem;
  }
  .cosmic-contact-section .quantum-contact-container {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .cosmic-contact-section .cosmic-section-header .section-title {
    font-size: 2rem;
  }
  .cosmic-contact-section .quantum-contact-form {
    gap: 1.5rem;
  }
}
/* COSMIC GAME IFRAME STYLES */
.cosmic-game-iframe {
  position: relative;
  padding: 4rem 0;
  background: radial-gradient(ellipse at center, #050404 0%, #000000 100%);
  color: #fff;
  font-family: "Poppins";
  overflow: hidden;
}
.cosmic-game-iframe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  pointer-events: none;
  animation: cosmicPulse 15s infinite alternate;
}
.cosmic-game-iframe .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-game-iframe .cosmic-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cosmic-game-iframe .cosmic-section-header .section-title {
  font-family: "VinaSans";
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-game-iframe .cosmic-section-header .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-game-iframe .cosmic-section-header .cosmic-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  margin: 1.5rem auto 0;
  border-radius: 3px;
}
.cosmic-game-iframe .quantum-iframe-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(94, 33, 235, 0.1);
  transform: translateZ(0);
}
.cosmic-game-iframe .iframe-holographic-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(94, 33, 235, 0.3);
  border-radius: 15px;
  overflow: hidden;
}
.cosmic-game-iframe .cosmic-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
.cosmic-game-iframe .holographic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.05) 0%, rgba(235, 33, 150, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.cosmic-game-iframe .corner-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}
.cosmic-game-iframe .corner-decoration::before, .cosmic-game-iframe .corner-decoration::after {
  content: "";
  position: absolute;
  background: #5e21eb;
}
.cosmic-game-iframe .corner-decoration.tl {
  top: 0;
  left: 0;
}
.cosmic-game-iframe .corner-decoration.tl::before {
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
}
.cosmic-game-iframe .corner-decoration.tl::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 20px;
}
.cosmic-game-iframe .corner-decoration.tr {
  top: 0;
  right: 0;
}
.cosmic-game-iframe .corner-decoration.tr::before {
  top: 0;
  right: 0;
  width: 20px;
  height: 2px;
}
.cosmic-game-iframe .corner-decoration.tr::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 20px;
}
.cosmic-game-iframe .corner-decoration.bl {
  bottom: 0;
  left: 0;
}
.cosmic-game-iframe .corner-decoration.bl::before {
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
}
.cosmic-game-iframe .corner-decoration.bl::after {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 20px;
}
.cosmic-game-iframe .corner-decoration.br {
  bottom: 0;
  right: 0;
}
.cosmic-game-iframe .corner-decoration.br::before {
  bottom: 0;
  right: 0;
  width: 20px;
  height: 2px;
}
.cosmic-game-iframe .corner-decoration.br::after {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 20px;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .cosmic-game-iframe .cosmic-section-header .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .cosmic-game-iframe {
    padding: 3rem 0;
  }
  .cosmic-game-iframe .cosmic-section-header .section-title {
    font-size: 2rem;
  }
  .cosmic-game-iframe .corner-decoration {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .cosmic-game-iframe .cosmic-section-header .section-title {
    font-size: 1.8rem;
  }
  .cosmic-game-iframe .corner-decoration {
    width: 20px;
    height: 20px;
  }
  .cosmic-game-iframe .corner-decoration::before, .cosmic-game-iframe .corner-decoration::after {
    width: 15px !important;
  }
}
/* ABOUT US SECTION STYLES */
.cosmic-about {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(19, 16, 16, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
.cosmic-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  pointer-events: none;
  animation: cosmicPulse 15s infinite alternate;
}
.cosmic-about .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-about .about-event-horizon {
  position: relative;
}
.cosmic-about .section-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-about .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.cosmic-about .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.cosmic-about .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-about .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.cosmic-about .about-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .cosmic-about .about-content {
    flex-direction: column;
  }
}
.cosmic-about .about-text {
  flex: 1;
}
.cosmic-about .cosmic-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.cosmic-about .cosmic-paragraph strong {
  color: #fff;
  font-weight: 600;
}
.cosmic-about .about-subtitle {
  font-size: 1.8rem;
  color: #eb2196;
  margin: 3rem 0 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.cosmic-about .about-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 5px;
  background: linear-gradient(to bottom, #5e21eb, #eb2196);
  border-radius: 5px;
}
.cosmic-about .cosmic-features2 {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cosmic-about .cosmic-features2 {
    flex-direction: column;
  }
}
.cosmic-about .feature-pillar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(94, 33, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cosmic-about .feature-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 33, 235, 0.03) 0%, rgba(235, 33, 150, 0.03) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cosmic-about .feature-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-about .feature-pillar:hover::before {
  opacity: 1;
}
.cosmic-about .feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cosmic-about .feature-pillar h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cosmic-about .feature-pillar p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.cosmic-about .about-image {
  flex: 1;
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .cosmic-about .about-image {
    width: 100%;
    min-height: 300px;
  }
}
.cosmic-about .cosmic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.cosmic-about .image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(94, 33, 235, 0.2) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: glowPulse 6s infinite alternate;
}
.cosmic-about .cosmic-values {
  margin: 5rem 0;
}
.cosmic-about .values-title {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  position: relative;
}
.cosmic-about .values-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.cosmic-about .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.cosmic-about .value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(94, 33, 235, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cosmic-about .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #5e21eb, #eb2196);
  transition: width 0.4s ease;
}
.cosmic-about .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-about .value-card:hover::before {
  width: 100%;
  opacity: 0.1;
}
.cosmic-about .value-number {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: rgba(235, 33, 150, 0.3);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.cosmic-about .value-card h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cosmic-about .value-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.cosmic-about .cosmic-cta {
  text-align: center;
  margin-top: 4rem;
}
.cosmic-about .cosmic-cta p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.cosmic-about .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cosmic-about .cta-btn.supernova {
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  box-shadow: 0 5px 25px rgba(235, 33, 150, 0.3);
}
.cosmic-about .cta-btn.supernova:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(235, 33, 150, 0.5);
}
.cosmic-about .cta-btn.supernova:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6f38ed, #ed38a1);
  z-index: -1;
  animation: pulseGlow 1.5s infinite;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes glowPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .cosmic-about {
    padding: 4rem 0;
  }
  .cosmic-about .section-title {
    font-size: 2.5rem;
  }
  .cosmic-about .about-subtitle {
    font-size: 1.5rem;
  }
  .cosmic-about .cosmic-features2 {
    flex-direction: column;
  }
  .cosmic-about .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cosmic-about .section-title {
    font-size: 2rem;
  }
  .cosmic-about .about-content {
    gap: 2rem;
  }
  .cosmic-about .about-image {
    min-height: 250px;
  }
}
/* COSMIC SLOTS GALLERY STYLES */
.cosmic-slots-gallery {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at center, #050404 0%, #000000 100%);
  overflow: hidden;
  color: #fff;
  font-family: "Poppins";
}
.cosmic-slots-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(94, 33, 235, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(235, 33, 150, 0.05) 0%, transparent 20%);
  animation: cosmicPulse 15s infinite alternate;
  pointer-events: none;
}
.cosmic-slots-gallery .stellar-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cosmic-slots-gallery .cosmic-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.cosmic-slots-gallery .cosmic-section-header .section-title {
  font-family: "VinaSans";
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor.cosmic {
  color: rgba(255, 255, 255, 0.8);
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor.highlight {
  color: #5e21eb;
  text-shadow: 0 0 20px rgba(94, 33, 235, 0.4);
  animation: textGlow 3s infinite alternate;
}
.cosmic-slots-gallery .cosmic-section-header .section-title .title-decor:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.cosmic-slots-gallery .cosmic-section-header .section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cosmic-slots-gallery .cosmic-section-header .cosmic-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  margin: 2rem auto 0;
  border-radius: 3px;
}
.cosmic-slots-gallery .quantum-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.cosmic-slots-gallery .cosmic-slot-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(94, 33, 235, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cosmic-slots-gallery .cosmic-slot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.cosmic-slots-gallery .cosmic-slot-card:hover .slot-hologram .holographic-overlay {
  opacity: 1;
}
.cosmic-slots-gallery .cosmic-slot-card:hover .slot-hologram .quantum-play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=space] .holographic-overlay {
  background: linear-gradient(45deg, rgba(65, 105, 225, 0.3), rgba(0, 191, 255, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=dragon] .holographic-overlay {
  background: linear-gradient(45deg, rgba(220, 20, 60, 0.3), rgba(255, 69, 0, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=retro] .holographic-overlay {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=fruit] .holographic-overlay {
  background: linear-gradient(45deg, rgba(50, 205, 50, 0.3), rgba(34, 139, 34, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gem] .holographic-overlay {
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gift] .holographic-overlay {
  background: linear-gradient(45deg, rgba(255, 192, 203, 0.3), rgba(255, 105, 180, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=gold] .holographic-overlay {
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.3), rgba(184, 134, 11, 0.3));
}
.cosmic-slots-gallery .cosmic-slot-card[data-theme=western] .holographic-overlay {
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), rgba(160, 82, 45, 0.3));
}
.cosmic-slots-gallery .slot-hologram {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cosmic-slots-gallery .slot-hologram .slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cosmic-slots-gallery .slot-hologram .holographic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .play-link {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #5e21eb, #eb2196);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(235, 33, 150, 0.4);
  transition: all 0.3s ease;
}
.cosmic-slots-gallery .slot-hologram .quantum-play-button .play-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(235, 33, 150, 0.6);
}
.cosmic-slots-gallery .slot-info {
  padding: 1.5rem;
  text-align: center;
}
.cosmic-slots-gallery .slot-info .slot-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.cosmic-slots-gallery .slot-info .slot-rating .star {
  color: #eb2196;
  font-size: 1.1rem;
  margin: 0 2px;
}

/* ANIMATIONS */
@keyframes cosmicPulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(94, 33, 235, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(94, 33, 235, 0.6);
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
@media (max-width: 768px) {
  .cosmic-slots-gallery {
    padding: 4rem 0;
  }
  .cosmic-slots-gallery .cosmic-section-header .section-title {
    font-size: 2.5rem;
  }
  .cosmic-slots-gallery .cosmic-section-header .section-subtitle {
    font-size: 1.1rem;
  }
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .cosmic-slots-gallery .slot-hologram {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .cosmic-slots-gallery .cosmic-section-header .section-title {
    font-size: 2rem;
  }
  .cosmic-slots-gallery .quantum-slots-grid {
    grid-template-columns: 1fr;
  }
}
/* PRIVACY & TERMS STYLES */
.privacy-container,
.terms-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  font-family: "Poppins";
  color: #000000;
}
.privacy-container h1,
.terms-container h1 {
  font-family: "VinaSans";
  font-size: 2.5rem;
  color: #5e21eb;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.privacy-container h1::after,
.terms-container h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
}
.privacy-container h2,
.terms-container h2 {
  font-size: 1.5rem;
  color: #5e21eb;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(94, 33, 235, 0.2);
}
.privacy-container p,
.terms-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.privacy-container strong,
.terms-container strong {
  color: #000000;
  font-weight: 600;
}

.privacy-content,
.terms-content {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.privacy-content::before,
.terms-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #5e21eb, #eb2196);
  border-radius: 15px 15px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-container,
  .terms-container {
    padding: 0 1rem;
  }
  .privacy-container h1,
  .terms-container h1 {
    font-size: 2rem;
  }
  .privacy-container h2,
  .terms-container h2 {
    font-size: 1.3rem;
  }
  .privacy-content,
  .terms-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .privacy-container h1,
  .terms-container h1 {
    font-size: 1.8rem;
  }
}
/* Additional styling for lists if needed */
.privacy-content ul,
.terms-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-content ul li,
.terms-content ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Highlight important sections */
.important-note {
  background: rgba(94, 33, 235, 0.1);
  border-left: 4px solid #5e21eb;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 5px 5px 0;
}
.important-note p {
  margin-bottom: 0;
  color: #000000;
}

/* Styling for last updated date */
.last-updated {
  text-align: right;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Contact information styling */
.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(94, 33, 235, 0.2);
}
.contact-info h3 {
  color: #5e21eb;
  margin-bottom: 1rem;
}
.contact-info a {
  color: #eb2196;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #c7127b;
  text-decoration: underline;
}

body {
  box-sizing: border-box;
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins";
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
  scroll-behavior: smooth;
}

.wrapper {
  scroll-behavior: smooth;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.logo {
  width: 50px;
  height: auto;
  border-radius: 12px;
}

/*# sourceMappingURL=main.css.map */
