/*
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #2c2f36;
    outline: none;
    transition: all 0.3s ease;
}





/* ✅ Current Value */
#field_3_value {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
}



.page-home .vs-service-wrapper {
    display: flex;
    justify-content: space-between; /* or center / flex-start */
    flex-wrap: wrap; /* optional, allows wrapping on smaller screens */
    gap: 10px; /* optional space between cards */
  }
  
.page-home .vs-service {
    flex: 1 1 46%;
    max-width: 46%;
}

.custom-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .accordion-item {
    border-bottom: 1px solid #333;
    padding: 5px 0;
  }
  
  .accordion-header {
    cursor: pointer;
    padding: 8px 12px;
    background-color: #1c1c24;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
  }
  
  .accordion-content {
    display: none;
    padding: 5px 15px;
  }

  .accordion-header.active-category {
  background-color: #ffcc00;
  color: #fff;
}

.accordion-content li a.active-subcategory {
  color: #ffcc00;
  font-weight: bold;
}


  .accordion-content a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
  }
  
  .accordion-content a:hover {
    text-decoration: underline;
  }
  
  .accordion-header.open .toggle {
    transform: rotate(45deg);
    transition: transform 0.2s;
  }
  
  /* Indent subcategories and show dash */
.accordion-content li {
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 14px;
  }
  
.sub-bullet {
    color: #ffcc00;
    margin-right: 6px;
    font-weight: bold;
}

.form-control {
    text-transform: none !important;
}



.features-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 👈 this is the key */
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-box {
  background-color: #12151f;
  color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  flex: 1;
  min-width: 280px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box li {
  margin-bottom: 12px;
}

.feature-right {
  flex: 1;
  text-align: center;
  min-width: 220px;
}

.feature-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.swal2-container {
  z-index: 999999 !important;
}

.tagcloud-wrapper {
  overflow: hidden;
  max-height: 750px;
}

.tagcloud {
  max-height: 750px;
  overflow-y: auto;
  padding-right: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: #ffaa00 transparent;
}

.tagcloud a {
  background: #1e1f29;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.tagcloud:hover {
  overflow-y: auto; /* Show scroll on hover */
}

/* Optional: WebKit scrollbar styling */
.tagcloud::-webkit-scrollbar {
  width: 4px;
}

.tagcloud::-webkit-scrollbar-thumb {
  background: #ffaa00;
  border-radius: 4px;
}
.authBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  padding: 6px 10px;
}

.authBtn svg {
  width: 24px;
  height: 24px;
}

.authBtn:hover {
  color: #ffaa00;
}

.form-select,
.form-control {
  /* default values */
  --input-bg:           #1e1f26;
  --input-text:         #fff;
  --input-border:       #444;
  --input-focus-border: #ffaa00;

  background-color: var(--input-bg);
  color:            var(--input-text);
  border:           1px solid var(--input-border);
  border-radius:    10px;
  padding:          14px 18px;
  font-size:        18px;
  width:            100%;
  height:           63px;
  box-shadow:       none;
  font-weight:      600;
  transition:       background-color 0.2s ease-in-out,
                    color 0.2s ease-in-out,
                    border-color 0.2s ease-in-out;
}

.form-select:focus,
.form-control:focus {
  outline: none;
  border-color: var(--input-focus-border);
}
.vs-btn.style4 {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  background-color: #A6D719;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
}

.vs-btn.style4:hover {
  background-color: #8bb812;
}

.qty-btn-d {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Make it circle */
  background-color: #f0f0f0;
  border: 1px solid #ffc107;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.qty-btn-d:hover {
  border-color: #ffc107;
}

.cart_item {
  display: table-row;
}

@media screen and (max-width: 768px) {
  .cart_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #1a1a1a;
  }

  .cart_item td {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border: none !important;
  }

  .cart_item td img {
    width: 70px;
    height: auto;
  }

  .cart_item td span,
  .cart_item td strong,
  .cart_item td div {
    flex: 1;
    text-align: right;
  }

  .cart_table thead,
  .cart_table tfoot {
    display: none;
  }
}


.game-services-section {
  padding: 60px 0;
}

.game-card {
  display: block;
  width: 100%;
    border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.game-card:hover {
  transform: scale(1.02);
  border-color: #ffaa00;
}

input[type="checkbox"].form-check-input:checked {
  accent-color:    var(--cb-checked-bg) !important;
  background-color: var(--cb-checked-bg) !important;
  border-color:     var(--cb-checked-bg) !important;
}

/* add this once in your CSS (after Bootstrap) */

/* 2) Slider background & progress bar */


.terms-container,
.terms-container * {
  text-transform: none !important;
}