:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-gradient: linear-gradient(
    135deg,
    #6366f1 0%,
    #a855f7 50%,
    #ec4899 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --font-main: "Outfit", sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden; /* No scroll as requested */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Animated Background */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #1a1a2e 0%, #050505 70%);
}

.background-animation::before,
.background-animation::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}

.background-animation::before {
  background: #6366f1;
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.background-animation::after {
  background: #ec4899;
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  z-index: 1;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.header {
  text-align: center;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
}

/* Links */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.link-card {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.5s;
}

.link-card:hover::before {
  transform: translateX(100%);
}

.link-card:hover {
  background: var(--glass-hover);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-right: 1rem;
  color: #fff;
  transition: 0.3s;
}

.link-card:hover .icon-wrapper {
  background: var(--accent-gradient);
  color: #fff;
}

.text-content {
  flex: 1;
}

.link-title {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.link-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.arrow-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.link-card:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.footer {
  margin-top: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 480px) {
  .brand-name {
    font-size: 2rem;
  }

  .container {
    padding: 1.5rem;
  }
}
