* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-image: url(/assets/images/tv-static-interference.gif);

  /* background: linear-gradient(135deg, #000000, #2b2b2b, #2e0000, #1b1b1b); */
  background-size: 100%;
  /* animation: gradientShift 15s ease infinite; */
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* @keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

/* Glassmorphic Container Layout */
.glass-card {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

/* Header Row for Action Targets */
.header-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.action-trigger-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.action-trigger-btn:hover {
  transform: scale(1.15);
}

.sub-trigger {
  background: rgba(248, 56, 56, 0.15);
  border-color: rgba(248, 56, 56, 0.3);
  color: #f83838;
}

.sub-trigger:hover {
  background: #f83838;
  color: #2a0f0f;
  box-shadow: 0 0 15px rgba(248, 56, 56, 0.5);
}
.share-trigger:hover {
  background: #ffffff;
  color: #292929;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  margin-bottom: 16px;
  transition: all 0.2s ease-in-out;
}

.profile-pic:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bio {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 20px; /* Reduced to align with the icons container */
  line-height: 1.5;
}

/* Horizontal Social Media Icons Row Styling */
.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.social-icon-link {
  color: #cbd5e1;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.social-icon-link:hover {
  color: #f83838;
  transform: translateY(-3px) scale(1.1);
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Base Link Layout Button Style */
.link-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon {
  position: absolute;
  left: 24px;
  font-size: 1.2rem;
}

.link-btn:hover {
  background: #ffffff;
  color: #0f172a;
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* Modal Styling Frameworks */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(33, 33, 33, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal-btn:hover {
  color: #ffffff;
}

.modal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.modal-card p {
  font-size: 0.9rem;
  color: #b89494;
  margin-bottom: 24px;
  line-height: 1.4;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-card input[type="email"] {
  background: rgba(42, 15, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  text-align: center;
  transition: border-color 0.2s ease;
}

.modal-card input[type="email"]:focus {
  border-color: #f83838;
}

.submit-btn {
  background: #f83838;
  color: #2a0f0f;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background: #e90e0e;
  color: #ffffff;
}
