:root {
  --primary: #ffffff;
  --text-main: #1a1a2e;
  --text-muted: #4a4a5e;
  --accent: #c58344;
  --accent-hover: #e0762f;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
}

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

body,
html {
  height: 100%;
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("bg-blur.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.7;
  animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: #60a5fa;
  top: -15%;
  left: 5%;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: #e879f9;
  bottom: -15%;
  right: 5%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(120px, 60px) scale(1.1);
  }
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 56px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(235, 100, 37, 0.1);
  color: var(--accent);
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(235, 100, 37, 0.1);
}

h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -1px;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.notify-form {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.notify-form input {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 1.05rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.notify-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.notify-form button {
  padding: 18px 36px;
  border: none;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.notify-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 20px -3px rgba(37, 99, 235, 0.4);
}

.notify-form button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px -3px rgba(37, 99, 235, 0.3);
}

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
}

.social-links {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.25rem;
}

.social-links a:hover {
  color: #ffffff;
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(235, 83, 37, 0.25);
}

.social-links a i {
  margin-right: 0;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 40px 24px;
  }

  h1 {
    font-size: 2.25rem;
  }

  p {
    font-size: 1.1rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }
}
