:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent-primary: #00f2fe;
  --accent-secondary: #4facfe;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background Effects */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-secondary);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(30px, 50px);
  }
}

/* Typography & Layout */
.content-wrapper {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

header {
  margin-bottom: 3rem;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}

.logo .accent {
  color: var(--accent-primary);
}

h1 {
  margin-top: 4rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.6;
}

/* 3D Cube */
.cube-wrapper {
  perspective: 1000px;
  width: 150px;
  height: 150px;
  margin: 0 auto 3rem;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 15s infinite linear;
}

.face {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-primary);
  font-size: 1.2rem;
  backdrop-filter: blur(2px);
}

.front {
  transform: rotateY(0deg) translateZ(75px);
}

.back {
  transform: rotateY(180deg) translateZ(75px);
}

.right {
  transform: rotateY(90deg) translateZ(75px);
}

.left {
  transform: rotateY(-90deg) translateZ(75px);
}

.top {
  transform: rotateX(90deg) translateZ(75px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(75px);
}

@keyframes rotate {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }

  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* Countdown */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.time-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Notify Form */
/* Social Links */
.social-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-5px);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.2);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

footer {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .countdown-container {
    gap: 1rem;
  }

  .time-value {
    font-size: 1.8rem;
  }
}