:root {
  --main-bg: #1a1a1a;
  --accent: #ff0844;
  --accent2: #ffb199;
  --text: #fff;
  --gray: #222;
  --shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--main-bg) 75%, var(--accent2) 100%);
  color: var(--text);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 40px auto;
  background: rgba(34, 34, 34, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px 24px 16px 24px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  width: 300px;
  margin-bottom: 16px;
  background: #fff;
}

h1 {
  font-size: 2.1rem;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 8px;
}

main .about,
main .social {
  background: #222e;
  padding: 18px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

main h2 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

main p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: var(--gray);
  border-radius: 50%;
  font-size: 1.7rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 110%, #ff0844 0%, #ffb199 100%);
  color: #fff;
  transform: scale(1.12);
}

.social-links a.facebook:hover {
  background: #1877f3;
  color: #fff;
  transform: scale(1.12);
}

.social-links a.soundcloud:hover {
  background: #ff5500;
  color: #fff;
  transform: scale(1.12);
}

.social-links a.whatsapp:hover {
  background: #25d366;
  color: #fff;
  transform: scale(1.12);
}

footer {
  text-align: center;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 24px;
  padding-bottom: 10px;
}

@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 16px 4vw 8px 4vw;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  h1 {
    font-size: 1.3rem;
  }
}