body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

.bdg-auth-buttons {
  display: flex;
  justify-content: center;
  background-color: #333;
  padding: 10px 0;
  flex-wrap: wrap;
}

.bdg-auth-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffce00;
  color: #000;
  text-decoration: none;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.bdg-auth-button:hover {
  background-color: #c1a65d;
}

.bdg-container {
  padding: 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.bdg-header-bar {
  color: black;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bdg-header-left {
  display: flex;
  align-items: center;
}

.bdg-custom-logo {
  height: 32px;
  width: 32px;
  margin-right: 10px;
}

.bdg-promo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.bdg-promo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bdg-register-button-plain {
  margin-top: 30px;
  background-color: #00aaff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 20px;
  cursor: pointer;
}

.bdg-register-button-plain:hover {
  background-color: #008fcc;
}

.bdg-highlight-banner {
  background: linear-gradient(90deg, #ffd700, #ffa500);
  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);
  }
}

.bdg-gift-code-section {
  margin-top: 40px;
  padding-bottom: 30px;
}

.bdg-info-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}

.bdg-info-table td {
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 16px;
}

.bdg-footer-text {
  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;
}

.bdg-footer-text h1 {
  color: #d4af37;
  font-size: 28px;
}

.bdg-footer-text 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) {
  .bdg-header-bar,
  .bdg-promo-section {
    flex-direction: column;
    text-align: center;
  }

  .bdg-promo-image {
    max-width: 100%;
  }
}

.bdg-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;
}

.bdg-faq-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.bdg-faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.bdg-faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.bdg-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s;
}

.bdg-faq-question.active::after {
  content: "-";
}

.bdg-faq-answer {
  display: none;
  padding-top: 10px;
  color: #555;
}

.bdg-faq-answer.show {
  display: block;
}

@media (max-width: 600px) {
  .bdg-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);
  }
}

.bdg-video-tutorials {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.bdg-video-tutorials h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  border-bottom: 2px solid #1da1f2;
  display: inline-block;
  padding-bottom: 10px;
}

.bdg-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.bdg-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;
}

.bdg-video-card:hover {
  transform: scale(1.05);
}

.bdg-video-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.bdg-video-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #333;
  padding: 0 10px;
}

.bdg-games-section {
  text-align: center;
  padding: 40px 15px;
}

.bdg-section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.bdg-game-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.bdg-game-card-link {
  text-decoration: none;
  color: inherit;
  width: 300px;
}

.bdg-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;
}

.bdg-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bdg-game-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bdg-game-card p {
  font-size: 16px;
  color: #555;
}
.bdg-qr-image {
  text-align: center;
  margin: 30px 0;
}

.bdg-qr-image img {
  max-width: 220px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
/* Steps Container and Items */
.bdg-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bdg-step-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bdg-step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bdg-step-item h3 {
  color: #333;
  margin-top: 0;
  font-size: 18px;
}

.bdg-step-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0;
}

.bdg-step-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid #ddd;
}

/* Popup Box */
.bdg-popup-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  min-width: 300px;
  position: relative;
}

.bdg-popup-box h3 {
  margin-bottom: 10px;
  color: #333;
}

.bdg-popup-box p {
  color: #333;
  margin: 10px 0;
}

.bdg-popup-box a {
  color: #0088cc;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .bdg-steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bdg-step-item {
    padding: 15px;
  }

  .bdg-popup-box {
    padding: 20px;
  }
}
