:root {
  --accent1: #ff2fb3;
  --accent2: #00e6d1;
  --accent3: #ac6bff;
}

body {
  margin: 0;
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Arial Black', sans-serif;
}

/* ===== GRID BACKGROUND ===== */
.tiles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 25px);
  grid-auto-rows: 25px;
}

.tile {
  background: transparent;
  transition: background 0.3s ease;
}

/* ===== CONTENT ===== */
.loading-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* LOGO ORB FLOATING */
.logo-orb {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--accent3) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent3);
}

.logo-orb img {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* GLITCH TEXT */
.glitch-text {
  font-size: 2.5rem;
  color: var(--accent1);
  text-transform: uppercase;
  letter-spacing: 6px;
  position: relative;
  text-shadow: 0 0 10px var(--accent1), 0 0 20px var(--accent1);
  margin-top: 15px;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: var(--accent2);
  clip: rect(0, 900px, 0, 0);
  animation: glitch 2s infinite;
}

.glitch-text::after {
  color: var(--accent3);
}

@keyframes glitch {
  0% { clip: rect(0, 900px, 0, 0); }
  20% { clip: rect(0, 900px, 100px, 0); transform: translate(-2px, -2px); }
  40% { clip: rect(0, 900px, 50px, 0); transform: translate(2px, 2px); }
  60% { clip: rect(0, 900px, 100px, 0); transform: translate(-2px, 0); }
  80% { clip: rect(0, 900px, 50px, 0); transform: translate(2px, -2px); }
  100% { clip: rect(0, 900px, 0, 0); }
}

/* PROGRESS BAR */
.progress-container {
  width: 250px;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-top: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 10px var(--accent1), 0 0 15px var(--accent2);
  animation: loadBar 3s forwards;
}

@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

