/* Make placeholders visible on dark backgrounds */
:root {
  --bg2-color: #1b1f3b;
  --bg1-color: #2c314f;
  --bg1-card: #2a2f4f;
  --bg2-card: #232743;
  --text-color: #e3e8f0;
  --navbar-bg: #11182f;
  --accent-color: #3b82f6;
  --button-text: #ffffff;
}

.nav-bg{
  background-color: var(--navbar-bg);
}

.button-theme{
  background-color: var(--accent-color);
  color: var(--button-text);
}

::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
}

/* === FOOTER STYLING === */
footer {
  background-color: #0d0f14;
  color: #fff;
  padding-top: 50px;
}

footer h5 {
  font-weight: 600;
}

footer .form-control {
  background-color: #1c1e25;
  color: white;
}

footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

footer .btn-info {
  background-color: #00cfff;
  border: none;
}

footer .btn-info:hover {
  background-color: #00b3e6;
}

footer .payment-icons img {
  height: 60px;
  margin-right: 10px;
}
footer .link-ds{
  text-decoration: none;
  color: #fff;
}
footer .link-ds:hover{
  color: #00b3e6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  footer .row.g-5 {
    row-gap: 2rem;
  }

  footer .col-6 {
    width: 100%;
  }

  footer .payment-icons {
    justify-content: center;
  }

  footer .d-flex.align-items-center {
    justify-content: start;
  }

  footer h4 {
    text-align: left;
    /* font-size: 20px; */
  }

  footer .links {
    margin-top: 3rem;
  }

  footer .links div {
    font-size: 18px;
  }
}



.game-card {
  background-color: var(--bg1-card);
  border: 1px solid #2c2f36;
  transition: all 0.3s ease;
  min-height: 160px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.game-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.text-content h6 {
  font-size: 1.1rem;
}

.text-content p {
  font-size: 0.85rem;
  color: #ccc;
}

.text-content .btn {
  font-size: 0.75rem;
  border-radius: 30px;
  padding: 0.3rem 1.1rem;
}

.card-icon img {
  transition: transform 0.3s ease;
}

.game-card:hover .card-icon img {
  transform: scale(1.1);
}


.product-card {
  background-color: var(--bg2-card);
  border: 1px solid #2d3036;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.product-logo {
  height: 50px;
  object-fit: contain;
}

.bi-star-fill {
  font-size: 0.9rem;
  color: #0dcaf0;
}




.about-us-bg {
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.about-us-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg1-color);
  /* soft dark overlay */
  z-index: 1;
}

.about-us-bg .container {
  position: relative;
  z-index: 2;
}

.social-icon {
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  color: #0dcaf0;
  transform: scale(1.2);
}




.bg-shadow-color {
  background-color: var(--bg2-color);
}


.choose-img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.feature-box {
  background: var(--bg1-card);
  border: 1px solid #2a2d34;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.08);
}

/* .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
  } */

.icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #00f0ff, #00b3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000;
  margin: 0 auto;
}

.feature-box h6 {
  font-weight: 600;
  font-size: 15px;
}



.faq-section .accordion-button {
  background-color: #1b1e25;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #2a2d34;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #00bfff;
  color: #000;
}

.faq-section .accordion-body {
  background-color: #20232a;
  color: #ddd;
  border-top: 1px solid #2a2d34;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-section .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}



.faq-section {
  background-color: var(--bg1-color);
  color: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
}

.faq-question:hover {
  color: #00bfff;
}

.faq-answer {
  color: #ccc;
  padding: 10px 0 20px 0;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #2e2e2e;
}


/* Custom Navbar Styles */

/* Custom navbar Styles */




/* conatct.php */
/* Contact Section Container */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

@media (min-width: 992px) {
  .contact-container {
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
  }

  .form-box {
    flex: 2;
  }

  .info-box {
    flex: 1.2;
  }

  .contact-container::before {
    content: "";
    position: absolute;
    left: 60%;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
  }
}

/* Form Box */
.form-box {
  background: rgba(26, 29, 41, 0.85);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-box h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

input,
select,
textarea {
  background: #0d0f1a;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00bcd4;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  /* background: linear-gradient(135deg, #00bcd4, #007bff); */
  padding: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  width: 100%;
  margin-top: 10px;
  /* color: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.6);
}

/* Info Box */
.info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: rgba(26, 29, 41, 0.85);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

/* Contact Cards */
.contact-card {
  background: #121420;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  background: #0f1329;
  transform: scale(1.02) !important;
}

.contact-card i {
  font-size: 20px;
  color: #00bcd4;
  margin-top: 5px;
}

.contact-card .info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #00bcd4;
  margin: 0;
}

.contact-card .info p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 3px;
  word-break: break-word;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .form-box,
  .info-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-container::before {
    content: none; /* Hide the vertical divider on small screens */
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
  }

  .form-box form {
    gap: 15px;
  }

  .form-box input,
  .form-box textarea {
    font-size: 14px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .info-box h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .info-box .contact-card {
    width: 100%;
  }
}




/* icons hover */
.bi-whatsapp:hover {
  color: #25D366;
}

.bi-telegram:hover {
  color: #0088cc;
}

.bi-instagram:hover {
  color: #d62976;
}

.bi-facebook:hover {
  color: #1877F2;
}


/* about.php */
.about-hero {
  background: url('../assets/images/b3.jpg') center center / cover no-repeat;
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.about-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rules-section {
  padding: 60px 0;
  background-color: #0d1117;
}

.rule-card {
  border: 1px solid #0ea5e9;
  padding: 20px;
  border-radius: 10px;
  background-color: #111827;
  color: #ccc;
  transition: 0.3s ease;
}

.rule-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.stats-section {
  padding: 60px 0;
  background-color: #0d1117;
}

.stat-box h2 {
  font-size: 36px;
  color: #fff;
}

.stat-box p {
  color: #3b82f6;
}

.why-choose-section {
  background-color: #0d1117;
  padding: 60px 20px;
}

.section-title {
  border-bottom: 2px solid #334155;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 24px;
}

.why-text {
  flex: 1 1 50%;
}

.why-image {
  flex: 1 1 45%;
}
