:root {
--color-primary: #b9d6f2;
  --color-deep: #061a40;
    --color-bright: #0353a4;
  --color-medium: #006daa;
--color-dark: #003559;
  
  --primary-var: #aac8e4;
    --deep-var: #0a1e45;
  --bright-var: #0457ab;
--medium-var: #0674b3;
  --dark-var: #003a5e;
}

* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: #ffffff;
  color: var(--color-deep);
   line-height: 1.6;
   overflow-x     : hidden;
   padding-top    :       80px;
}

.top-navigation-bar  {
    position: fixed;
    top: 0;
  left: 0;
   width: 100%;
  background: var(--color-deep);
    padding: 15px 0;
   z-index    :        1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.nav-container {
     max-width: 1400px;
       margin: 0 auto;
      padding: 0 25px;
    display: flex;
  justify-content: center;
   align-items: center;
}

.brand-logo-area {
  flex-shrink: 0;
}

.logo-img {
	 height: 50px;
    width: auto;
    display: block;
}

.set-bg   {
	background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
 margin: 0 -15px;
}

.col-xl-6, .col-lg-8, .col-lg-6, .col-lg-4, .col-lg-3, .col-lg-2,
.col-md-6, .col-md-4, .col-md-12 {
 -webkit-flex: 0 0 100%;
    padding: 0 15px;
  flex   :      0 0 100%;
  max-width: 100%;
}@media (min-width: 768px) {
  .col-md-4 {
        flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-md-6 {
      flex: 0 0 50%;
        max-width: 50%;
    }
  .col-md-12 {
        flex: 0 0 100%;
      max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
      flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
  .col-lg-3 {
        flex: 0 0 25%;
      max-width: 25%;
    }
    .col-lg-4 {
      flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
  .col-lg-6 {
        flex: 0 0 50%;
      max-width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl-6 {
      flex: 0 0 50%;
        max-width: 50%;
    }
}.align-items-center  
  {
    align-items: center;
}

.justify-content-between {
   justify-content: space-between;
}

.justify-content-center {
   justify-content: center;
}

.justify-content-md-end {
         justify-content   :     flex-end;

}@media (max-width: 767px) {
  .justify-content-md-end {
        justify-content: center;
    }
}.flex {
  display: flex;
}

.site-btn {
    display: inline-block;
  color: #ffffff;
  font-size: 15px;
               font-weight: 700;
  min-width    : 190px;
	 padding: 17px 30px;
  text-align: center;
  background: var(--color-medium);
    text-transform: uppercase;
  border: 2px solid transparent;
   border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}  

.site-btn:hover {
  background: transparent;
  border: 2px solid var(--color-medium);
  color: var(--color-medium);
}

.sb-white {
  background: #ffffff;
  color: var(--color-deep);
   border: 2px solid #ffffff;
}

.sb-white:hover {
    background: transparent;
   color: #ffffff;
    border: 2px solid #ffffff;


}

.hero-section {
    width: 100%;
      position: relative;
}

.hero-slider {
  position: relative;
}

.hs-item {
    height: 40vh;
   display: flex;
	 align-items: center;
  background: linear-gradient(135deg, var(--color-medium) 0%, var(--color-dark) 100%);
   position: relative;


}



.hero-overlay {
	position: absolute;
   top: 0;
	left: 0;
   width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
    z-index    :      1;
}

.hsi-content {
  z-index: 2;

   width: 100%;

  position: relative; 

}

.hsi-content h2 {
  font-size: 48px;
   color:  #ffffff;
   font-weight: 700;
   margin-bottom: 22px;
    line-height: 1.2;
}

.hsi-content p {

	    color: #ffffff;
   margin-bottom   : 32px;
    font-size: 16px;
    line-height: 1.6;
   opacity: 0.95;


}

.slide-num-holder     {
      position: absolute;
	right: 145px;
    top: 50%;
  transform: translateY(-50%);
    z-index: 1;
     }

.game-features-zone {
  padding: 85px 0;
  background: var(--color-primary);
}

.feat-card {
  background: #ffffff;
  padding: 40px 30px;
   text-align: center;
   border-radius  :   8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
   margin-bottom :       30px;
}

.feat-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

}

.feat-icon {
	font-size: 56px;
  color: var(--color-bright);
    margin-bottom: 22px;
}

.feat-icon i {
    font-size   :    56px;
}

.feat-card h3 {

  font-size: 24px;
  color: var(--color-deep);
    margin-bottom     : 18px;
    font-weight: 600;}

.feat-card p {
  line-height: 1.7;
    font-size: 15px;
          color: #555;
}



.about-gaming-zone {
   padding: 90px 0;
  background: #ffffff;
} 

.about-img-holder{
    margin-bottom: 30px;
}

.about-img-holder img {
    width   :   100%;
   height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text-content h2 {
   font-size: 42px;
     color: var(--color-deep);
      margin-bottom: 25px;
       font-weight: 700;
}

.about-text-content p {
	font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.responsibility-badge {
  display: inline-flex;
         align-items: center;
   gap: 12px;
  background: var(--color-bright);
      padding: 14px 25px;
    border-radius: 6px;
   margin-top: 25px;
}

.responsibility-badge i {
    color: #ffffff;
  font-size    :22px;
}

.responsibility-badge span     {
  color: #ffffff;
  font-weight: 600;
	 font-size: 15px;
}

.sit-footer {
  padding-top: 0;
   border-top: none;
}

.footer-top-section {
  background: var(--color-deep);
    padding: 70px 0 40px;
}

.footer-widget {
  margin-bottom    :      30px;
}

.footer-widget h3 {
  color: var(--color-primary);
	font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-widget p
	{


  color: var(--primary-var);
    font-size: 15px;
   line-height: 1.7;
  margin-bottom:     20px;


}

.contact-info-list {
   display: flex;
   flex-direction: column;
    gap: 15px;
}


.contact-info-item {
	display: flex;
    align-items: flex-start;
    gap  :      12px;
  color: var(--primary-var);
   font-size: 15px;
}

.contact-info-item i {
  color: var(--color-bright);
  font-size: 18px;
   margin-top: 3px;
}

.contact-info-item a {
  color: var(--primary-var);
	 text-decoration: none;
   transition  :  color 0.3s;
}
	/* Framework override */


/* Custom modifications */
	/* Colors and backgrounds */


.contact-info-item a:hover {
  color: var(--color-bright);
}  

.footer-links {
    list-style: none;
   padding: 0;
  margin: 0;


}

/* Hack for old browsers */

.footer-links li {
   margin-bottom: 12px;
}

.footer-links li a {
  color: var(--primary-var);
   text-decoration: none;
    font-size: 15px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--color-bright);
}

.age-verify-box {
  background: rgba(3, 83, 164, 0.2);
    padding: 20px;
  border-radius: 6px;
  border-left: 4px solid var(--color-bright);


}

.age-verify-box i {
     color: var(--color-bright);
   font-size: 24px;
    margin-bottom: 10px;
  display: block;
     }

.age-verify-box p {
    margin: 0;
   font-size: 14px;
  color: var(--color-primary);
    font-weight: 500;
}

.responsible-gaming-extended {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(185, 214, 242, 0.2);
   display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.responsibility-text h4 {
  color: var(--color-primary);
  font-size :20px;
   font-weight :    600;
  margin-bottom: 18px;


}

.responsibility-text p {
  color: var(--primary-var);
  font-size: 14px;
    line-height: 1.8;
   margin-bottom: 15px;
}

.regulator-partners h4 {
  color: var(--color-primary);
   font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}

.regulator-logos {
   display: flex;
   flex-wrap: wrap;
    gap: 25px;
 align-items: center;
}

.regulator-link {
  display: block;
  background: rgba(255, 255, 255, 0.1);
    padding  :  15px 20px;
  border-radius: 6px;
                    transition: all 0.3s;
}

.regulator-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}


.regulator-link img  
  {
    height: 45px;
	width: auto;
  display: block;
  filter: brightness(0) invert(1);
   opacity: 0.85;
}

.regulator-link:hover img {
    opacity: 1;
}

.footer-bar {
   padding: 25px 0;
  background: var(--deep-var);


}

.outer-container {
    max-width  :        1400px;
   margin   :0 auto;
  padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

.footer-copyright p {
   margin: 0;
  font-size   : 14px;
  color: var(--primary-var);
    text-align: center;
}

.footer-social {
                    margin-top: 20px;
}

.footer-social ul {
   padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social li {
    margin: 0 15px;
}

.footer-social li a {
	display: flex;
      justify-content: center;
        align-items: center;
    width   :       16px;
   height: 16px;
  font-size: 16px;
   color: #74797e;
}

.footer-social li a:hover {
    color: #fff;
}
@media screen and (min-width: 768px) {
    .footer-copyright p {
        text-align: left;
    }

    .footer-social {
        margin-top: 0;
    }

    .footer-social li {
        margin: 0 0 0 30px;
    }
}

@media (max-width: 991px) {
  .hsi-content h2 {
        font-size: 38px;
    }
    
  .responsible-gaming-extended {
        grid-template-columns: 1fr;
      gap: 35px;
    }
}

@media (max-width: 767px) {
    .logo-img {
      height: 40px;
    }
    
  .hsi-content h2 {
      font-size: 32px;
    }
    
  .hsi-content p {
        font-size: 15px;
    }
    
    .site-btn {
      min-width: 160px;
        padding: 14px 25px;
      font-size: 14px;
    }
    
  .feat-card {
        padding: 30px 20px;
    }
    
    .about-text-content h2 {
      font-size: 32px;
    }
    
  .regulator-logos {
        gap: 15px;
    }
    
  .regulator-link {
        padding: 12px 15px;
    }
    
  .regulator-link img {
        height: 35px;
    }
}

@media (max-width: 480px) {
  .hsi-content h2 {
        font-size: 26px;
    }
    
  .hs-item {
        height: 40vh;
    }
}.creative_mind_area {
   padding: 90px 0;
  background: #ffffff;
}

.game-layout-wrap {
    max-width: 1400px;
	margin: 0 auto;
  display    : flex;
  flex-direction: column;
    gap: 0;
} 

.game-text-zone {
      padding: 40px 25px;
    order: 1;


}

.game-visual-zone {
   width: 100%;
       order: 2;
	overflow:     hidden;
}

.game-visual-zone img {
   width: 100%;
  height: auto;
 display: block;
    object-fit: cover;
}

.section_title h3 {
   font-size: 32px;
    font-weight: 600;
  color: var(--color-deep);
	 margin-bottom: 20px;
   line-height     :     1.3;
}

.section_title p {
  font-size: 15px; 
	    line-height: 1.7; 
	  color: #596672; 
		 margin-bottom: 30px;
}

.boxed-btn3-line {


  color: var(--color-deep);
    display: inline-block;
    padding: 14px 40px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--color-deep);
   text-align: center;
         text-transform: capitalize;
	transition: 0.3s;
	cursor : pointer;
    letter-spacing: 1px;
   text-decoration: none;
  border-radius: 4px; 
	


}

.boxed-btn3-line:hover {
  background: var(--color-bright);
		color: #fff;
  border-color: var(--color-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 83, 164, 0.25);
}@media (min-width: 768px) {
  .creative_mind_area {
        padding: 100px 0;
    }
    
  .game-text-zone {
        padding: 50px 40px;
    }
    
    .section_title h3 {
      font-size: 40px;
        margin-bottom: 24px;
    }
    
  .section_title p {
        font-size: 16px;
      margin-bottom: 35px;
    }
    
  .boxed-btn3-line {
        padding: 15px 45px;
    }
}

@media (min-width: 992px) {
    .game-layout-wrap {
      flex-direction: row;
        align-items: center;
      gap: 0;
    }
    
  .game-text-zone {
        width: 45%;
      flex-shrink: 0;
        padding: 60px 70px 60px 60px;
      order: 1;
    }
    
  .game-visual-zone {
        width: 55%;
      flex-shrink: 0;
        order: 2;
    }
    
    .section_title h3 {
      font-size: 46px;
    }
}

@media (min-width: 1200px) {
  .game-text-zone {
        width: 42%;
      padding: 70px 90px 70px 80px;
    }
    
  .game-visual-zone {
        width: 58%;
    }
    
    .section_title h3 {
      font-size: 48px;
    }
}

@media (max-width: 480px) {
    .creative_mind_area {
      padding: 60px 0;
    }
    
  .game-text-zone {
        padding: 30px 20px;
    }
    
  .section_title h3 {
        font-size: 26px;
    }
    
    .section_title p {
      font-size: 14px;
        line-height: 1.65;
    }
    
  .boxed-btn3-line {
        padding: 12px 30px;
      font-size: 14px;
    }
}.faq-zone-display {
  padding: 95px 0;
  background: var(--color-primary);
}

.faq-inner-wrap {
     max-width: 1100px;
	    margin: 0 auto;
	  padding: 0 25px;
}

.faq-heading-part 
 {
  text-align: center;
   margin-bottom: 55px;
}

.faq-heading-part h2 {
   font-size: 42px;
    font-weight    :  700;
  color: var(--color-deep);
    margin-bottom: 18px;
   line-height: 1.2;
}

.faq-heading-part p {
   font-size: 16px;
    line-height: 1.7;
    color: #596672;
   max-width: 750px;
    margin:        0 auto;
}

.questions-list-holder {

    display: flex;
   gap: 18px;
    flex-direction: column;}

.question-item-unit {
	 background: #ffffff;
   border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    overflow: hidden;
  transition    :        all 0.3s ease;
}

.question-item-unit:hover {
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.toggle-input {
    display     :none;
}

.question-label-text {
        align-items: center;
  transition  : all 0.3s;
      cursor: pointer;
  justify-content: space-between;
  display: flex;
   user-select: none;
    padding: 22px 28px;
}

.question-text-content {
  font-size: 18px;
    font-weight: 600;
  color: var(--color-deep);
   flex: 1;
          padding-right: 20px;
}

.toggle-icon-mark {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
    width: 30px;
  height: 30px;
  display: flex;
   align-items: center;
   justify-content: center;
}

.answer-content-box {
   max-height: 0;
   overflow: hidden;
    transition   :      max-height 0.4s ease, padding 0.4s ease;
   padding: 0 28px;
}

.answer-content-box p {
  font-size: 15px;
   line-height: 1.75;
  color: #596672;
    margin: 0;
}

.toggle-input:checked + .question-label-text {

  background: var(--primary-var);


}

.toggle-input:checked + .question-label-text .toggle-icon-mark {

  transform: rotate(45deg);


}

.toggle-input:checked ~ .answer-content-box {
   max-height: 800px;
   padding: 0 28px 25px 28px;
}@media (min-width: 768px) {
    .faq-heading-part h2 {
      font-size: 48px;
        margin-bottom: 20px;
    }
    
  .faq-heading-part p {
        font-size: 17px;
    }
    
  .question-text-content {
        font-size: 19px;
    }
    
    .answer-content-box p {
      font-size: 16px;
    }
}@media (max-width: 767px) {
  .faq-zone-display {
        padding: 70px 0;
    }
    
  .faq-heading-part {
        margin-bottom: 40px;
    }
    
    .faq-heading-part h2 {
      font-size: 32px;
    }
    
  .faq-heading-part p {
        font-size: 15px;
    }
    
  .question-label-text {
        padding: 18px 20px;
    }
    
    .question-text-content {
      font-size: 16px;
        padding-right: 15px;
    }
    
  .toggle-icon-mark {
        font-size: 24px;
      width: 26px;
        height: 26px;
    }
    
  .answer-content-box {
        padding: 0 20px;
    }
    
    .toggle-input:checked ~ .answer-content-box {
      padding: 0 20px 20px 20px;
    }
    
  .answer-content-box p {
        font-size: 14px;
      line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .faq-inner-wrap {
      padding: 0 15px;
    }
    
  .faq-heading-part h2 {
        font-size: 26px;
    }
    
    .questions-list-holder {
      gap: 14px;
    }
    
  .question-label-text {
        padding: 16px 18px;
    }
    
    .question-text-content {
      font-size: 15px;
    }
}.player-voices-display {
    padding: 100px 0;
  background: #ffffff;
}

.testimonials-inner-hold {
   max-width: 1300px;
  margin     :   0 auto;
  padding   : 0 25px;
	
}

.testimonials-top-intro {
  text-align: center;
  margin-bottom: 60px;
    max-width: 850px;
  margin-left: auto;
  margin-right: auto;

}

.testimonials-top-intro h2 {
    font-size: 44px;
    font-weight: 700;
  color: var(--color-deep);
	 margin-bottom: 20px;
  line-height: 1.2;
}

.testimonials-top-intro p {
	 font-size: 16px;
   line-height     :  1.7;
    color: #596672;
}

.testimonial-cards-grid {
  display :    grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single-testimonial-card {
  background: var(--color-primary);
  border-radius: 10px;
  padding:    35px 30px;
   transition: all 0.3s ease;
    border: 2px solid transparent;
}

.single-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 26, 64, 0.15);
  border-color: var(--color-bright);
}

.testimonial-text-body {
    margin-bottom  : 25px;
}

.testimonial-text-body p {
   font-size: 15px;
  line-height: 1.75;
  color: var(--color-deep);
  margin: 0;
    font-style: italic;
}

.reviewer-identity {
   display: flex;
	   flex-direction: column;
	   gap: 5px;
	    padding-top: 20px;
	  border-top: 2px solid var(--color-medium);
}

.reviewer-name-text {
    font-size: 17px;
	font-weight: 600;
  color: var(--color-deep);
}

.reviewer-location-text {
    font-size: 14px;
    color: #596672;
   font-weight  :     400;
}@media (min-width: 1200px) {
  .testimonials-top-intro h2 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .testimonial-cards-grid {
      grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
  .player-voices-display {
        padding: 75px 0;
    }
    
  .testimonials-top-intro {
        margin-bottom: 45px;
    }
    
    .testimonials-top-intro h2 {
      font-size: 36px;
    }
    
  .testimonials-top-intro p {
        font-size: 15px;
    }
    
  .testimonial-cards-grid {
        grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .single-testimonial-card {
      padding: 28px 25px;
    }
    
  .testimonial-text-body p {
        font-size: 14px;
      line-height: 1.65;
    }
    
  .reviewer-name-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .player-voices-display {
      padding: 60px 0;
    }
    
  .testimonials-inner-hold {
        padding: 0 15px;
    }
    
    .testimonials-top-intro h2 {
      font-size: 28px;
        margin-bottom: 16px;
    }
    
  .testimonials-top-intro p {
        font-size: 14px;
    }
    
  .single-testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-text-body {
      margin-bottom: 20px;
    }
    
  .reviewer-identity {
        padding-top: 16px;
    }
}.age-verify-overlay {
	 position: fixed;
    top: 0;
	left: 0;
   width:      100%;
   height: 100%;
  background: rgba(0, 0, 0, 0.85);
   z-index: 9999;
   display: none;
   justify-content: center;
  align-items: center;


}

.age-verify-box    {
   background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
    max-width: 450px;
    width  :90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);


}

.age-verify-content h2 {
  font-size: 38px;
	font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 15px;
}

.age-verify-content p {
      font-size: 16px;
   color: #596672;
  margin-bottom: 35px;
  line-height    :       1.6;
}

.age-confirm-btn {
     background: var(--color-bright);
  color: #ffffff;
	 padding: 16px 60px;
    font-size   : 18px;
  font-weight: 600;
    border: none;
  border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing :      1px;}

.age-confirm-btn:hover {
  background: var(--color-medium);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 170, 0.3);
}@media (max-width: 480px) {
    .age-verify-box {
      padding: 40px 30px;
    }
    
  .age-verify-content h2 {
        font-size: 32px;
    }
    
    .age-verify-content p {
      font-size: 15px;
        margin-bottom: 30px;
    }
    
  .age-confirm-btn {
        padding: 14px 50px;
      font-size: 16px;
    }
}.legal-document-display {
   padding: 95px 0;
  background: #ffffff;
}

.legal-text-hold {
    max-width: 920px;
    margin: 0 auto;
   padding: 0 25px;
}

.legal-text-hold h1 {
    font-size: 44px;
    font-weight: 700;
  color: var(--color-deep);
   margin-bottom: 30px;
   line-height: 1.2;
}

.legal-text-hold h2 {
   font-size: 32px;
    font-weight: 600;
  color: var(--color-deep);
   margin-top: 45px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.legal-text-hold h3	{


	 font-size: 24px;
  font-weight: 600;
  color: var(--color-deep);
   margin-top  :    35px;
    margin-bottom   :16px;
    line-height: 1.3;
	}

.legal-text-hold p {
  font-size: 16px;
  line-height: 1.8;
  color: #596672;
  margin-bottom: 20px;
}@media (min-width: 768px) {
  .legal-text-hold h1 {
        font-size: 48px;
      margin-bottom: 35px;
    }
    
    .legal-text-hold h2 {
      font-size: 36px;
        margin-top: 50px;
    }
    
  .legal-text-hold p {
        font-size: 17px;
      line-height: 1.85;
    }
}

@media (max-width: 767px) {
    .legal-document-display {
      padding: 70px 0;
    }
    
  .legal-text-hold {
        padding: 0 20px;
    }
    
    .legal-text-hold h1 {
      font-size: 34px;
        margin-bottom: 25px;
    }
    
  .legal-text-hold h2 {
        font-size: 26px;
      margin-top: 35px;
        margin-bottom: 16px;
    }
    
    .legal-text-hold h3 {
      font-size: 20px;
        margin-top: 28px;
      margin-bottom: 14px;
    }
    
  .legal-text-hold p {
        font-size: 15px;
      line-height: 1.7;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
  .legal-document-display {
        padding: 60px 0;
    }
    
    .legal-text-hold {
      padding: 0 15px;
    }
    
  .legal-text-hold h1 {
        font-size: 28px;
    }
    
    .legal-text-hold h2 {
      font-size: 22px;
        margin-top: 30px;
    }
    
  .legal-text-hold h3 {
        font-size: 18px;
      margin-top: 24px;
    }
}.contact-page-display {
    padding: 95px 0;
  background: var(--color-primary);
}

.contact-inner-hold {
  max-width: 1200px;
    margin: 0 auto;
    padding  :      0 25px;
    display: grid;
   grid-template-columns: 1fr 1fr;
	 gap: 60px;
   align-items: start;
}

.contact-info-side h1 {
   font-size: 44px;
    font-weight: 700;
  color: var(--color-deep);
   margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-side > p {
   font-size: 16px;
	        line-height: 1.7;
	    color: #596672;
	    margin-bottom: 45px;

}

.contact-details-list {
    display: flex;
   flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
   display    :flex;
  gap: 20px;
  align-items     :    flex-start;
}

.contact-detail-item i {
    font-size: 26px;
  color: var(--color-bright);
    margin-top: 4px;
   flex-shrink: 0; 
	
}

.detail-text h3 {
    font-size: 18px;
  font-weight: 600;
  color: var(--color-deep);
   margin-bottom: 8px;
}

.detail-text a,
.detail-text span {


    font-size: 16px;
    color: #596672;
   text-decoration: none;
	transition: color 0.3s;
     }

.detail-text a:hover {

	  color: var(--color-bright);
     }

.contact-form-side {
    background: #ffffff;
  padding: 45px 40px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
	
}

.form-input-group {
    margin-bottom: 25px; 
	
}

.form-input-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-deep);
  margin-bottom: 10px;
}

.form-input-group input,
.form-input-group textarea {
  width: 100%;
    padding: 14px 16px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
          background: #ffffff;
  color: var(--color-deep);
   transition:    border-color 0.3s;
}

.form-input-group input:focus,
.form-input-group textarea:focus {
  outline: none;
  border-color: var(--color-bright);
}

.form-input-group textarea {
    resize: vertical;
  min-height: 140px;
}

.form-submit-btn {
  background: var(--color-bright);
  color:#ffffff;
  padding: 16px 50px;
  font-size: 16px;
    font-weight: 600;
    border: none;
   border-radius: 6px;
     cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing :    1px;
    width  :   100%;
}

.form-submit-btn:hover {
  background: var(--color-medium);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 170, 0.3); 
	
}

.thankyou-popup-overlay


{
	    position: fixed;
	 top: 0;
   left: 0;
  width: 100%;
   height: 100%;
  background: rgba(0, 0, 0, 0.8);
   z-index: 9999;
    display: none;
   justify-content :center;
   align-items: center;}

.thankyou-popup-box 
 {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  max-width: 450px;
    width: 90%;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.thankyou-content i {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
   display: block;
}

.thankyou-content h2 {
   font-size: 36px;
  font-weight: 700;
  color: var(--color-deep);
	 margin-bottom: 15px;
}

.thankyou-content p {
  font-size: 16px;
  color: #596672;
   margin-bottom: 30px;
  line-height: 1.6;
}

.close-popup-btn {
  background: var(--color-bright);
  color: #ffffff;
   padding: 14px 45px;
  font-size: 16px;
   font-weight: 600;
    border     :     none;
  border-radius: 6px;
  cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
  letter-spacing :  1px;
}

.close-popup-btn:hover {
  background: var(--color-medium);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 170, 0.3);
}@media (max-width: 991px) {
  .contact-inner-hold {
        grid-template-columns: 1fr;
      gap: 45px;
    }
}

@media (max-width: 767px) {
    .contact-page-display {
      padding: 70px 0;
    }
    
  .contact-inner-hold {
        padding: 0 20px;
    }
    
    .contact-info-side h1 {
      font-size: 36px;
        margin-bottom: 18px;
    }
    
  .contact-info-side > p {
        font-size: 15px;
      margin-bottom: 35px;
    }
    
  .contact-details-list {
        gap: 25px;
    }
    
    .contact-detail-item i {
      font-size: 22px;
    }
    
  .detail-text h3 {
        font-size: 16px;
    }
    
    .detail-text a,
  .detail-text span {
        font-size: 15px;
    }
    
  .contact-form-side {
        padding: 35px 25px;
    }
    
    .thankyou-content h2 {
      font-size: 30px;
    }
    
  .thankyou-content i {
        font-size: 54px;
    }
}

@media (max-width: 480px) {
    .contact-page-display {
      padding: 60px 0;
    }
    
  .contact-inner-hold {
        padding: 0 15px;
    }
    
    .contact-info-side h1 {
      font-size: 28px;
    }
    
  .contact-form-side {
        padding: 30px 20px;
    }
    
    .form-input-group {
      margin-bottom: 20px;
    }
    
  .form-submit-btn {
        padding: 14px 40px;
      font-size: 15px;
    }
    
  .thankyou-popup-box {
        padding: 40px 30px;
    }
    
    .thankyou-content h2 {
      font-size: 26px;
    }
    
  .thankyou-content p {
        font-size: 15px;
    }
}.game-play-zone {
    padding: 90px 0;
  background: var(--color-primary);
  min-height: 100vh;
}

.game-inner-wrap {
         max-width   :   900px;
          margin: 0 auto;
    padding: 0 25px;
}

.player-stats-display {
   background: #ffffff;
	padding    :       25px 35px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   display: flex;
  justify-content: space-around;
   margin-bottom: 35px;
}

.stat-item {
  display: flex;
    flex-direction: column;
    align-items: center;
  gap: 8px;


}

.stat-label {
   font-size: 14px;
   color: #596672;
	 font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
			font-size    :    32px;
  font-weight: 700;
  color: var(--color-bright);
}

.slot-machine-display {
  background: var(--color-deep);
  padding: 30px;
     border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-bottom: 30px; 

}

.slot-grid {

   display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
    gap: 12px;
  background: rgba(255, 255, 255, 0.1);
                    padding: 20px;
  border-radius   :     8px;
	}

.slot-cell {
	 background: #ffffff;
  border-radius: 8px;
      padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
   aspect-ratio: 1;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.slot-cell img {
  width: 100%;
   height    :100%;
    object-fit: contain;
}

.game-controls-bar {

   display: flex;
  justify-content: center;
  gap   :15px;
    margin-bottom: 30px;
   flex-wrap: wrap;


}

.bet-control-btn 
 {
  background: var(--color-medium);

	  color: #ffffff;

	   padding  :       14px 30px;

	  font-size: 16px;

	  font-weight: 600;

	    border :     none;

	   border-radius: 6px;

	   cursor: pointer;

	   transition: all 0.3s ease;

	   text-transform: uppercase;
}

.bet-control-btn:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
}

.play-game-btn {
  background: var(--color-bright);
  color: #ffffff;
  padding: 16px 60px;
  font-size: 18px;
                    font-weight    : 700;
    border    : none;
   border-radius     : 6px;
	cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(3, 83, 164, 0.3);
}

.play-game-btn:hover {
  background: var(--bright-var);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(3, 83, 164, 0.4);
}

.play-game-btn:disabled {
      background: #999;
    cursor: not-allowed;
   transform: none;
}

.result-message-box {
          background: #ffffff;
  padding: 20px 25px;
  border-radius: 8px;
  text-align: center;
    font-size: 18px;
         font-weight :     600;
    margin-bottom: 40px;
    display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.win-message {
    background: #4caf50;
  color: #ffffff;
}

.lose-message   {
    background: #f44336;
	color: #ffffff;
}

.game-rules-display {


  background: #ffffff;
  padding: 40px 35px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);}

.game-rules-display h2 {
  font-size: 32px;
   font-weight: 700;
  color: var(--color-deep);
    margin-bottom: 25px;
}

.game-rules-display h3 {
    font-size: 20px;
   font-weight: 600;
  color: var(--color-deep);
   margin-top :  25px;
  margin-bottom: 12px;
}

.game-rules-display p {


    font-size  :    15px;
  line-height: 1.7;
  color: #596672;
               margin-bottom: 15px;


}@media (max-width: 767px) {
  .game-play-zone {
        padding: 70px 0;
    }
    
  .game-inner-wrap {
        padding: 0 15px;
    }
    
    .player-stats-display {
      padding: 20px 25px;
        margin-bottom: 25px;
    }
    
  .stat-value {
        font-size: 28px;
    }
    
    .slot-machine-display {
      padding: 20px;
    }
    
  .slot-grid {
        gap: 8px;
      padding: 15px;
    }
    
    .slot-cell {
      padding: 6px;
    }
    
  .game-controls-bar {
        gap: 10px;
    }
    
    .bet-control-btn {
      padding: 12px 24px;
        font-size: 14px;
    }
    
  .play-game-btn {
        padding: 14px 50px;
      font-size: 16px;
    }
    
  .result-message-box {
        font-size: 16px;
      padding: 18px 20px;
    }
    
    .game-rules-display {
      padding: 30px 25px;
    }
    
  .game-rules-display h2 {
        font-size: 26px;
    }
    
    .game-rules-display h3 {
      font-size: 18px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .player-stats-display {
      flex-direction: column;
        gap: 15px;
    }
    
  .stat-value {
        font-size: 24px;
    }
    
    .slot-grid {
      gap: 6px;
        padding: 12px;
    }
    
  .slot-cell {
        padding: 5px;
    }
    
    .game-controls-bar {
      flex-direction: column;
    }
    
  .bet-control-btn,
  .play-game-btn {
        width: 100%;
    }
    
    .game-rules-display {
      padding: 25px 20px;
    }
    
  .game-rules-display h2 {
        font-size: 24px;
    }
}


/* ===== HERO SECTION ADAPTIVE IMPROVEMENTS ===== */

/* Fix background repeat - already set but adding backup */
.hs-item {
    background-repeat: no-repeat !important;
    min-height: 400px;
}

/* Responsive hero heights */
@media (min-width: 1200px) {
    .hs-item {
        height: 50vh;
        min-height: 500px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hs-item {
        height: 45vh;
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .hs-item {
        height: auto;
        min-height: 550px;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hs-item {
        min-height: 600px;
        padding: 30px 0;
    }
}

/* Hero content responsive typography */
@media (max-width: 991px) {
    .hsi-content h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }
    
    .hsi-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .hsi-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .hsi-content p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hsi-content h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .hsi-content p {
        font-size: 13px;
        margin-bottom: 22px;
    }
}

/* Responsive button styling */
@media (max-width: 767px) {
    .site-btn {
        min-width: 160px;
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .site-btn {
        min-width: 140px;
        padding: 14px 22px;
        font-size: 13px;
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Hide slide number on smaller screens */
@media (max-width: 991px) {
    .slide-num-holder {
        display: none;
    }
}

/* ===== CREATIVE MIND AREA (Game Section) ADAPTIVE ===== */

@media (max-width: 991px) {
    .creative_mind_area {
        padding: 70px 0;
    }
    
    .game-layout-wrap {
        flex-direction: column;
    }
    
    .game-text-zone,
    .game-visual-zone {
        width: 100%;
        max-width: 100%;
    }
    
    .game-text-zone {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .creative_mind_area {
        padding: 60px 0;
    }
    
    .section_title h3 {
        font-size: 28px;
    }
    
    .section_title p {
        font-size: 15px;
    }
    
    .boxed-btn3-line {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section_title h3 {
        font-size: 24px;
    }
    
    .boxed-btn3-line {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== RESPONSIVE CONTAINER PADDING ===== */

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .top-navigation-bar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ===== ABOUT SECTION RESPONSIVE ===== */

@media (max-width: 991px) {
    .about-gaming-zone {
        padding: 70px 0;
    }
    
    .about-text-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-gaming-zone {
        padding: 60px 0;
    }
    
    .about-text-content h2 {
        font-size: 30px;
    }
    
    .about-text-content p {
        font-size: 15px;
    }
    
    .responsibility-badge {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-text-content h2 {
        font-size: 26px;
    }
    
    .responsibility-badge {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}


/* ===== HERO BACKGROUND FULL COVERAGE FIX ===== */

.hs-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 500px;
}

/* Alternative: if cover doesn't work well, use 100% 100% to stretch */
.hs-item.stretch-bg {
    background-size: 100% 100%;
}

/* OR if you want to ensure full coverage without stretching */
.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

/* Ensure hero section takes full width */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

/* Responsive heights to ensure image fills */
@media (min-width: 1200px) {
    .hs-item {
        min-height: 600px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hs-item {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .hs-item {
        min-height: 550px;
    }
}

@media (max-width: 480px) {
    .hs-item {
        min-height: 600px;
    }
}