@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  overflow: hidden;
  font-family: Inter, sans-serif;
  background: #000;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* BACKGROUND WRAPPER */
.background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: blur(12px) brightness(0.65) saturate(1.2);

  transform: scale(1.05);
  object-position: center 20%;

  transition: 0.5s ease;
}

/* DARK OVERLAY (MAKES EVERYTHING CLEAN) */
.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(0,0,0,0.85));
}

/* CONTENT */
.content {
  position: relative;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 2rem;
  text-align: center;
}

/* LOGO */
.logo {
  width: 220px;
  height: 220px;
  margin-top: -120px;

  filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
}

/* CARD (ULTRA GLASS) */
.card {
  width: 450px;
  height: 520px;

  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 26px;

  box-shadow:
    0 25px 80px rgba(0,0,0,0.6),
    inset 0 0 25px rgba(255,255,255,0.05);

  transition: 0.3s ease;
  cursor: pointer;

  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 0 30px rgba(255,255,255,0.08);
}

.card:active {
  transform: scale(0.97);
}

/* TOP IMAGE */
.card-ascii-img {
  margin-top: 25px;
  width: 400px;
  height: 170px;
  border-radius: 1.5rem;
  object-fit: cover;

  filter: contrast(1.1) brightness(0.9);
}

/* AVATAR GLOW */
.card-avatar {
  height: 100px;
  width: 100px;

  position: relative;
  left: 50px;
  bottom: 70px;

  border-radius: 9999px;
  padding: 3px;

  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
}

/* TITLE */
.card-title {
  margin-right: 300px;
  margin-top: -60px;
}

.card-title p {
  font-size: 30px;
  font-weight: 800;

  background: linear-gradient(to top left, #9c9c9c, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 1px;
}

/* DESCRIPTION */
.description,
.description2 {
  font-size: 15px;
  font-weight: 600;

  background: linear-gradient(to top left, #7C7C7C, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin-right: 270px;
  margin-top: 18px;
  opacity: 0.9;
}

.description2 {
  margin-right: 325px;
  margin-top: 5px;
  opacity: 0.7;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.social-button {
  width: 140px;
  height: 45px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 999px;

  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);

  text-decoration: none;
  color: #fff;
  font-weight: 600;

  transition: 0.3s ease;
}

.social-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* OPTIONAL BUTTON COLORS */
.tg,
.www {
  background: rgba(255,255,255,0.1);
}

/* =========================
   🎵 MUSIC PLAYER (NEW)
========================= */

.music-player {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  padding: 10px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 15px;

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;
}

.music-player audio {
  width: 100%;
  filter: invert(1) opacity(0.8);
}

/* subtle glow animation */
@keyframes floatGlow {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.05); }
  50% { box-shadow: 0 0 25px rgba(255,255,255,0.12); }
  100% { box-shadow: 0 0 10px rgba(255,255,255,0.05); }
}

.card {
  animation: floatGlow 6s infinite ease-in-out;
}