@charset "utf-8";
/* CSS Document */
/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Zain', sans-serif;
}
body {
  background-color: rgba(200,0,0,1.00);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Container */
.container {
  max-width: 90%;
  text-align: center;
}
.logo {
  margin-top: 40px;
  max-width: 720px;
  height: auto;
}
.title {
  margin-top: 20px;
  margin-bottom: 10px;
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.text {
  margin-bottom: 20px;
  max-width: 720px;
  color: white;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.cursive {
  font-family: 'Cookie', cursive;
  color: white;
  font-size: 2rem;
}
.product {
  max-width: 720px;
  height: auto;
}
/* video */
.video-container {
  position: relative;
  padding-bottom: 28.125%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 50%;
  margin: 20px auto;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: white;
  color: red;
  font-size: 1.8rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  background-color: #ffe5e5;
  color: #b30000;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
/* form */
.contact-form {
  margin-top: 40px;
  margin-bottom: 80px;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  gap: 15px;
}
.contact-form input, .contact-form textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Zain', sans-serif;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #999;
}
.form-button {
  padding: 12px;
  background-color: white;
  color: red;
  font-size: 1.6rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.form-button:hover {
  background-color: #ffe5e5;
  color: #b30000;
  transform: scale(1.05);
}
/* availability */
.number-check-row {
  display: flex;
  gap: 10px;
}
#game-number {
  flex: 1;
}
.swal2-noicon-popup .swal2-title {
  display: none;
}
.swal2-noicon-popup .swal2-html-container {
  margin: 0;
  padding: 0;
}
.check-button {
  padding: 12px 20px;
  background-color: white;
  color: red;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.check-button:hover {
  background-color: #ffe5e5;
  color: #b30000;
  transform: scale(1.05);
}
/* footer */
.site-footer {
  margin-top: 60px;
  padding: 20px;
  color: white;
  text-align: center;
  font-family: 'Zain', sans-serif;
  font-size: 0.95rem;
}
.footer-text {
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ffe5e5;
}
/* Sold Out Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(100, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.popup-content {
  background: white;
  color: black;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  font-family: 'Zain', sans-serif;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: fadeInScale 0.3s ease-in-out;
}
.popup-content h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.2;
}
.popup-content p {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.4;
}
.popup-content a {
  background: rgb(150, 0, 0);
  color: white;
  margin: 5px;
  padding: 2px 20px;
  border-radius: 20px;
  font-size: 1.25rem;
  cursor: pointer;
  border: 1px solid rgb(150, 0, 0);
}
.popup-content a:hover {
  background: white;
  color: rgb(150, 0, 0);
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Responsive */
@media (max-width: 600px) {
  .logo {
    margin-top: 20px;
    max-width: 90%;
    height: auto;
  }
  .text {
    max-width: 90%;
    font-size: 1rem;
  }
  .product {
    max-width: 90%;
    height: auto;
  }
  .cta-button {
    font-size: 1.4rem;
    padding: 10px 24px;
    margin-top: 20px;
  }
  .contact-form {
    max-width: 720px;
    width: 100%;
  }
  .contact-form input, .contact-form textarea {
    font-size: 0.9rem;
  }
  .form-button {
    font-size: 1.3rem;
    padding: 10px;
  }
  .check-button {
    width: 100%;
    font-size: 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .video-container {
    padding-bottom: 50.625%; /* 16:9 aspect ratio */
    max-width: 90%;
  }
  .popup-content {
    padding: 20px;
  }
  .popup-content h2 {
    font-size: 1.4rem;
  }
  .popup-content p {
    font-size: 1rem;
  }
  .popup-content a {
    font-size: 1rem;
  }
  .popup-close {
    font-size: 1.5rem;
  }
}