/* ============================================
   =          HERO SECTION STYLING           =
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--togichu-black) 0%,
    var(--togichu-charcoal) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(223, 64, 120, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(
    135deg,
    var(--togichu-magenta) 0%,
    var(--togichu-pink) 50%,
    var(--togichu-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--togichu-blush);
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
}

.buttons-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

#subathonContainer {
  display: flex;
  justify-content: center;
}

/* ============================================
   =           BUTTON STYLES                  =
   ============================================ */
.live-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 3rem;
  background: linear-gradient(135deg, #C771EA 0%, #B745E6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(199, 113, 234, 0.4);
  transition: all 0.3s ease;
}

.live-button:hover,
.live-button:visited,
.live-button:active {
  color: white;
  box-shadow: 0 15px 40px rgba(199, 113, 234, 0.6);
  transform: translateY(-2px);
}

.live-button.subathon-button {
  background:  linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.live-button.subathon-button:hover {
  box-shadow: 0 15px 40px rgba(255, 20, 20, 0.6);
}

.live-indicator {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(
    135deg,
    var(--togichu-magenta) 0%,
    var(--togichu-pink) 100%
  );
  color: white;
  box-shadow: 0 10px 30px rgba(223, 64, 120, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(223, 64, 120, 0.6);
}

.cta-button.secondary {
  background: rgba(245, 213, 200, 0.1);
  color: var(--togichu-peach);
  border: 2px solid var(--togichu-peach);
}

.cta-button.secondary:hover {
  background: var(--togichu-peach);
  color: var(--togichu-black);
  transform: translateY(-2px);
}

/* ============================================
   =        Dynamic Buttons Container         =
   ============================================ */
.dynamic-buttons-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  justify-content: center;
  overflow: visible;
}

#liveButtonContainer,
#subathonContainer {
  display: none;
  justify-content: center;
  opacity: 0;
}

/* ============================================
   =           SOCIAL ICONS                   =
   ============================================ */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: white;
  stroke: white;
}

.social-icon .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.social-icon:hover svg {
  fill: var(--togichu-magenta);
  stroke: var(--togichu-magenta);
  filter: drop-shadow(0 0 8px rgba(223, 64, 120, 0.6));
}

.navbar-socials .social-icon:hover svg {
  fill: var(--togichu-magenta);
  stroke: var(--togichu-magenta);
  filter: drop-shadow(0 0 8px rgba(223, 64, 120, 0.6));
}

.social-icon--throne:hover svg {
  fill: var(--togichu-magenta) !important;
  stroke: var(--togichu-magenta) !important;
  color: var(--togichu-magenta) !important;
}

/* ============================================
   =         MOBILE RESPONSIVE (HOME)         =
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 60px);
    padding: 2rem 0;
  }

  .hero .container {
    padding: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .buttons-container {
    width: 100%;
    padding: 0 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
