:root {
  --bg-color: #030303;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --theme-color: #007aff;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a6;
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* Noise Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

/* --- BUBBLE BACKGROUND LAYER (Restored Images) --- */
.bubble-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at center, #0a0a0a 0%, #030303 100%);
  opacity: 0.5;
}

.bubble {
  top: 5rem;
  left: -15rem;
  position: absolute;
  height: 5rem;
  z-index: 1;
  animation: bubble 30s infinite linear;
  opacity: 0.8;
}

.bubble1 {
  top: 50rem;
  right: -5rem;
  position: absolute;
  z-index: 5;
  height: 10rem;
  animation: bubble1 35s infinite linear;
  opacity: 0.7;
}

.bubble2 {
  top: -20rem;
  right: -10rem;
  position: absolute;
  z-index: 5;
  height: 19rem;
  animation: bubble2 50s infinite linear;
  opacity: 0.9;
}

.bubble3 {
  top: -8rem;
  left: 5rem;
  position: absolute;
  z-index: 2;
  height: 9rem;
  animation: bubble3 20s infinite linear;
  opacity: 0.7;
}

.bubble4 {
  top: 55rem;
  left: -8rem;
  position: absolute;
  height: 19rem;
  animation: bubble4 45s infinite linear;
  opacity: 0.6;
}

@keyframes bubble {
  to {
    top: 35rem;
    left: 35rem;
    transform: rotate(180deg);
    opacity: 0;
  }
}

@keyframes bubble1 {
  to {
    top: 3rem;
    right: 50rem;
    transform: rotate(-200deg);
    opacity: 0;
  }
}

@keyframes bubble2 {
  to {
    top: 60rem;
    right: 60rem;
    transform: rotate(-360deg);
    opacity: 0;
  }
}

@keyframes bubble3 {
  to {
    top: 20rem;
    left: 20rem;
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes bubble4 {
  to {
    top: 10rem;
    left: 20rem;
    transform: rotate(200deg);
    opacity: 0;
  }
}

