:root {
    --primary-color: #FFD600;
    --secondary-color: #FFC300;
    --accent-color: #FFF9C4;
    --text-color: #fff;
    --light-text: #FFD600;
    --background: #111111;
    --light-bg: #222222;
    --border-color: #FFD600;
    --highlight-bg: #FFD600;
    --highlight-text: #111111;
    --card-bg: #181818;
    --footer-bg: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--background);
    line-height: 1.6;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
   color: var(--primary-color);
}

h3 {
    font-size: 1.2rem;
  }


.navbar {
    background: var(--background) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
     border-bottom: 1px solid var(--primary-color);;
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, #FFD600 0%, #111111 100%);
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero-section .container.position-relative {
    z-index: 1;
}

.carousel-item {
    padding: 40px 0;
}

.min-vh-75 {
    min-height: 70vh;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

.carousel-item .display-4 {
    font-size: 2.5rem;
}

.carousel-item .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.carousel-item img {
    max-height: 500px;
    width: auto;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/page-header-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-hero {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.section-title-highlight {
    display: inline-block;
    background: var(--primary-color);
    color: var(--highlight-text) !important;
    border-radius: 12px;
    padding: 0.5rem 2rem;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; /* matches Bootstrap g-4 */
}
.feature-row > .col-md-4 {
    display: flex;
    flex: 1 0 0%;
}
.feature-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card .text-muted {
    color: var(--text-color) !important;
}

.feature-card h3 {
    color: var(--text-color);
}

.partner-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.partner-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.partner-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-color);
}

.footer-section {
    background: var(--footer-bg);
    color: var(--text-color);
    padding: 0rem 0 4rem;
    border-top: 5px solid var(--primary-color);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.sticky-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.sticky-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.marquee-container {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.howto-card {
    background: var(--primary-color) !important;
    border-radius: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-muted {
    color: var(--light-text) !important;
}

/* New styles for sections */
.section-dark {
    padding: 1rem 0;
}

.section-content {
    background: var(--card-bg);

}

.section-text {
    color: var(--text-color);
    font-size: 1.1rem;
   
}

.tournament-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.tournament-item {
    margin-bottom: 1.5rem;
}

.tournament-item:first-child {
    margin-top: 1.5rem;
}

.footer-disclaimer {
    background: var(--light-bg);
    color: var(--text-color);
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.footer-info {
    color: var(--text-color);
}

.footer-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-text b {
    font-weight: 600;
}

.why-better-text {
    color: var(--text-color);
    font-size: 1.15rem;
    text-align: left;
}

.why-better-text b {
    font-weight: 600;
}

.payment-logo {
    height: 20px;
    vertical-align: middle;
}

.gamble-logo {
    height: 24px;
    vertical-align: middle;
}

.footer-logo {
    max-width: 400px;
}

.howto-number {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: transparent;
}

.howto-step {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

/* Force dark theme overrides */
body,  .card, .navbar, .footer-section, .page-header, .modal-content, .dropdown-menu, .accordion-item, .accordion-button, .section-content, .feature-card, .partner-card {
    background: var(--background) !important;
    color: var(--text-color) !important;
}

.card-body, .card-header, .card-footer, .modal-header, .modal-footer {
    background: var(--card-bg) !important;
    color: var(--text-color) !important;
}

input, textarea, select, .form-control {
    background: var(--light-bg) !important;
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

::-webkit-input-placeholder { color: var(--light-text) !important; }
::-moz-placeholder { color: var(--light-text) !important; }
:-ms-input-placeholder { color: var(--light-text) !important; }
::placeholder { color: var(--light-text) !important; }

/* Minimalist Underline Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0 1.5rem 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb-item {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: none;
    border-radius: 0;
    padding: 0 0.5rem;
    position: relative;
    transition: color 0.2s;
}
.breadcrumb-item a {
    color: var(--primary-color) !important;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.breadcrumb-item a:hover {
    border-bottom: 2px solid var(--primary-color);
    color: var(--secondary-color) !important;
}
.breadcrumb-item.active {
    color: var(--highlight-text) !important;
    background: var(--primary-color);
    border-radius: 1rem;
    padding: 0.2rem 1rem;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(255, 214, 0, 0.10);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color);
    content: "\203A"; /* Unicode for › chevron */
    margin: 0 0.5rem;
    font-weight: bold;
    font-size: 1.2em;
    vertical-align: middle;
}

/* Blog Card Modernization */
.card.h-100, .card.shadow-sm {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
  
    box-shadow: 0 4px 24px rgba(255, 214, 0, 0.08);
    
}
/*.card.h-100:hover, .card.shadow-sm:hover {*/
/*    transform: translateY(-8px) scale(1.03);*/
/*    box-shadow: 0 8px 32px rgba(255, 214, 0, 0.18);*/
/*    border-color: var(--secondary-color);*/
/*}*/
.card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}
.card-text, .text-muted_ {
    color: var(--light-text) !important;
}
.btn-primary {
    background: var(--primary-color);
    color: var(--highlight-text);
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 214, 0, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        padding: 18px;
}
.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--highlight-text);
    box-shadow: 0 4px 16px rgba(255, 214, 0, 0.18);
}

.custom-breadcrumb {
    font-size: 1.2rem;
    font-family: inherit;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}
.custom-breadcrumb .breadcrumb-item {
    color: #3a4a5b;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: " > ";
    color: #3a4a5b;
    font-weight: 400;
    padding: 0 8px;
    display: inline-block;
}
.custom-breadcrumb .breadcrumb-item:last-child {
    color: #5c6e7e;
    font-weight: 400;
    pointer-events: none;
    cursor: default;
}
.custom-breadcrumb .breadcrumb-item a {
    color: #3a4a5b;
    text-decoration: none;
}
.custom-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}


@media (max-width: 767.98px) {
    .hero-section,
    .carousel,
    .carousel-inner,
    .carousel-item {
      min-height: 150px !important;
      height: auto !important;
      max-height: none !important;
     
    }
    .carousel-item > .container,
    .carousel-item .row.align-items-center,
    .hero-row-mobile-fix {
      min-height: unset !important;
      height: auto !important;
      flex-direction: column !important;
      display: flex !important;
      align-items: stretch !important;
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
    .carousel-item .col-12 {
      text-align: start !important;
    }
    .display-4 {
      font-size: 1.3rem !important;
      margin-bottom: 0.5rem !important;
    }
    .lead {
      font-size: 0.95rem !important;
      margin-bottom: 0.5rem !important;
    }
    .btn-hero {
      font-size: 0.85rem !important;
      padding: 6px 12px !important;
      border-radius: 5px !important;
    }
  
    .section-title-highlight {
      display: inline-block;
      background: var(--primary-color);
      color: white;
      border-radius: 12px;
      padding: 0.5rem ;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 1px;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  .section-title {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 2rem;
      letter-spacing: 1px;
  }
  }

.hero-banner-bg {
  background-size: cover;
  background-position: center;
 
  background-repeat: no-repeat;

  
}
/*.hero-overlay {*/
/*  position: absolute;*/
/*  top: 0; left: 0; right: 0; bottom: 0;*/
/*  background: rgba(0, 0, 0, 0.5);*/
/*}*/
.section-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 967px) {
  .section-img {
    max-height: 250px;
  }
}


.howto-step-number {
  width: 80px;
  height: 80px;
}
.section-content-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#p {
    margin-bottom: 0px;
}



 @media (max-width: 991.98px) {
      .navbar-toggler {
        border-color: rgba(255,255,255,0.5) !important;
      }
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
      }
    }
    
    
/* Hide default Bootstrap icon */
.accordion-button::after {
    display: none !important;
}

/* Custom icon style */
.accordion-button .toggle-icon {
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.accordion-button[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}
    
   
    