   body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #000;
    }

   
	.auth-buttons {
  background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%); /* dark purple gradient */
  padding: 20px;
  text-align: center;
}

.auth-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700; /* gold */
  color: #2c003e; /* deep purple text */
  text-decoration: none;
  margin: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.auth-button:hover {
  background-color: #ffbf00; /* deeper gold on hover */
  transform: translateY(-2px);
}


    .container {
      padding: 20px;
      text-align: center;
      max-width: 1200px;
      margin: auto;
    }

    .header-bar {
      color: black;
      padding: 0px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .left {
      display: flex;
      align-items: center;
    }

    .custom-logo {
      height: 65px;
      width: 143;
      margin-right: 10px;
    }

    .promo-section {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .promo-image {
      width: 100%;
      max-width: 700px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .register-now {
      margin-top: 30px;
      background-color: #00aaff;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
      font-size: 20px;
      cursor: pointer;
    }

    .register-now:hover {
      background-color: #008fcc;
    }

    .highlight-banner {
  background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
  color: #000;
  text-align: center;
  padding: 15px 10px;
  margin: 30px auto;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  max-width: 800px;
  animation: pulse 1.2s infinite;
  display: block;              /* Make the anchor tag behave like a block element */
  text-decoration: none;       /* Remove underline from the link */
}


    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }

    .gift-code-section {
      margin-top: 40px;
      padding-bottom: 30px;
    }

    .info-table {
      margin: 0 auto;
      border-collapse: collapse;
      width: 100%;
      max-width: 600px;
    }

    .info-table td {
      border: 1px solid #ccc;
      padding: 12px;
      font-size: 16px;
    }

    .footer-text-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: left;
    }

    .footer-text-container h1 {
      color: #d4af37;
      font-size: 28px;
    }

    .footer-text-container p {
      margin: 15px 0;
      font-size: 16px;
      line-height: 1.6;
    }

    footer {
      background-color: #f1f1f1;
      padding: 1em;
      text-align: center;
      margin-top: 30px;
    }

    @media (max-width: 768px) {
      .header-bar, .promo-section {
        flex-direction: column;
        text-align: center;
      }

      .promo-image {
        max-width: 100%;
      }
    }
	
	  .faq-container {
      max-width: 800px;
      margin: 50px auto;
      padding: 20px;
      background: #ffffff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }

    .faq-container h2 {
      text-align: center;
      color: #333;
      margin-bottom: 30px;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
    }

    .faq-question {
      cursor: pointer;
      font-weight: bold;
      position: relative;
    }

    .faq-question::after {
      content: '+';
      position: absolute;
      right: 0;
      font-size: 20px;
      transition: transform 0.3s;
    }

    .faq-question.active::after {
      content: '-';
    }

    .faq-answer {
      display: none;
      padding-top: 10px;
      color: #555;
    }

    .faq-answer.show {
      display: block;
    }

    @media (max-width: 600px) {
      .faq-container {
        padding: 15px;
      }
    }
	
.animated-register-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 25px;
  margin-top: 25px;
  color: #fff;
  background: #1da1f2;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.2s ease;
}

.animated-register-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(#ffffff 0deg, #1da1f2 90deg, #ffffff 180deg, #1da1f2 270deg, #ffffff 360deg);
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.animated-register-button::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #1da1f2;
  border-radius: 30px;
  z-index: -1;
}

.animated-register-button:hover {
  transform: scale(1.05);
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.video-tutorials-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.video-tutorials-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  border-bottom: 2px solid #1da1f2;
  display: inline-block;
  padding-bottom: 10px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-card {
  background: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 320px;
  max-width: 100%;
  transition: transform 0.3s ease;
  padding-bottom: 10px;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.video-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #333;
  padding: 0 10px;
}

.bdg-game-section {
  text-align: center;
  padding: 40px 15px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card-link {
  text-decoration: none;
  color: inherit;
  width: 300px;
}

.game-card {
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.game-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 16px;
  color: #555;
}
