* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #fff;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #1e3c72, #2a5298, #6a11cb);
  filter: blur(60px);
  z-index: -1;
  animation: floatGlow 18s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px,-20px); }
}

.app {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 40px;
  transition: transform .6s ease, box-shadow .6s ease;
}

.glass:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}

.hero {
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
}

.hero-title span {
  color: #ffd369;
}

.subtitle {
  margin-top: 10px;
  opacity: .9;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  line-height: 1.8;
}

.story {
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 25px;
  margin-top: 25px;
}

.instagram-media {
  border-radius: 20px !important;
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,255,255,.2); }
  50% { box-shadow: 0 0 30px rgba(255,255,255,.35); }
}

.song-caption {
  opacity: .9;
}

.big-player {
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.25%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.big-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
}

footer {
  text-align: center;
  font-size: .85rem;
  opacity: .8;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: all 1.1s cubic-bezier(.19,1,.22,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Instagram profile cards */
.insta-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.insta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 25px;
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease;
}

.insta-card:hover {
  transform: translateY(-6px) scale(1.03);
}

.ig-icon {
  font-size: 2rem;
}

.insta-card strong {
  display: block;
  font-size: 1.05rem;
}

.insta-card p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.follow {
  font-weight: 600;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.insta-card:hover .follow {
  transform: translateX(6px);
}
