/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: #ffffff;
  background-color: #1d1d22;
  background-image: url('images/bg-desktop.jpg');
  background-size: 150%;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}

@media (max-width: 767px) {
  body {
    background-image: url('images/bg-mobile.jpg');
    background-size: 400%;
    background-repeat: repeat-y;
  }
}

a {
  color: #8cf7ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #8cf7ff;
  color: #1c1c1c;
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ===== Container ===== */
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 30px;
  background: #3a3a40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo img {
  height: 22px;
  width: auto;
  opacity: 0.9;
}

.header-amf {
  height: 28px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links,
.social-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: #ffffff;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #8cf7ff;
  text-decoration: none;
}

.social-links a {
  color: #ffffff;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #8cf7ff;
  text-decoration: none;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .site-header {
    padding: 12px 12px;
  }

  .header-logos {
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
  }

  .header-logo img {
    height: 18px;
  }

  .header-amf {
    height: 22px;
  }

  .header-nav {
    gap: 12px;
    flex-shrink: 0;
  }

  .social-links {
    gap: 10px;
    flex-shrink: 0;
  }

  .social-links li {
    flex-shrink: 0;
  }
}

/* ===== Section Headings ===== */
.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #8cf7ff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 1.5rem;
  }
}

/* ===== Signup Section ===== */
.signup-section {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.video-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(29, 29, 34, 0.85) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh; /* 16:9 ratio */
  height: 56.25vw; /* 16:9 ratio */
  border: none;
}

.signup-section .container {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 2px 4px rgba(0,0,0,0.7);
}

@media (max-width: 767px) {
  .hero-tagline {
    font-size: 1.6rem;
  }
}

.signup-card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(60, 60, 60, 0.5);
  border-radius: 10px;
  padding: 35px 30px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.signup-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 5px;
}

.signup-required {
  text-align: right;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 18px;
}

.asterisk {
  color: #e74c3c;
}

.signup-form {
  position: relative;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cccccc;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder {
  color: #666;
}

.form-group input:focus {
  border-color: #8cf7ff;
}

.phone-input-wrap {
  display: flex;
  border: 1px solid #555;
  border-radius: 4px;
  background: #1a1a1a;
  overflow: hidden;
}

.phone-input-wrap input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
}

.phone-country {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
  border-right: 1px solid #555;
  color: #ccc;
}

.phone-country select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.phone-flag {
  font-size: 1.1rem;
}

.phone-error {
  display: none;
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 5px;
}

.phone-error.visible {
  display: block;
}

.form-disclaimer {
  margin-top: 8px;
  font-size: 0.65rem;
  color: #777;
  line-height: 1.4;
}

.form-disclaimer a {
  color: #8cf7ff;
}

.btn-subscribe {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #2a2a2a;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.btn-subscribe:hover {
  background: #3a3a3a;
}

/* ===== Spotify Section ===== */
.spotify-section {
  padding: 40px 0;
  text-align: center;
}

.embed-wrap {
  border-radius: 12px;
  overflow: hidden;
}

/* ===== Video Section ===== */
.video-section {
  padding: 40px 0 50px;
  text-align: center;
}

.video-card {
  background: rgba(40, 40, 40, 0.7);
  border-radius: 15px;
  padding: 20px;
}

.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
.site-footer {
  padding: 50px 20px 30px;
  text-align: center;
  background: #3a3a40;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #555;
  color: #cccccc;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: #8cf7ff;
  color: #8cf7ff;
  text-decoration: none;
}

.footer-legal {
  font-size: 0.7rem;
  color: #888;
  line-height: 2;
}

.footer-legal a {
  color: #888;
  margin: 0 3px;
}

.footer-legal a:hover {
  color: #8cf7ff;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(60, 60, 60, 0.7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 99;
}

.back-to-top:hover {
  text-decoration: none;
  background: rgba(80, 80, 80, 0.9);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
