* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Inter, Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(
    -45deg,
    #DC512E,
    #b23e22,
    #220C07,
    #4a1a10
  );
  background-size: 400% 400%;
  animation: gradientMove 9s ease infinite;

  color: #ffffff;
  overflow-x: hidden;
}


/* Decorative logo */
.corner-logo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0.08;
  pointer-events: none;
}

.corner-logo img {
  width: 360px;
}

/* Container */
.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 56px 20px 64px;
  text-align: center;
}

/* Brand */
.brand {
  margin-bottom: 36px;
}

.logo {
  width: 110px;
  margin-bottom: 16px;
}

.brand h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
}

.link-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* Info block */
.info {
  margin-top: 36px;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.info-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.info-email {
  font-size: 0.9rem;
  opacity: 0.85;
}

.info-meta {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 768px) {
  .corner-logo {
    right: -40px;
    bottom: -40px;
    opacity: 0.05;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

