:root {
  --primary-blue: #63ADF2;
  --dark-slate: #545E75;
    --navy-deep: #0079ff;
  --white-base: #ffffff;
    --black-base: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--white-base);
  color: var(--black-base);
    line-height: 1.6;
}

.top-navigation-bar {
  background: var(--navy-deep);
    padding: 18px 0;
   position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-grid-layout {
  max-width: 1240px;
       margin: 0 auto;
  padding: 0 25px;
   display: flex;
    justify-content: center;
  align-items: center;
}

.brand-logo-block {
   text-align: center;
}

.main-logo-image {
   height: 45px;
  width: auto;
  display: block;
}

.hero-banner-display     {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../wfp/wonder-bg.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
   padding: 60px 20px;
  min-height: 50vh;
   display: flex;
  align-items: center;
}

.hero-grid-split {
  max-width: 1240px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  color: var(--white-base);
}

.headline-primary-txt {
    font-size: 52px;
	font-weight: 700;
    line-height: 1.2;
  margin-bottom: 0;
  color: var(--white-base);
}

.hero-cards-display {
    height: 400px;
   position: relative;
}

.floating-badge-one,
.floating-badge-two,
.floating-badge-three		{
  position: absolute;
  background: var(--white-base);
    padding: 25px;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
     display: flex;
   align-items: center;
  gap: 15px;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge-one {
  top: 20px;
  left: 30px;
                    animation-delay: 0s;
}

.floating-badge-two {
    top: 150px;
   right: 40px;
   animation-delay: 1s;
}

.floating-badge-three {
        bottom: 30px;
     left: 60px;
    animation-delay: 2s;
}@keyframes floatBadge {
    0%, 100% {
      transform: translateY(0px);
    }
  50% {
      transform: translateY(-15px);
    }
}.badge-icon-visual {
  font-size :42px;
  color: var(--primary-blue);
}

.badge-text-data h3 {
   font-size    :        19px;
   font-weight: 600;
  color: var(--navy-deep);
    margin-bottom: 4px;
}

.badge-text-data p {
    font-size: 14px;
  color: var(--dark-slate);
}

.bottom-info-area {
  background: var(--navy-deep);
  color: var(--white-base);
  padding: 60px 20px 20px;
}

.footer-grid-columns {
   max-width: 1240px;
   margin: 0 auto;

}

.footer-multicolumn-layout {
  display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
   margin-bottom :     40px;
}

.brand-info-column {
   padding-right: 20px;
}

.brand-footer-identity {
    margin-bottom: 18px;
}

.footer-logo-img {

	  height: 42px;
  width :    auto;
    display: block;
     }

.brand-statement-text {

	   font-size: 15px;
  line-height    :1.6;
  margin-bottom: 22px;
   opacity: 0.9;

}

.contact-details-block .email-display-row {

	    display: block;
  font-size: 15px;
     }

.email-display-row a

{
  color: var(--white-base);
  text-decoration: none;
  transition: color 0.3s;
}

.email-display-row a:hover {
  color: var(--primary-blue);
}

.column-title-heading {
  font-size: 18px;
    font-weight: 600;
  margin-bottom: 20px;
  color: var(--white-base);
}  

.links-vertical-list	{
    list-style: none;
}

.links-vertical-list li
	{
   margin-bottom: 12px;
}

.links-vertical-list a {
  color: var(--white-base);
   text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
  transition: all 0.3s;
}

.links-vertical-list a:hover {
  opacity :     1;
  color: var(--primary-blue);
  padding-left: 5px;
}

.age-limit-badge {
  display: flex;
    align-items   : center;
    gap: 12px;
   margin-bottom: 15px;
  background: rgba(255,255,255,0.1);
   padding: 15px;
               border-radius: 8px;
}

.age-warning-icon 
 {
    font-size: 36px;
  color: var(--primary-blue);
}

.age-restriction-label {
  font-size: 20px;
    font-weight: 700;
}

.responsible-play-message {
     font-size: 13px;
   line-height: 1.5;
    opacity  :   0.85;
}

.regulators-trust-display {
       margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
	justify-content: space-between;
   align-items: center;
  gap: 40px;
    margin-bottom  :   35px;
}

.big-warning-messages {
	  flex: 1;}

.major-warning-line {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-contact-info {
   font-size: 16px;
   margin-top: 18px;
   opacity: 0.9;
   font-weight: 500;
}

.trust-logos-row {
   display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.regulator-logo-link     {
  display: block;
  transition: transform 0.3s, opacity 0.3s;
    opacity: 0.92;
  background: var(--white-base);
   padding: 12px 18px;
        border-radius: 8px;
}

.regulator-logo-link:hover {

	  transform: translateY(-3px);
	opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);


}

.trust-badge-img {
     height: 45px; 
    width: auto; 
                    display: block; 
  max-width: 120px; 
   object-fit: contain;


}

.copyright-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.2);
     padding-top: 25px;
     text-align: center; 
	
}

.ownership-rights-text {
   font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.disclosure-statement-txt {

   font-size: 13px;
   opacity: 0.7;
   font-style   :       italic;
	}@media (max-width: 968px) {
    .hero-grid-split {
      grid-template-columns: 1fr;
        gap: 40px;
    }
  
    .hero-cards-display {
      height: 300px;
    }
  
    .headline-primary-txt {
      font-size: 38px;
    }
  
    .footer-multicolumn-layout {
      grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .headline-primary-txt {
      font-size: 32px;
    }
  
    .footer-multicolumn-layout {
      grid-template-columns: 1fr;
    }
  
    .floating-badge-one,
    .floating-badge-two, 
    .floating-badge-three {
      padding: 18px;
    }
  
    .badge-text-data h3 {
      font-size: 16px;
    }

    .regulators-trust-display {
      flex-direction: column;
        gap: 30px;
      text-align: center;
    }

    .trust-logos-row {
      justify-content: center;
        gap: 15px;
    }

    .regulator-logo-link {
      padding: 10px 14px;
    }

    .trust-badge-img {
      height: 38px;
        max-width: 100px;
    }

    .major-warning-line {
      font-size: 20px;
    }

    .main-logo-image {
      height: 38px;
    }

    .footer-logo-img {
      height: 36px;
    }
}.top-casinos-grid-area{
    padding: 70px 20px;
  background: var(--white-base);
}

.casinos-max-width-limit {
    max-width: 1240px;
    margin: 0 auto;
   display: flex;
   flex-direction: column;
  gap: 25px;
}

.casino-card-row {
  background: var(--white-base);
  border: 2px solid var(--dark-slate);
   display     :  grid;
  grid-template-columns: 200px 140px 1fr 300px 180px;
   align-items: center;
    gap: 30px;
  padding   :    30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card-row:hover {
	  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);

}

.casino-logo-display {
    display: flex;
   align-items: center;
   justify-content: center;
   padding: 15px;
  background: var(--white-base);
}

.casino-brand-logo {
  max-width: 100%;
    height: auto;
    max-height: 70px;
    display: block;
}

.rating-stars-block {
    display: flex;
               flex-direction    :  column;
    align-items: center;
	gap: 8px;
}

.stars-visual-row {
    display: flex;
   gap: 3px;
}

.star-filled {
               font-size: 24px;
  color :  #FFD700;

}

.star-half {
       color: #FFD700;
    font-size: 24px;


}

.star-empty {
      color: #ddd;
    font-size: 24px;
}

.rating-number-txt {
  font-size: 18px;
    font-weight  :  700;
  color: var(--black-base);
}

.bonus-offer-details {
    display: flex;
    flex-direction: column;
   gap: 5px;
}

.bonus-headline-txt  {
  font-size: 14px;
  color: var(--dark-slate);
   font-weight: 500;
   text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount-display {
    font-size: 26px;
   font-weight: 700;
  color: var(--navy-deep);
   line-height: 1.2;
}

.free-spins-info		{
  font-size: 16px;
  color: var(--black-base);
  font-weight: 600;
}

.advantages-icons-list {
  display: flex;
   flex-direction: column;
  gap : 12px;
}

.advantage-item-single {
   display: flex;
    align-items: center;
 gap: 10px;
}

.advantage-icon {
    font-size: 22px;
  color: var(--navy-deep);
}

.advantage-label {
	  font-size: 14px;
  font-weight: 500;
  color: var(--black-base);
     }

.cta-button-area {
	   display: flex;
  justify-content: center;


}

.get-bonus-cta-btn {
  display: inline-block;
  background: var(--navy-deep);
  color: var(--white-base);
   padding:        18px 35px;
   text-decoration: none;
    font-weight: 700;
   font-size:        16px;
    letter-spacing: 1px;
   transition:  all 0.3s;
  animation   :     pulseButton 2s infinite;
	
}

.get-bonus-cta-btn:hover {
     background: var(--primary-blue);
  transform: scale(1.05);

}

@keyframes pulseButton {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 121, 255, 0.7);
    }
  50% {
      box-shadow: 0 0 0 15px rgba(0, 121, 255, 0);
    }
  100% {
      box-shadow: 0 0 0 0 rgba(0, 121, 255, 0);
    }
}

@media (max-width: 1100px) {
    .casino-card-row {
      grid-template-columns: 1fr;
        gap: 20px;
      text-align: center;
    }

    .casino-logo-display {
      justify-content: center;
    }

    .rating-stars-block {
      align-items: center;
    }

    .bonus-offer-details {
      align-items: center;
    }

    .advantages-icons-list {
      align-items: center;
    }

    .advantage-item-single {
      justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-casinos-grid-area {
      padding: 50px 15px;
    }

    .casino-card-row {
      padding: 25px 20px;
    }

    .casino-brand-logo {
      max-height: 55px;
    }

    .bonus-amount-display {
      font-size: 22px;
    }

    .get-bonus-cta-btn {
      padding: 16px 30px;
        font-size: 15px;
    }
}.methods-explanation-zone {
	padding: 80px 20px;
  background: #f8f9fa;
}

.methods-content-limiter {
  max-width: 1240px;
    margin: 0 auto;
}

.methods-main-heading {
  font-size: 42px;
  font-weight:     700;
  color: var(--navy-deep);
   text-align: center;
    margin-bottom: 55px;
   line-height: 1.3;
}

.methods-two-column-split {
    display     :        grid;
        grid-template-columns: 1fr 1fr;
         gap: 45px;
}

.methods-text-column {
	   display: flex;
   flex-direction: column;
   gap: 22px;


}

.methods-text-column p {
    font-size: 16px;
          line-height: 1.7;
  color: var(--black-base);
	text-align: justify;
}@media (max-width: 968px) {
    .methods-two-column-split {
      grid-template-columns: 1fr;
        gap: 30px;
    }

    .methods-main-heading {
      font-size: 34px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .methods-explanation-zone {
      padding: 60px 15px;
    }

    .methods-main-heading {
      font-size: 28px;
    }

    .methods-text-column p {
      font-size: 15px;
        text-align: left;
    }
}.testimonials-background-area {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../wfp/ccaw.webp');
   background-size  :       cover;
   background-position: center;
   background-repeat: no-repeat;
   background-attachment: fixed;
   padding:      80px 20px;
  min-height: 60vh;
  display: flex;
    align-items: center;
}

.testimonials-inner-limit 
 {
  max-width: 1240px;
  margin: 0 auto;
   width: 100%;
}

.testimonials-section-title {
   font-size: 44px;
    font-weight: 700;
  color: var(--white-base);
   text-align: center;
   margin-bottom: 60px;
}

.testimonials-cards-grid {
  grid-template-columns: repeat(2, 1fr);
   gap: 30px;
  display: grid;
}

.single-testimonial-card {


  background: var(--white-base);
   padding: 35px;
  display: flex;
  flex-direction: column;
   gap: 20px;
   transition: transform 0.3s, box-shadow 0.3s;
     }

.single-testimonial-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.testimonial-review-text {
  font-size: 15px;
    line-height: 1.7;
  color: var(--black-base);
               flex-grow: 1;
}

.reviewer-identity-block {
  border-top: 2px solid var(--navy-deep);
    padding-top    :      15px;
}

.reviewer-name-display {
    font-size: 17px;
    font-weight: 700;
  color: var(--navy-deep);
   margin-bottom: 4px;
}

.reviewer-location-info {
   font-size: 14px; 
  color: var(--dark-slate);
}@media (max-width: 968px) {
    .testimonials-cards-grid {
      grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-section-title {
      font-size: 36px;
        margin-bottom: 45px;
    }

    .testimonials-background-area {
      background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .testimonials-background-area {
      padding: 60px 15px;
    }

    .testimonials-section-title {
      font-size: 30px;
    }

    .single-testimonial-card {
      padding: 28px;
    }

    .testimonial-review-text {
      font-size: 14px;
    }
}.cta-about-us-block {
  background: var(--navy-deep);
  padding: 90px 20px;
    text-align: center;
}

.cta-content-max-width {
  max-width: 850px;
   margin: 0 auto;
}

.cta-main-headline {
    font-size    :       40px;
    font-weight: 700;
  color: var(--white-base);
  margin-bottom: 25px;
    line-height: 1.3;


}

.cta-supporting-text {

	    font-size    :    18px;
   line-height: 1.7;
  color: var(--white-base);
	opacity: 0.92;
  margin-bottom: 40px; 
}

.cta-about-button {
  display: inline-block;
  background: var(--white-base);
  color: var(--navy-deep);
  padding: 18px 45px;
   text-decoration: none;
   font-weight: 700;
               font-size: 17px;
    transition: all 0.3s;
}

.cta-about-button:hover     {
  background: var(--primary-blue);
  color: var(--white-base);
  transform: scale(1.05);
}@media (max-width: 768px) {
    .cta-about-us-block {
      padding: 70px 15px;
    }

    .cta-main-headline {
      font-size: 30px;
        margin-bottom: 20px;
    }

    .cta-supporting-text {
      font-size: 16px;
        margin-bottom: 35px;
    }

    .cta-about-button {
      padding: 16px 35px;
        font-size: 16px;
    }
}.age-verify-backdrop {
  position: fixed;
   top: 0;
  left: 0;
   right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
         display: flex;
  align-items     :center;
  justify-content: center;
    z-index: 9999;
        padding  :  20px;
}

.age-verify-backdrop.hidden {
  display: none;
}

.age-verify-modal-box
	{
  background: var(--white-base);
  max-width: 550px;
      width   :        100%;
    padding: 45px;
   text-align    : center;
   animation: slideDown 0.4s ease-out;
}@keyframes slideDown {
    from {
      opacity: 0;
        transform: translateY(-50px);
    }
  to {
      opacity: 1;
        transform: translateY(0);
    }
}.age-verify-logo-area {
   margin-bottom: 25px;
}

.verify-logo-img {
	height: 55px;
  width: auto;
    display: inline-block;
}

.age-verify-heading {


    font-size: 32px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 20px;}

.age-verify-message {
   font-size    :      16px;
  line-height: 1.6;
  color: var(--black-base);
    margin-bottom: 25px;
}

.age-verify-awareness-box {
    background: #fff3cd;
   border : 2px solid #ffc107;
   padding: 20px;
  margin-bottom: 30px;
   display: flex;
  gap: 15px;
   align-items: flex-start;
   text-align: left;
}

.warning-icon-symbol {
   color: #ff9800;
   font-size: 28px;
  flex-shrink: 0;
}

.awareness-text-info {
   font-size: 14px;
    line-height: 1.6;
  color :      #333;
}

.awareness-text-info a {
  color: var(--navy-deep);
  font-weight: 600;
   text-decoration: underline;
}


.awareness-text-info strong {
  color: var(--navy-deep);
}

.age-verify-buttons-row {
  display: flex;
    gap: 15px;
   justify-content    :     center;
   flex-wrap: wrap;
}

.btn-confirm-age,
.btn-deny-age {
      padding: 16px 35px;
       font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
  transition: all 0.3s;
  font-family: 'IBM Plex Sans', sans-serif;
	}

.btn-confirm-age {

  background: var(--navy-deep);
	  color: var(--white-base);
	}

.btn-confirm-age:hover {
  background: var(--primary-blue);
  transform: scale(1.05);
}

.btn-deny-age {
  background: var(--dark-slate);
  color: var(--white-base);
}

.btn-deny-age:hover {
   background: #dc3545;
}@media (max-width: 768px) {
    .age-verify-modal-box {
      padding: 35px 25px;
    }

    .age-verify-heading {
      font-size: 26px;
    }

    .age-verify-message {
      font-size: 15px;
    }

    .age-verify-buttons-row {
      flex-direction: column;
    }

    .btn-confirm-age,
    .btn-deny-age {
      width: 100%;
    }

    .verify-logo-img {
      height: 45px;
    }
}.plain-text-content-area {
    padding: 80px 20px;
  background: var(--white-base);
    min-height: 60vh;
}

.text-content-limiter {
      max-width: 900px;
    margin: 0 auto;
}

.text-content-limiter h1 {
  font-size: 44px;
   font-weight: 700;
  color: var(--navy-deep);
    margin-bottom: 35px;
  line-height: 1.3;
}

.text-content-limiter h2 {
	 font-size: 28px;
    font-weight  :700;
  color: var(--navy-deep);
   margin-top: 40px;
  margin-bottom: 18px;
    line-height: 1.3;
}

.text-content-limiter h3 {
   font-size: 22px;
  font-weight: 600;
  color: var(--dark-slate);
   margin-top: 30px;
    margin-bottom: 15px;
}

.text-content-limiter p {
   font-size: 16px;
	line-height: 1.75;
  color: var(--black-base);
  margin-bottom: 20px;
}@media (max-width: 768px) {
    .plain-text-content-area {
      padding: 60px 15px;
    }

    .text-content-limiter h1 {
      font-size: 32px;
        margin-bottom: 28px;
    }

    .text-content-limiter h2 {
      font-size: 24px;
        margin-top: 35px;
      margin-bottom: 15px;
    }

    .text-content-limiter h3 {
      font-size: 20px;
    }

    .text-content-limiter p {
      font-size: 15px;
    }
}