/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background-attachment: fixed;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== PROFILE ===== */
.profile {
  text-align: center;
  margin-bottom: 25px;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
}

.name {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  margin-top: 5px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ===== SECTION ===== */
.section {
  width: 100%;
  margin-top: 25px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ===== BUTTON BASE ===== */
.btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 12px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  font-family: 'Poppins', sans-serif;
}

.btn i {
  font-size: 1.4rem;
  width: 30px;
  text-align: center;
  margin-right: 14px;
}

.btn-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
}

.btn span {
  flex: 1;
  text-align: left;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===== BRAND COLORS ===== */

/* Official Website — Gold/Dark elegant */
.btn-website {
  background: linear-gradient(135deg, #1a1a1a, #3a2f1a);
  border: 1px solid #d4af37;
  color: #f5d76e;
}

/* YouTube */
.btn-youtube {
  background: #FF0000;
}

/* YouTube Music — Red gradient + dark */
.btn-ytmusic {
  background: linear-gradient(135deg, #FF0000, #8b0000);
}

/* Spotify */
.btn-spotify {
  background: #1DB954;
}

/* Apple Music */
.btn-applemusic {
  background: linear-gradient(135deg, #FA243C, #FB5C74);
}

/* Deezer */
.btn-deezer {
  background: linear-gradient(135deg, #A238FF, #EF5466, #FFC300);
}

/* SoundCloud */
.btn-soundcloud {
  background: linear-gradient(135deg, #FF7700, #FF3300);
}

/* Amazon Music */
.btn-amazon {
  background: #00A8E1;
}

/* Instagram */
.btn-instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* Facebook */
.btn-facebook {
  background: #1877F2;
}

/* TikTok */
.btn-tiktok {
  background: #000000;
  position: relative;
  overflow: hidden;
}

.btn-tiktok i {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 15px 0;
}

/* ===== MODAL POPUP ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, #1f1c3a, #2c2858);
  width: 100%;
  max-width: 400px;
  padding: 30px 25px 20px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transform: scale(0.85);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 420px) {
  .name {
    font-size: 1.5rem;
  }
  .avatar {
    width: 110px;
    height: 110px;
  }
  .btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .btn i {
    font-size: 1.25rem;
  }
}
