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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.65);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.icon-wrapper {
  width: 96px;
  height: 96px;
  background-color: #4ade50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: #0a0a0a;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.subtitle {
  color: #4ade50;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.description {
  color: #888888;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 48px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.link-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-icon.spotify {
  background-color: #1db954;
  color: #000000;
}

.link-icon.youtube {
  background-color: #ff0000;
  color: #ffffff;
}

.link-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
}

.link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.link-title {
  font-size: 1rem;
  font-weight: 600;
}

.link-subtitle {
  font-size: 0.85rem;
  color: #888888;
}

.arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: #555555;
  transition: color 0.2s ease;
}

.link-card:hover .arrow {
  color: #ffffff;
}

.footer-text {
  color: #555555;
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.2rem;
  }

  .link-card {
    padding: 16px 18px;
  }

  .link-icon {
    width: 44px;
    height: 44px;
  }

  .link-icon svg {
    width: 22px;
    height: 22px;
  }
}
