/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  /* Remove height restriction */
  /* height: 100%; */
  background-color: #120E09; /* Void Black */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0rem 2rem 2rem; /* Add top padding */
}


/* Title */
.mqo-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #B76B38; /* Burnished Copper */
  text-shadow: 0 0 12px rgba(183, 107, 56, 0.5);
  margin-bottom: 1rem;
}


/* Discord Button */
.mqo-button {
  font-family: 'Inter', sans-serif;
  background-color: #2E170A; /* Ember Core */
  color: white;
  padding: 0.85rem 1.75rem;
  border: 2px solid #A55E2E; /* Deep Copper */
  border-radius: 12px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(46, 23, 10, 0.6);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mqo-button:hover {
  background-color: #A55E2E; /* Deep Copper */
  box-shadow: 0 0 18px rgba(165, 94, 46, 0.6);
  transform: scale(1.05);
}

.logo {
  max-width: clamp(200px, 40vw, 400px);
  height: auto;
}

.mqo-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); /* larger */
  color: #A55E2E; /* Deep Copper */
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-shadow: 0 0 6px rgba(165, 94, 46, 0.3);
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 2.5rem auto 0;
  border: 2px solid #B76B38;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(183, 107, 56, 0.2);
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.mqo-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 1.5vw, 1.2rem);
  color: #d6ccc2;
  max-width: 850px;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
  text-shadow: 0 0 4px rgba(183, 107, 56, 0.2);
}
.mqo-note {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #a59ba4;
  margin-top: 1rem;
  text-align: center;
}
.coming-soon-label {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: #B76B38;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px rgba(183, 107, 56, 0.3);
}

/* Responsive font fallback */
@media (max-width: 500px) {
  .mqo-subtitle {
    font-size: 1rem;
  }

  .mqo-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .video-wrapper video {
    min-height: 240px;
  }
}
