:root {
  --bg-color: #0d0406;
  --text-color: #ffffff;
  --accent-color: #ff99aa;
  --text-secondary: #aaaaaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Outfit", sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 0, 80, 0.05) 0%,
    rgba(0, 0, 0, 0.5) 80%
  );
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 800px;
  text-align: center;
  padding: 2rem;
}

.logo {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 3rem; /* Increased size */
  letter-spacing: 0.2rem;
  opacity: 1; /* Increased opacity */
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 153, 170, 0.4);
}

main {
  margin-bottom: 2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

h2 {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: #330011;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 153, 170, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 153, 170, 0.6);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translate(2px, -2px);
}

footer {
  margin-top: 3rem;
}

.line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-secondary), transparent);
  margin: 0 auto 1rem auto;
  opacity: 0.3;
}

footer p {
  font-size: 0.75rem;
  opacity: 0.3;
  margin: 0;
}

/* Анимации */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1rem;
  }
}


/* Footer Telegram Button (Auto-generated to match theme) */
.footer-telegram-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: #330011;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 153, 170, 0.2);
}

.footer-telegram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 153, 170, 0.6);
}
