:root{
/* colors */
--safety-orange:hsl(25,100%,50%);
--levandar-gray:hsl(230,19%,81%);
--persian-rose:hsl(328,100%,59%);
--red-crayola:hsl(341,100%,49%);
--eeria-black:hsl(240,6%,10%);
--light-gray:hsl(0,0%,80%);
--cultured-2:hsl(210,60%,98%);
--platinum:hsl(0,0%,90%);
--gray-wave:hsl(220,5%,49%);
--cultured:hsl(0,0%,93%);
--black_10:hsla(0,0%,0%,0.1);
--black_5:hsla(0,0%,0%,0.05);
--white-1:hsl(0,0%,100%);
--white-2:hsl(0,14%,98%);
--black:hsl(0,0%,0%);

/* gradient color */
--gradient:linear-gradient(to left top,var(--persian-rose),var(--safety-orange));
/* typograpy */
--ff-roboto:'Roboto',sans-serif;
--ff-league-spartan:'League Spartan',sans-serif;
--fs-1:3.5rem;
--fs-2:3rem;
--fs-3:2.1rem;
--fs-4:1.7rem;
--fs-5:1.4rem;
--fs-6:1.3rem;
--fw-700:700;
--fw-500:500;

/* spacing */
--section-padding:60px;
/* shadow */
--shadow-1:0 6px 24px var(--black_5);
--shadow-2:0 2px 28px var(--black_10);
/* border-radius */
--radius-2:2px;
--radius-5:5px;
--radius-8:8px;
--radius-16:16px;
--radius-4:4px;
/* transition */
--transition-1: 0.25s ease;
--transition-2: 0.5s ease;
--cubic-out: cubic-bezier(0.33,0.85,0.4,0.96);
}

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
li{ list-style: none;}
a{
    text-decoration: none;
    color: inherit;
}
a,img,span,time,label,input,button,textarea,i{ display: block;}
img{height: auto;}
input,button,textarea{
    background: none;
    border: none;
    font: inherit;
}
input,textarea{ width: 100%;}
button{cursor: pointer;}
i{pointer-events:none;}
address{font-style: normal;}
html{
    font-family: var(--ff-roboto);
    font-size: 10px;
    scroll-behavior: smooth;
}
body{
    background-color: var(--white-1);
    color: var(--gray-wave);
    font-size: 1.6rem;
    line-height: 1.8;
   
}
::-webkit-scrollbar{width: 10px;}
::-webkit-scrollbar-track{background-color: hsl(0,0%,98%);}
::-webkit-scrollbar-thumb{background-color: hsl(0,0%,80%);}
::-webkit-scrollbar-thumb:hover{background-color: hsl(0,0%,70%);}
:focus-visible{outline-offset: 4px;}
/* reused style */
.container{padding-inline: 15px;  overflow: hidden;}
.btn{
    font-family: var(--ff-league-spartan);
    max-width: max-content;
    color: var(--white-1);
    font-size: var(--fs-5);
    font-weight: var(--fw-700);
    padding: 10px 30px;
    border-radius:var(--radius-16) var(--radius-4);
    transition: var(--transition-1);
}
.btn-primary{
    background-image: var(--gradient);
    background-size: 1000%;
}
.btn-primary:is(:hover, :focus) {background-position: bottom right;}

.btn-secondary{
    background-color: var(--white-1);
   color: var(--eeria-black);
}
.btn-secondary:is(:hover, :focus) {
    background-color: var(--eeria-black);
    color: var(--white-1);
}
.section{
    padding-block: var(--section-padding);
}
.h1,
.h2,
.h3{
    color: var(--eeria-black);
    font-family: var(--ff-league-spartan);
    line-height: 1.2;
}
.h1{
    font-size: var(--fs-1);
}
.h2{
    font-size: var(--fs-2);
}
.h3{
    font-size: var(--fs-3);
}
.w-100{
    width: 100%;
}
.section-title,
.section-text{text-align: center;}

.section-title .span{
    display: inline-block;
    color: var(--safety-orange);
}

.section-text{font-size: var(--fs-6);}

.grid-list{
    display: grid;
    gap: 30px;
}
.grid-list1 li{
  
   margin-bottom: 3rem;
}
.img-holder{
    aspect-ratio: var(--width)/var(--height);
    background-color: var(--light-gray);
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* #header */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-1);
    padding-block: 15px;
    border-block-end: 1px solid var(--cultured);
    z-index: 4;
    transition: var(--transition-1);
}
.header.active{filter: drop-shadow(var(--shadow-2));}
.header > .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    font-family: var(--ff-league-spartan);
    color:var(--black);
    font-size: 2.5rem;
    font-weight: var(--fw-700);
    line-height: 1;
}
.logo .span1{
    display: inline-block;
    color: var(--safety-orange);
}
.nav-toggle-btn{font-size: 30px;color: var(--red-crayola);}
.nav-toggle-btn.active .open,
.nav-toggle-btn .close{display: none;}

.nav-toggle-btn .open,
.nav-toggle-btn.active .close{display: block;}

.navbar{
    background-color: var(--white-1);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 30px);
    width: 100%;
    padding-inline: 0;
    border: 1px solid var(--cultured);
    transition: 0.3s var(--cubic-out);
    min-height: 0;
    visibility: hidden;
    overflow: hidden;
}
.navbar.active{
    max-height: 350px;
    visibility: visible;
    transition-duration: 0.5s;
}
.navbar-list{
    padding: 20px 15px;
    padding-block-start: 10px;
    opacity: 0;
    transition: var(--transition-1);
}
.navbar.active .navbar-list{opacity: 1;}
.navbar-link{
    color: var(--eeria-black);
    font-family: var(--ff-league-spartan);
    font-size: var(--fs-4);
    line-height: 1.2;
    padding-block: 8px;
    transition: var(--transition-1);
}
.navbar-link:is(:hover, :focus) {color:var(--red-crayola);}
.header .btn{margin-block-start:10px;}
/* hero */
.has-bg-image{
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
    position: relative;
  
  }
  
.hero{
    padding-block: calc(var(--section-padding) + 50px);
    text-align: center;
}
.hero-content{
    margin-block-end: 30px;
}
.hero-subtitle{
    color: var(--eeria-black);
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
}
.hero-title{
    margin-block: 12px 8px;
}
.hero-title .span{
    display: inline-block;
    color: var(--safety-orange);
    }
.hero-text{
    font-size: var(--fs-5);
}
.hero .btn{
    margin-inline: auto;
    margin-block-start: 20px;
}
.hero-banner{
    animation:  rotate 20s linear infinite;
  
}
@keyframes rotate {
    from{
        transform: rotate(360deg);
       
    }
    to{
        transform: rotate(0deg);
       
    }
}
/* service */

.service .service-text{margin-block: 5px 35px;}
.service-card{
    background-color:var(--white-1) ;
    padding: 20px 15px;
    border: 1px solid var(--platinum);
    border-radius: 45px var(--radius-5);
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: var(--transition-2);
}
.service-card:is(:hover, :focus-within) {transform: translateY(-10px);}

.service-card .card-icon{
    color: var(--white-1);
    font-size: 25px;
    max-width: max-content;
    margin-inline: auto;
    padding: 18px;
    border-radius: 50%;
    line-height: 1;
}
.service-card .card-title{ margin-block: 20px 8px; }
.service-card .card-text{ font-size: var(--fs-6);}
/* project */
.project{ background-color: var(--white-2);}
.project .section-text{margin-block: 5px 35px;}
.project-card{
    position: relative;
    border-radius: 45px var(--radius-5);
    overflow: hidden;
}
.project-card::after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.3;
    transition: var(--transition-2);
}
.project-card:is(:hover,:focus-within)::after{opacity: 0.5;}

.project-card .card-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    transition: var(--transition-2);
}
.project-card:is(:hover,:focus-within) .card-content{transform: translateY(-20px);}
.project-card .card-subtitle{
    color: var(--levandar-gray);
    font-size: var(--fs-6);
    line-height: 1;
}
.project-card .card-title{
color: var(--white-1);
margin-block: 12px 15px;
}
/* about */
.about{background-color: var(--white-2);}
.about-banner{
    position: relative;
    border-radius: var(--radius-5);
    overflow: hidden;
    margin-block-end: 25px;
}
.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--white-1);
    color: var(--red-crayola);
    font-size: 32px;
    padding: 16px;
    line-height:1;
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
}
@keyframes pulse {
    0%{box-shadow: 0 0 0 1px var(--white-1);}
    100%{
        box-shadow: 0 0 0 25px transparent;
    }
}
.about :is(.section-title, .section-text){text-align: left;}
.about .section-title{
    margin-block-end: 5px;
}
.about .section-text:not(:last-child){margin-block-end: 18px;}
.about .h3{
    margin-block-end: 8px;
}
.about-list{
    margin-block: 15px 18px;
}
.about-item{
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.about-item i{
    color: var(--red-crayola);
    flex-shrink: 0;
    margin-block-start: 2px;
}
.about-item:not(:last-child){margin-block-end: 12px;}
/* cta */
.cta{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.cta::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient);
    opacity: 0.95;
    z-index: -1;
}
.cta-subtitle,
.cta .section-title{color: var(--white-1);}

.cta-subtitle{
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    text-align: center;
}
.cta .section-title{margin-block:12px 18px;}
.cta .btn{ margin-inline: auto;}

.blog .section-text{ margin-block: 5px 35px;}

.blog-card{ background-color: var(--white-2);}

.blog-card .card-banner{ overflow: hidden;}

.blog-card .card-banner img{ transition: var(--transition-2);}

.blog-card:is(:hover,:focus-within) .card-banner img{transform: scale(1.05);}

.blog-card .card-content{padding: 15px;}

.blog-card .time{
    color: var(--red-crayola);
    font-size: var(--fs-6);
    line-height: 1;
    margin-block-end: 10px;
}
.blog-card .card-title{ transition: var(--transition-1);}

.blog-card .card-title:is(:hover,:focus-within) {color: var(--red-crayola);}

/* contact */
.contact { background-image: url('image/hero-banner1.jpg');background-repeat: no-repeat;background-attachment: fixed;background-size: cover;}
.contact .section-text { margin-block:5px 35px;}

.contact-form{
    background-color: var(--white-1);
    padding: 20px;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    margin-block-end:30px;
}
.input-field{
    background-color: var(--white-2);
    color: var(--eeria-black);
    font-size: var(--fs-5);
    padding: 15px;
    border-radius: var(--radius-2);
    outline: 1px solid transparent;
    outline-offset: 0;
    margin-block-end: 15px;
}
.input-field::-webkit-inner-spin-button {display: none;}

.input-field:focus{ outline-color: var(--red-crayola);}

.input-field::placeholder {transition: var(--transition-1);}
.input-field:focus::placeholder {opacity: 0;}

textarea.input-field{
    resize: vertical;
    min-height: 80px;
    height: 100px;
    max-height: 200px;
    overscroll-behavior: contain;
}
.checkbox{
    width: max-content;
    margin-block-start: 5px;
    accent-color: var(--red-crayola);
}
.label-link{
    display: inline-block;
    color: var(--red-crayola);
}
.label-link:is(hover,:focus){text-decoration: underline;}
.checkbox-wrapper{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-block-end: 15px;
}
.checkbox-wrapper .label {font-size: var(--fs-6);}

.contact-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 25px;
}

.contact-item { min-width: 100%;}

.contact-card{
    background-color: var(--white-1);
    padding: 20px;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-card .card-icon{
    background-color: var(--cultured-2);
    color: var(--red-crayola);
    font-size: 25px;
    padding: 13px;
    border-radius: 50%;
    transition: var(--transition-1);
    line-height: 1;
}
.contact-card:is(:hover,:focus) .card-icon{
    background-color: var(--red-crayola);
    color: var(--white-1);
}
.contact-card .card-title {margin-block-end: 5px;}

.contact-card .card-title .span{
    display: inline-block;
    color: var(--safety-orange);
}

.contact-card :is(.card-link, .card-address) {
    font-size: var(--fs-6);
    transition: var(--transition-1);
}
.contact-card .card-link:is(:hover,:focus) {color: var(--red-crayola);}

/* desc */

.desc-banner{
    position: relative;
    border-radius: var(--radius-5);
    overflow: hidden;
    margin-block-end: 25px;
}

.desc :is(.section-title, .section-text){text-align: left;}
.desc .section-title{
    margin-block-end: 5px;
}
.desc .section-text:not(:last-child){margin-block-end: 18px;}
.desc .h3{
    margin-block-end: 8px;
}
.desc-list{
    margin-block: 15px 18px;
}
.desc-item{
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.desc-item i{
    color: var(--red-crayola);
    flex-shrink: 0;
    margin-block-start: 2px;
    animation: fade-in 2s  infinite;
}
@keyframes fade-in {
    0%{opacity: 1;transform: scale(1);}
    50%{opacity: 0.8;transform: scale(1.4);}
    100%{transform: scale(1);opacity: 1;}
}
.desc-item:not(:last-child){margin-block-end: 12px;}

/* review */
.review { background-image: url('image/review-bg.jpg');background-repeat: no-repeat;background-attachment: fixed;background-size: cover;}
.review .review-text{margin-block: 5px 35px;}
.review-card{
    background-color:var(--white-1) ;
    padding: 20px 15px;
    border: 1px solid var(--platinum);
    border-radius: 45px var(--radius-5);
    text-align: center;
    box-shadow: var(--shadow-1);
   
}

.review-card .card-text:is(:hover, :focus-within) {transform: scale(1.09);}


.review-card .card-title{ margin-block: 20px 8px; }
.review-card .card-text{ font-size: var(--fs-6); transition: var(--transition-2);}

/* footer */
.footer{
    background: var(--gradient);
    padding-block: 20px;
}
.copyright{
    font-size: var(--fs-6);
    text-align: center;
    color: var(--white-2);
}
.copyright-link{
    color: var(--eeria-black);
    font-weight: var(--fw-500);
    display: inline-block;
}

/* back to top */
.back-top-btn{
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: var(--eeria-black);
    color: var(--white-1);
    padding: 12px;
    border-radius: 50%;
    box-shadow: var(--shadow-2);
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
    line-height: 1;
    animation: pulse1 1.5s ease-out infinite;
}
@keyframes pulse1 {
    0%{box-shadow: 0 0 0 1px var(--eeria-black);}
    100%{
        box-shadow: 0 0 0 25px transparent;
    }
}
.back-top-btn.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.back-top-btn:is(:hover,:focus) {opacity: 0.9;}

/* document */

.document .document-text{margin-block: 5px 35px;}
.document-card{
    background-color:var(--white-1) ;
    padding: 20px 15px;
    border: 1px solid var(--platinum);
    border-radius: 45px var(--radius-5);
    box-shadow: var(--shadow-1);
    transition: var(--transition-2);
}
.document-card:is(:hover, :focus-within) {transform: translateY(-10px);}

.document-card .h3{color: var(--red-crayola);}
.document-card .card-title{ margin-block: 20px 8px; }
.document-card .card-text{ font-size: var(--fs-6);}

/* responsive  for larger 575px screen*/
@media(min-width:575px)
{
    /* reuse style */
    .container{
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }
    .grid-list{
        grid-template-columns: 1fr 1fr;
        column-gap: 25px;
    }
    /* blog */
    .blog .grid-list{
        grid-template-columns: 1fr;
    }
    .blog-card.grid{
        display: grid;
        grid-template-columns: 0.47fr 1fr;
        align-items: center;
        gap: 10px;
    }
     /* contact */
     .input-wrapper{
        display: flex;
        gap: 15px;
     }
    .contact-item{
        min-width:calc(50% - 18px);
    }
    /* document */
    .grid-list1{
        grid-template-columns: 1fr;
        column-gap: 25px;
    }
}

/* responsive  for larger 768px screen*/
@media(min-width:768px)
{
    /*  custom property */
    :root{
        --fs-1:4.5rem;
        --fs-2:3.7rem;
        --fs-3:2.3rem;
        --fs-4:1.8rem;
        --fs-5:1.5rem;
        --fs-6:1.4rem;
    }
      /* reuse style */
      .container{
        max-width: 720px;
      }
      .section-text{
        max-width: 65ch;
        margin-inline:auto;
      }
       /* hero */
      .hero-text{
        max-width:60ch;
        margin-inline:auto;
      }
        /* about */
      .about-banner{
        max-width: 550px;
      }
      .about .section-text{
        max-width: unset;
        margin-inline: 0;
      }
       /* contact */
       .contact-form{
        padding: 30px;
       }
       .contact-item{
        min-width: calc(50% - 12.5px);
       }
         /* desc */
      .desc-banner{
        max-width: 550px;
      }
      .desc .section-text{
        max-width: unset;
        margin-inline: 0;
      }
}

/* responsive  for larger 992px screen*/
@media(min-width:992px)
{
    /*  custom property */
    :root{
        --fs-1:5rem;
        --fs-2:4rem;
        --fs-3:2.5rem;
        /* spacing */
        --section-padding:100px;
    }
      /* reuse style */
      .container{
        max-width: 960px;
      }
      .grid-list{
        grid-template-columns:repeat(3,1fr);
      } 
      .grid-list1{
        grid-template-columns:1fr;
      }
      /* header */
      .nav-toggle-btn{
        display: none;
      }
      .navbar,
      .navbar.active{all: unset;}

      .navbar-list{
        all:unset;
        display: flex;
        justify-content: center;
        gap: 30px;
    }
    .navbar-link{
        position: relative;
    }
    .navbar-link:is(:hover, :focus) {color: var(--eeria-black);}
    .navbar-link::after{
        content: "";
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-image: var(--gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition-2);
    }
    .navbar-link:is(:hover, :focus)::after{transform: scaleX(1);}
    .header .btn{margin-block-start: 0px;
    }
    /* hero */
    .hero .container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
        text-align: left;
    }
    .hero-content { margin-block-end: 0;}
    .hero-subtitle{
        position: relative;
        padding-inline-start: 15px;
    }
    .hero-subtitle::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        background-color: var(--red-crayola);
    }
    .hero-text,
    .hero .btn{ margin-inline: 0;}
    /* service */
    .service-card{ padding: 20px;}
    .service-card .h3{--fs-3:2.3rem;}

    /* project */
    .project-card .card-subtitle {--fs-6:1.5rem;}
    /* about */
    .about .container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }
    .about-banner{ margin-block-end: 0;}
     /* blog */
   .blog .grid-list{
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
   }
   .blog .grid-list>li:first-child{
    grid-column: 1/2;
    grid-row: 1/5;
   }
   .blog-card:not(.grid){height: 100%;}
   .blog-card .card-content { padding-block:10px;}
   .blog-card:not(grid) .card-content {padding: 25px;}
   .blog-card.grid .h3 {--fs-3:2rem;}
   .blog-card .time{ --fs-6:1.6rem;}

   /* contact */
   .checkbox-wrapper {margin-block: 20px;}

   .contact-item {min-width: calc(33.33% - 16.66px);}
   .contact-card .card-icon{ font-size: 32px;}

    /* desc */
    .desc .container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }
    .desc-banner{ margin-block-end: 0;}

     /* review */
     .review-card{ padding: 20px;}
     .review-card .h3{--fs-3:2.3rem;}

     /* document */
    .document-card{ padding: 20px;}
    .document-card .h3{--fs-3:2.3rem;}
}

/* responsive  for larger 992px screen*/
@media(min-width:1200px)
{
    /*  custom property */
    :root{
        --fs-1:6.8rem;
        --fs-2:4.5rem;
        --fs-4:1.9rem;
        --fs-5:1.6rem;
        --fs-6:1.6rem;
      
    }
      /* reused style */
      .container {max-width: 1140px;}
      .btn{ --fs-6:1.5rem;}
    /* service */
    .service-card{padding: 30px;}
    .service-card .h3{ --fs-3:2.5rem;}

    /* project */
    .project-card .card-content{padding: 30px;}
    .project-card .card-subtitle {--fs-6: 1.6rem;}

    /* about */
    .about .container{ gap:60px;}

    .about.about-item {gap: 7px;}
    .about-item .fas{font-size: 20px;}
      /* cta */
      .cta .section-title{margin-block: 15px 24px;}

      /* blog */
      .blog-card .time{ --fs-6:1.6rem;}

      .blog-card.grid .h3{--fs-3:2.4rem;}

      /* contact */
      .contact-form {padding: 50px;}
      .contact-card{gap: 20px;}
      .contact-card .card-icon {padding: 15px;}
     /* desc */
     .desc .container{ gap:60px;}

     .desc.desc-item {gap: 7px;}
     .desc-item .fas{font-size: 20px;}

     /* review */
    .review-card{padding: 30px;}
    .review-card .h3{ --fs-3:2.5rem;}

    /* document */
    .document-card{padding: 30px;}
    .document-card .h3{ --fs-3:2.5rem;color: var(--red-crayola);}
}



  .about--tight{padding-top:2rem; padding-bottom:2rem;}

  
  .about .container.about-wrap{display:block !important;}

  
  .about-float{max-width:clamp(280px,34vw,420px); margin:0 0 .75rem;}
  .about-float .img-cover{display:block; width:100%; height:auto; border-radius:18px; object-fit:cover;}

 
  @media (min-width:992px){
    .about-float{float:right; margin:0 0 .75rem 1.75rem; shape-outside: inset(0 round 18px); shape-margin:12px;}
  }
  
  @media (max-width:991.98px){
    .about-float{float:none; margin:0 auto .75rem;}
  }

  
  .about-content h2,
  .about-content h3,
  .about-content p,
  .about-content ul{clear:none !important;}

 
  .about .container.about-wrap::after{content:""; display:block; clear:both;}

  
  .about-cta .btn{margin-right:.75rem; margin-top:.5rem;}
  .btn.btn-outline{border:2px solid currentColor; background:transparent; padding:.8rem 1.2rem; border-radius:14px; display:inline-block;}


.about .img-holder,
.about .img-holder::before {
  background: transparent !important;   
  box-shadow: none;
}


.about .img-holder .img-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;           
}


  
  .online .section-title { margin-bottom: .75rem; }
  .online .lead { max-width: 880px; }
  .online .cta-row .btn { margin-right:.75rem; margin-top:.5rem; }

  .online-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  @media (min-width: 992px){
    .online-grid{ grid-template-columns: repeat(3, 1fr); }
  }

  .online-card{
    background: rgba(255,255,255,0.08); 
    backdrop-filter: blur(2px);
    border-radius: 16px;
    padding: 1rem 1.1rem;
  }

  .online .icon-list{ margin: .5rem 0 0; }
  .online .icon-list li{ display:flex; align-items:flex-start; gap:.5rem; margin:.35rem 0; }
  .online .icon-list i{ margin-top:.15rem; }

  .bullet-2col{ 
    columns: 2; column-gap: 1.25rem; margin: .5rem 0 .25rem;
    list-style: disc inside;
  }
  @media (max-width: 576px){ .bullet-2col{ columns:1; } }

  .online .micro-note{ font-size:.9rem; opacity:.85; margin-top:.25rem; }

  .trust-block{
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.06);
    padding: 1rem 1.1rem;
    border-radius: 16px;
  }

  
  .btn.btn-outline{
    border:2px solid currentColor; background:transparent;
    padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
  }
  
 
.section.cta.has-bg-image{
  background-image: var(--cta-bg) !important; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; 
}


.section.cta.has-bg-image::before,
.section.cta.has-bg-image::after{
  content: none !important;
  background: none !important;
}


.section.cta .section-title,
.section.cta .cta-subtitle,
.section.cta .cta-bonus,
.section.cta a,
.section.cta .btn{ color:#fff; }


.btn.btn-outline.btn-outline-white{
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: .8rem 1.25rem;
  border-radius: 14px;
}


.section.cta .section-title,
.section.cta .cta-subtitle,
.section.cta .cta-bonus{
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

 .games .grid-games{
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  @media (min-width: 576px){
    .games .grid-games{ grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 768px){
    .games .grid-games{ grid-template-columns: repeat(4, 1fr); }
  }
  @media (min-width: 1200px){
    .games .grid-games{ grid-template-columns: repeat(6, 1fr); }
  }

  
  .game-card{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0e0e12;              
    border: 1px solid rgba(255,255,255,.06);
  }
  .game-card .thumb{
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;              
    overflow: hidden;
  }
  .game-card .game-img{
    width: 100%; height: 100%;
    object-fit: cover; display:block;
    transition: transform .35s ease;
  }
  .game-card:hover .game-img,
  .game-card:focus-within .game-img{
    transform: scale(1.04);
  }

 
  .game-overlay{
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.05), rgba(0,0,0,.55) 70%);
    opacity: 0; transition: opacity .25s ease;
  }
  .game-card:hover .game-overlay,
  .game-card:focus-within .game-overlay{ opacity: 1; }

  
  .game-overlay .btn{ pointer-events: auto; }
  
   .promos .lead{max-width:980px;}
  .promo-hero{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:1rem 1.25rem;
    margin-block: .75rem 1.25rem;
  }
  .promo-hero .big{font-size:1.1rem; margin:.25rem 0 .5rem;}
  .promo-bullets{list-style:disc inside; margin:.25rem 0 .75rem;}
  .cta-row .btn{margin-right:.75rem; margin-top:.5rem;}
  .btn.btn-outline{border:2px solid currentColor; background:transparent; padding:.8rem 1.25rem; border-radius:14px; display:inline-block;}

  .promo-grid{display:grid; grid-template-columns:1fr; gap:12px; margin-top:.5rem;}
  @media (min-width:768px){ .promo-grid{ grid-template-columns:repeat(3,1fr); } }

  .promo-card{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding: .9rem 1rem;
  }
  .promo-card .mini-list{list-style:disc inside; opacity:.95; margin:.35rem 0 0;}

  .loyalty{ margin-top:1.25rem; }
  .tier-grid{ display:grid; grid-template-columns:1fr; gap:12px; }
  @media (min-width:768px){ .tier-grid{ grid-template-columns:repeat(4,1fr); } }
  .tier{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px; padding:.9rem 1rem;
  }
  .tier .tier-text{ opacity:.95; }

  .claim{ margin-top:1.25rem; }
  .claim-steps{ counter-reset: step; list-style:none; padding:0; margin:.25rem 0 .75rem;}
  .claim-steps li{
    position:relative; padding-left:2.1rem; margin:.4rem 0;
  }
  .claim-steps li::before{
    counter-increment: step; content: counter(step);
    position:absolute; left:0; top:.1rem;
    width:1.4rem; height:1.4rem; line-height:1.4rem; text-align:center;
    border-radius:50%;
    background: rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
  }

  .terms, .faq{ margin-top:1rem; }
  .faq-item{ background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:.7rem .85rem; margin:.4rem 0; }
  .faq-item[open]{ background: rgba(255,255,255,0.06); }
  
   
  .promo-hero{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:1rem 1.25rem;
    margin-block:.75rem 1.25rem;
  }
  .promo-hero--with-media{
    display:grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
  }
  @media (min-width: 992px){
    .promo-hero--with-media{
      grid-template-columns: 1fr minmax(360px, 480px);
      gap: 20px;
      padding-right: 1.25rem;
    }
  }

  .promo-hero-media{
    margin: 0;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .promo-hero-img{
    display:block;
    width:100%;
    height:auto;
    max-height: 520px;
    border-radius: 14px;
    object-fit: contain; 
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
  }

  
  .gaming-wrap{
    display:grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 992px){
    .gaming-wrap{
      grid-template-columns: minmax(440px, 1fr) 1fr;
      align-items: start;
    }
  }

  /* Intro column */
  .gaming-intro .lead{ margin-bottom:.6rem; max-width: 60ch; }
  .gaming-usps{ list-style:none; padding:0; margin:.25rem 0 .75rem; }
  .gaming-usps li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
  .gaming-usps i{ margin-top:.15rem; }
  .gaming-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
  .btn.btn-outline{ border:2px solid currentColor; background:transparent; padding:.8rem 1.25rem; border-radius:14px; display:inline-block; }

  /* Category grid */
  .gaming-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style:none; padding:0; margin:0;
  }
  @media (max-width: 680px){
    .gaming-grid{ grid-template-columns: 1fr; }
  }

  .g-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: .9rem 1rem;
    display:flex; flex-direction:column; min-height: 100%;
  }
  .g-head{ display:flex; align-items:center; gap:.6rem; margin-bottom:.25rem; }
  .g-head i{ font-size:1.25rem; }
  .g-text{ margin:.25rem 0 .5rem; flex:0 0 auto; }
  .g-meta{
    display:flex; flex-wrap:wrap; gap:.5rem .75rem; margin-bottom:.6rem; opacity:.95;
  }
  .g-meta span{ display:inline-flex; align-items:center; gap:.35rem; font-size:.95rem; }
  .g-btn{ margin-top:auto; } 

 
  .popular .container.pop-wrap{ display:block !important; }

  
  .pop-media{
    max-width: clamp(300px, 32vw, 440px);
    margin: 0 0 .75rem;
  }
  .pop-img{ display:block; width:100%; height:auto; border-radius:18px; object-fit:contain; }
  @media (min-width: 992px){
    .pop-media{ float:right; margin: .1rem 0 .9rem 1.75rem; shape-outside: inset(0 round 18px); shape-margin: 12px; }
  }
  @media (max-width: 991.98px){
    .pop-media{ float:none; margin: 0 auto .75rem; }
  }

  /* Text tweaks */
  .popular .lead{ max-width: 70ch; margin-bottom:.6rem; }
  .pop-points{ list-style:none; padding:0; margin:.35rem 0 .8rem; }
  .pop-points li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
  .pop-points i{ margin-top:.15rem; }

  /* Rating strip */
  .pop-rating{
    display:flex; align-items:center; gap:.6rem;
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px; padding:.5rem .75rem; margin:.5rem 0 .8rem;
  }
  .pop-rating .stars i{ color: #ffd166; } 
  .pop-rating .score{ font-weight:600; }
  .pop-rating .votes{ opacity:.9; }

  /* Two-column bullets */
  .bullet-2col{
    columns: 2; column-gap: 1.25rem; list-style: disc inside;
    margin: .25rem 0 .75rem;
  }
  @media (max-width: 576px){ .bullet-2col{ columns:1; } }

  /* Mini grid highlights */
  .pop-mini-grid{
    display:grid; grid-template-columns: 1fr; gap:12px; margin:.5rem 0 .9rem;
  }
  @media (min-width:768px){ .pop-mini-grid{ grid-template-columns: repeat(3,1fr); } }
  .mini{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px; padding:.8rem 1rem;
  }

  /* CTA */
  .pop-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
  .btn.btn-outline{ border:2px solid currentColor; background:transparent; padding:.8rem 1.25rem; border-radius:14px; display:inline-block; }

  /* FAQ */
  .pop-faq .faq-item{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px; padding:.7rem .85rem; margin:.4rem 0;
  }
  .pop-faq .faq-item[open]{ background: rgba(255,255,255,0.07); }

  
  .pop-content h2, .pop-content h3, .pop-content p, .pop-content ul, .pop-content .pop-rating, .pop-content .pop-mini-grid,
  .pop-content .pop-cta, .pop-content .pop-faq{ clear:none !important; }

 
  .pop-wrap::after{ content:""; display:block; clear:both; }
  
  /* ===== Jackpots & Bonus Buy (standalone styles) ===== */


.jackpots .container.jp-wrap{ display:block !important; }


.jp-media{
  max-width: clamp(300px, 32vw, 440px);
  margin: 0 0 .75rem;
}
.jp-img{
  display:block; width:100%; height:auto;
  border-radius:18px; object-fit:contain;
}
@media (min-width: 992px){
  .jp-media{
    float:left;
    margin: .1rem 1.75rem .9rem 0;
    shape-outside: inset(0 round 18px);
    shape-margin: 12px;
  }
}
@media (max-width: 991.98px){
  .jp-media{ float:none; margin: 0 auto .75rem; }
}

/* text blocks */
.jackpots .lead{ max-width:70ch; margin-bottom:.6rem; }
.jp-points{ list-style:none; padding:0; margin:.35rem 0 .8rem; }
.jp-points li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
.jp-points i{ margin-top:.15rem; }

/* mini feature grid */
.jp-meta-grid{
  display:grid; grid-template-columns:1fr; gap:12px; margin:.5rem 0 .9rem;
}
@media (min-width:768px){ .jp-meta-grid{ grid-template-columns:repeat(3,1fr); } }
.mini{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}

/* two-column bullets */
.bullet-2col{
  columns:2; column-gap:1.25rem; list-style:disc inside;
  margin:.25rem 0 .75rem;
}
@media (max-width:576px){ .bullet-2col{ columns:1; } }

/* ctas */
.jp-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}

/* faq */
.jp-faq .faq-item{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px; padding:.7rem .85rem; margin:.4rem 0;
}
.jp-faq .faq-item[open]{ background: rgba(255,255,255,0.07); }


.jp-content h2, .jp-content h3, .jp-content p, .jp-content ul,
.jp-content .jp-meta-grid, .jp-content .jp-cta, .jp-content .jp-faq{ clear:none !important; }


.jp-wrap::after{ content:""; display:block; clear:both; }

/* ===== Live Casino & Table Games (standalone styles) ===== */


.live .container.live-wrap{ display:block !important; }


.live-media{
  max-width: clamp(300px, 32vw, 440px);
  margin: .25rem 0 .9rem;
}
.live-img{
  display:block; width:100%; height:auto;
  border-radius:18px; object-fit:contain;
}
@media (min-width: 992px){
  .live-media{
    float:right;                     
    margin: .2rem 0 .9rem 1.75rem;   
    shape-outside: inset(0 round 18px);
    shape-margin: 12px;
  }
}
@media (max-width: 991.98px){
  .live-media{ float:none; margin: 0 auto .75rem; }
}

/* text & lists */
.live .lead{ max-width:70ch; margin-bottom:.6rem; }
.live-points{ list-style:none; padding:0; margin:.35rem 0 .8rem; }
.live-points li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
.live-points i{ margin-top:.15rem; }

/* mini feature grid */
.live-meta-grid{
  display:grid; grid-template-columns:1fr; gap:12px; margin:.5rem 0 .9rem;
}
@media (min-width:768px){ .live-meta-grid{ grid-template-columns: repeat(3,1fr); } }
.mini{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}

/* two-column bullets */
.bullet-2col{
  columns: 2; column-gap: 1.25rem; list-style: disc inside;
  margin: .25rem 0 .75rem;
}
@media (max-width:576px){ .bullet-2col{ columns:1; } }

/* ctas */
.live-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}

/* faq */
.live-faq .faq-item{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px; padding:.7rem .85rem; margin:.4rem 0;
}
.live-faq .faq-item[open]{ background: rgba(255,255,255,0.07); }


.live-content h2, .live-content h3, .live-content p, .live-content ul,
.live-content .live-meta-grid, .live-content .live-cta, .live-content .live-faq{
  clear:none !important;
}


.live-wrap::after{ content:""; display:block; clear:both; }

/* ===== Sportsbook — standalone styles ===== */


.sportsbook .container.sb-wrap{ display:block !important; }


.sb-media{
  max-width: clamp(300px, 32vw, 440px);
  margin: .2rem 0 .9rem;
}
.sb-img{
  display:block; width:100%; height:auto;
  border-radius:18px; object-fit:contain;
}
@media (min-width: 992px){
  .sb-media{
    float:right;
    margin: .25rem 0 .9rem 1.75rem;  
    shape-outside: inset(0 round 18px);
    shape-margin: 12px;
  }
}
@media (max-width: 991.98px){
  .sb-media{ float:none; margin: 0 auto .75rem; }
}

/* text blocks */
.sportsbook .lead{ max-width:70ch; margin-bottom:.6rem; }
.sb-points{ list-style:none; padding:0; margin:.35rem 0 .8rem; }
.sb-points li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
.sb-points i{ margin-top:.15rem; }

/* mini feature grid */
.sb-meta-grid{
  display:grid; grid-template-columns:1fr; gap:12px; margin:.5rem 0 .9rem;
}
@media (min-width:768px){ .sb-meta-grid{ grid-template-columns: repeat(3,1fr); } }
.mini{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}

/* two-column bullets */
.bullet-2col{
  columns: 2; column-gap: 1.25rem; list-style: disc inside;
  margin: .25rem 0 .75rem;
}
@media (max-width:576px){ .bullet-2col{ columns:1; } }

/* CTAs */
.sb-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}

/* FAQ */
.sb-faq .faq-item{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px; padding:.7rem .85rem; margin:.4rem 0;
}
.sb-faq .faq-item[open]{ background: rgba(255,255,255,0.07); }


.sb-content h2, .sb-content h3, .sb-content p, .sb-content ul,
.sb-content .sb-meta-grid, .sb-content .sb-cta, .sb-content .sb-faq{
  clear:none !important;
}


.sb-wrap::after{ content:""; display:block; clear:both; }

/* ===== Login & Registration (standalone styles) ===== */

.account .lead{ max-width: 80ch; }
.acc-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}

/* Grid of quick-start cards */
.acc-grid{
  display:grid; grid-template-columns:1fr; gap:12px; list-style:none; padding:0; margin:.75rem 0 1rem;
}
@media (min-width: 992px){
  .acc-grid{ grid-template-columns: repeat(3, 1fr); }
}
.acc-card{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:1rem 1.1rem;
}
.acc-steps{
  counter-reset: step; list-style:none; padding:0; margin:.4rem 0 .6rem;
}
.acc-steps li{
  position:relative; padding-left:2.1rem; margin:.45rem 0;
}
.acc-steps li::before{
  counter-increment: step; content: counter(step);
  position:absolute; left:0; top:.15rem;
  width:1.4rem; height:1.4rem; line-height:1.4rem; text-align:center;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
}
.acc-points{ list-style:none; padding:0; margin:.35rem 0 .6rem; }
.acc-points li{ display:flex; gap:.5rem; align-items:flex-start; margin:.35rem 0; }
.acc-points i{ margin-top:.15rem; }


.acc-reset{
  display:grid; grid-template-columns:1fr; gap:12px;
  margin-top: 1rem;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:1rem 1.1rem;
}
@media (min-width: 992px){
  .acc-reset{ grid-template-columns: 2fr minmax(280px, 1fr); }
}
.acc-reset .micro{ opacity:.9; }

.acc-mini-grid{
  display:grid; grid-template-columns:1fr; gap:10px; margin-top:.5rem;
}
@media (min-width:768px){
  .acc-mini-grid{ grid-template-columns: repeat(3, 1fr); }
}
.mini{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}

.acc-reset-aside{
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.9rem 1rem;
}


.acc-troubleshoot{
  margin-top: 1rem;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:1rem 1.1rem;
}

/* Header spacing */
.acc-header .section-title{ margin-bottom:.5rem; }

/* ===== Aseneskak Online Casino App (standalone styles) ===== */


.app .container.app-wrap{ display:block !important; }


.app-media{
  max-width: clamp(300px, 34vw, 460px);
  margin: 0 0 .9rem;
}
.app-img{
  display:block; width:100%; height:auto;
  border-radius:18px; object-fit:contain;
}
@media (min-width: 992px){
  .app-media{
    float:right;                         
    margin: .1rem 0 1rem 1.75rem;
    shape-outside: inset(0 round 18px);
    shape-margin: 12px;
  }
}
@media (max-width: 991.98px){
  .app-media{ float:none; margin: 0 auto .75rem; }
}

/* text */
.app .lead{ max-width: 70ch; margin-bottom:.6rem; }

/* USPs with icons */
.app-usp{
  display:grid; grid-template-columns:1fr; gap:10px; margin:.5rem 0 .9rem;
}
@media (min-width:768px){ .app-usp{ grid-template-columns: repeat(3,1fr); } }
.usp{
  display:flex; gap:.7rem; align-items:flex-start;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}
.usp i{ font-size:1.25rem; margin-top:.15rem; }

/* Navigation mini grid */
.app-navgrid{
  display:grid; grid-template-columns:1fr; gap:10px; margin:.5rem 0 .9rem;
}
@media (min-width:768px){ .app-navgrid{ grid-template-columns: repeat(3,1fr); } }
.mini{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:.8rem 1rem;
}

/* store badges */
.app-badges{ display:flex; flex-wrap:wrap; gap:.6rem .9rem; align-items:center; margin:.5rem 0 .9rem; }
.app-badges img{ display:block; height:auto; }

/* how-to cards */
.app-howto{
  display:grid; grid-template-columns:1fr; gap:12px; margin:.4rem 0 .9rem;
}
@media (min-width:992px){ .app-howto{ grid-template-columns: repeat(2,1fr); } }
.howto-card{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding: .9rem 1rem;
}
.steps{ counter-reset: step; list-style:none; padding:0; margin:.35rem 0 .45rem; }
.steps li{
  position:relative; padding-left:2.1rem; margin:.4rem 0;
}
.steps li::before{
  counter-increment: step; content: counter(step);
  position:absolute; left:0; top:.1rem;
  width:1.4rem; height:1.4rem; line-height:1.4rem; text-align:center;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
}
.micro{ opacity:.9; }

/* app bonus card */
.app-bonus{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:1rem 1.1rem;
}
.mini-list{ list-style: disc inside; margin:.35rem 0 .2rem; }

.acc-cta .btn{ margin-right:.75rem; margin-top:.5rem; }
.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}


.app-content h2, .app-content h3, .app-content p, .app-content ul, .app-content .app-usp,
.app-content .app-navgrid, .app-content .app-badges, .app-content .app-howto, .app-content .app-bonus{
  clear:none !important;
}


.app-wrap::after{ content:""; display:block; clear:both; }

/* ===== Payments (standalone styles) ===== */
.pay-tabs{ display:flex; gap:.5rem; margin:.5rem 0 1rem; }
.pay-tab{ cursor:pointer; }
.pay-tab.is-active{ pointer-events:none; }

.table-wrap{ overflow:auto; border-radius:12px; border:1px solid rgba(255,255,255,.08); }
.pay-table{ width:100%; border-collapse:separate; border-spacing:0; }
.pay-table thead th{
  text-align:left; font-weight:700; padding:.75rem .9rem;
  background: rgba(255,255,255,.06);
}
.pay-table tbody td{ padding:.7rem .9rem; border-top:1px solid rgba(255,255,255,.08); }
.pay-table tbody tr:nth-child(odd){ background: rgba(255,255,255,.03); }

.pay-note{ opacity:.9; margin:.5rem 0 1rem; }
.pay-help{ margin-top:1rem; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:.9rem 1rem; }

/* keep buttons consistent with template */
.btn.btn-outline{ border:2px solid currentColor; background:transparent; padding:.8rem 1.25rem; border-radius:14px; display:inline-block; }


.payments .pay-tabs .pay-tab{
  background: transparent;
  color: #111;                         
  border: 2px solid rgba(0,0,0,.55);   
  border-radius: 12px;
  padding: .65rem 1.1rem;
}

.payments .pay-tabs .pay-tab:hover{
  background: rgba(0,0,0,.06);
}

.payments .pay-tabs .pay-tab.is-active{
 
  background: linear-gradient(90deg, #ff7a18, #ff3d77);
  color: #fff;
  border-color: transparent;
}


@media (prefers-color-scheme: dark){
  .payments .pay-tabs .pay-tab{
    color: #fff;
    border-color: rgba(255,255,255,.55);
  }
  .payments .pay-tabs .pay-tab:hover{
    background: rgba(255,255,255,.08);
  }
}

/* ===== Trust, Security & Platform Overview (standalone styles) ===== */
.platform .lead{ max-width: 80ch; }

.platform-grid{
  display:grid; grid-template-columns:1fr; gap:12px;
  list-style:none; padding:0; margin:.75rem 0 1rem;
}
@media (min-width: 992px){
  .platform-grid{ grid-template-columns: repeat(3, 1fr); }
}

.p-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  height: 100%;
  display: flex; flex-direction: column;
}
.p-head{ display:flex; align-items:center; gap:.6rem; margin-bottom:.25rem; }
.p-head i{ font-size:1.25rem; }

.p-points{ list-style: disc inside; margin:.35rem 0 0; opacity:.95; }
.platform-cta .btn{ margin-right:.75rem; margin-top:.5rem; }

.btn.btn-outline{
  border:2px solid currentColor; background:transparent;
  padding:.8rem 1.25rem; border-radius:14px; display:inline-block;
}

/* ===== FAQ (2-column layout, template-friendly) ===== */
.faq .lead{ max-width: 80ch; }

.faq-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: .5rem;
}
@media (min-width: 992px){
  .faq-grid{ grid-template-columns: 1fr 1fr; }
}

.faq-item{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: .8rem 1rem;
}
.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  outline: none;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item[open]{ background: rgba(255,255,255,.07); }
.faq-item p{ margin-top: .45rem; }


/* ===== Casino Footer (trusty, compact, responsive) ===== */
.casino-footer{
  background:#0f1014; color:#fff;
  padding-top: 1.25rem; padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.98rem;
}
.casino-footer a{ color:#fff; opacity:.95; }
.casino-footer a:hover{ opacity:1; text-decoration:underline; }

/* top row */
.casino-footer .f-top{
  display:flex; align-items:center; justify-content:space-between;
  gap: 1rem; margin-bottom: .75rem;
}
.casino-footer .f-logo{ font-size:1.35rem; font-weight:800; }
.casino-footer .f-trust{
  display:flex; flex-wrap:wrap; gap:.6rem 1rem; list-style:none; margin:0; padding:0;
  opacity:.95;
}
.casino-footer .f-trust li{ display:flex; align-items:center; gap:.45rem; }

/* link grid */
.casino-footer .f-grid{
  display:grid; grid-template-columns:1fr 1fr; gap: 12px;
  margin-bottom:.75rem;
}
@media (min-width: 992px){
  .casino-footer .f-grid{ grid-template-columns: repeat(4, 1fr); }
}
.casino-footer .f-col{ background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); border-radius:12px; padding:.75rem .9rem; }
.casino-footer .f-title{ font-weight:800; margin:0 0 .35rem; }
.casino-footer .f-links{ list-style:none; padding:0; margin:0; }
.casino-footer .f-links li{ margin:.25rem 0; }

/* payments strip */
.casino-footer .f-payments{
  display:flex; align-items:center; gap:.75rem; flex-wrap:wrap;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:12px; padding:.6rem .9rem; margin-bottom:.75rem;
}
.casino-footer .f-pay-title{ font-weight:700; margin-right:.25rem; }
.casino-footer .f-pay-list{ display:flex; gap:.9rem 1.1rem; flex-wrap:wrap; list-style:none; padding:0; margin:0; }
.casino-footer .f-pay-list li{ display:inline-flex; align-items:center; gap:.35rem; opacity:.95; }

/* bottom */
.casino-footer .f-bottom{ opacity:.95; }
.casino-footer .f-disclaimer{ font-size:.92rem; margin:0 0 .5rem; line-height:1.45; }
.casino-footer .copyright{ margin:0; font-size:.95rem; }


/* =========================================================
   HERO FINAL FIX — Hobart Casino
========================================================= */

.hero.hero--casino{
  position: relative !important;
  min-height: 780px !important;
  padding: 170px 0 110px !important;
  overflow: hidden !important;
  text-align: left !important;
  background-position: center !important;
  background-size: cover !important;
  isolation: isolate !important;
}

.hero.hero--casino::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background: linear-gradient(90deg,
    rgba(4,8,16,.92) 0%,
    rgba(4,8,16,.86) 34%,
    rgba(4,8,16,.55) 66%,
    rgba(4,8,16,.25) 100%) !important;
  pointer-events:none !important;
}

.hero.hero--casino::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background: radial-gradient(circle at 22% 48%, rgba(255,255,255,.08), transparent 34%) !important;
  pointer-events:none !important;
}

.hero.hero--casino > .container{
  position: relative !important;
  z-index:2 !important;
  display:grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr) !important;
  align-items:center !important;
  gap:44px !important;
  overflow: visible !important;
}

.hero.hero--casino .hero-content{
  position:relative !important;
  z-index:3 !important;
  max-width:690px !important;
  margin:0 !important;
  padding:44px 46px 48px !important;
  border-radius:24px !important;
  border:1px solid rgba(255,255,255,.22) !important;
  background: rgba(5,10,20,.82) !important;
  box-shadow:0 30px 90px rgba(0,0,0,.55) !important;
  backdrop-filter: blur(10px) !important;
}

.hero.hero--casino .hero-kicker{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  margin:0 0 18px !important;
  color:#f7d99a !important;
  font-family:var(--ff-league-spartan) !important;
  font-size:1.65rem !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  text-shadow:0 2px 18px rgba(0,0,0,.75) !important;
}

.hero.hero--casino .hero-kicker::before{
  content:"" !important;
  width:38px !important;
  height:2px !important;
  background:linear-gradient(90deg,#f7d99a,rgba(247,217,154,0)) !important;
}

.hero.hero--casino .hero-title,
.hero.hero--casino h1.hero-title,
.hero.hero--casino .h1.hero-title{
  margin:0 0 24px !important;
  color:#fff !important;
  font-size:clamp(4.8rem,7vw,8.4rem) !important;
  font-weight:700 !important;
  line-height:.98 !important;
  letter-spacing:-.045em !important;
  text-shadow:0 8px 34px rgba(0,0,0,.85) !important;
}

.hero.hero--casino .hero-title .span{
  display:inline-block !important;
  color:#f2b84b !important;
  text-shadow:0 4px 28px rgba(242,184,75,.45) !important;
}

.hero.hero--casino .hero-subtitle{
  position:relative !important;
  max-width:610px !important;
  margin:0 0 30px !important;
  padding-left:22px !important;
  color:rgba(255,255,255,.94) !important;
  font-size:1.75rem !important;
  font-weight:500 !important;
  line-height:1.85 !important;
  text-shadow:0 4px 22px rgba(0,0,0,.9) !important;
}

.hero.hero--casino .hero-subtitle::before{
  content:"" !important;
  position:absolute !important;
  top:8px !important;
  left:0 !important;
  width:3px !important;
  height:calc(100% - 16px) !important;
  border-radius:20px !important;
  background:linear-gradient(180deg,#f2b84b,#ff4d5f) !important;
}

.hero.hero--casino .hero-actions{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:16px !important;
}

.hero.hero--casino .hero-actions .btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:168px !important;
  max-width:none !important;
  margin:0 !important;
  text-align:center !important;
}

.hero.hero--casino .btn-primary{
  color:#fff !important;
  background-image:linear-gradient(135deg,#f2b84b 0%,#e56b2f 52%,#d83f55 100%) !important;
  background-size:160% !important;
  border:1px solid rgba(255,255,255,.22) !important;
  box-shadow:0 16px 34px rgba(216,63,85,.32) !important;
}

.hero.hero--casino .btn-primary:hover,
.hero.hero--casino .btn-primary:focus{
  background-position:right center !important;
  transform:translateY(-2px) !important;
}

.hero.hero--casino .hero-outline{
  color:#fff !important;
  border:2px solid rgba(255,255,255,.9) !important;
  background:rgba(255,255,255,.06) !important;
}

.hero.hero--casino .hero-outline:hover,
.hero.hero--casino .hero-outline:focus{
  color:#111827 !important;
  background:#fff !important;
  border-color:#fff !important;
  transform:translateY(-2px) !important;
}

.hero.hero--casino .hero-banner{
  position:relative !important;
  z-index:2 !important;
  max-width:650px !important;
  margin:0 0 0 auto !important;
  animation:none !important;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.36)) !important;
}

.hero.hero--casino .hero-banner img{
  display:block !important;
  width:100% !important;
  height:auto !important;
}

@media(max-width:991.98px){
  .hero.hero--casino{
    min-height:auto !important;
    padding:135px 0 78px !important;
    text-align:center !important;
  }
  .hero.hero--casino > .container{
    grid-template-columns:1fr !important;
    gap:32px !important;
  }
  .hero.hero--casino .hero-content{
    max-width:720px !important;
    margin:0 auto !important;
    padding:36px 30px 40px !important;
  }
  .hero.hero--casino .hero-kicker{
    justify-content:center !important;
  }
  .hero.hero--casino .hero-kicker::before,
  .hero.hero--casino .hero-subtitle::before{
    display:none !important;
  }
  .hero.hero--casino .hero-subtitle{
    padding-left:0 !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .hero.hero--casino .hero-actions{
    justify-content:center !important;
  }
  .hero.hero--casino .hero-banner{
    max-width:520px !important;
    margin:0 auto !important;
  }
}

@media(max-width:575.98px){
  .hero.hero--casino{
    padding:115px 0 62px !important;
  }
  .hero.hero--casino .hero-content{
    padding:28px 20px 32px !important;
    border-radius:18px !important;
  }
  .hero.hero--casino .hero-kicker{
    font-size:1.25rem !important;
    letter-spacing:.06em !important;
  }
  .hero.hero--casino .hero-title{
    font-size:4.2rem !important;
  }
  .hero.hero--casino .hero-subtitle{
    font-size:1.45rem !important;
    line-height:1.75 !important;
  }
  .hero.hero--casino .hero-actions{
    flex-direction:column !important;
    align-items:stretch !important;
  }
  .hero.hero--casino .hero-actions .btn{
    width:100% !important;
  }
}

/* Hero roulette animation */
.section.hero .hero-banner {
  animation: heroRouletteSpin 24s linear infinite !important;
  transform-origin: center center !important;
}

.section.hero .hero-banner img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

@keyframes heroRouletteSpin {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* =========================================================
   ABOUT SECTION — Premium Universal Casino Block
========================================================= */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 184, 75, 0.16), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f7f3ea 100%);
}

.about-shell {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.about-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 169, 107, 0.3);
  border-radius: 24px;
  pointer-events: none;
}

.about-line {
  position: absolute;
  top: 0;
  left: 42px;
  right: 42px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 107, 0.7),
    rgba(242, 184, 75, 0.85),
    rgba(200, 169, 107, 0.7),
    transparent
  );
}

.about-decor {
  position: absolute;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.about-decor-top {
  width: 190px;
  height: 190px;
  top: -92px;
  right: -74px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), rgba(242, 184, 75, 0));
}

.about-decor-bottom {
  width: 260px;
  height: 260px;
  left: -140px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0));
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 46px;
}

/* LEFT COLUMN */

.about-media {
  position: relative;
  align-self: start;
  padding-top: 0;
}

.about-image-frame {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.86), rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, #ffffff, #f2efe8);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 1px solid rgba(200, 169, 107, 0.34);
  z-index: -1;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
}

.about-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 17px 19px;
  border-radius: 18px;
  background: rgba(10, 15, 28, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.about-card-label {
  display: block;
  margin-bottom: 4px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-card strong {
  display: block;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  line-height: 1.2;
}

.about-info-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.about-info-item {
  position: relative;
  padding: 16px 18px 16px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.about-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f2b84b, #d83f55);
}

.about-info-item span {
  display: block;
  margin-bottom: 3px;
  color: #b88224;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-info-item strong {
  display: block;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 1.95rem;
  line-height: 1.2;
}

.about-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.about-note i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.65rem;
}

.about-note p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.38rem;
  line-height: 1.6;
}

/* RIGHT COLUMN */

.about-content {
  position: relative;
  padding-top: 8px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #b88224;
  font-family: var(--ff-league-spartan);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #c8a96b, rgba(200, 169, 107, 0));
}

.about-title {
  margin-bottom: 20px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: left;
}

.about-title span {
  display: inline;
  color: #c88a22;
}

.about-lead {
  margin-bottom: 18px;
  color: #1e293b;
  font-size: 1.82rem;
  font-weight: 500;
  line-height: 1.72;
}

.about-text {
  margin-bottom: 24px;
  color: #475569;
  font-size: 1.58rem;
  line-height: 1.8;
}

.about-highlight {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
}

.about-highlight-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2.2rem;
}

.about-highlight h3 {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 2.2rem;
}

.about-highlight p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.45rem;
  line-height: 1.7;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.about-feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  padding: 17px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.about-feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(200, 169, 107, 0.14);
  color: #b88224;
  font-size: 1.8rem;
}

.about-feature-card h3 {
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 1.9rem;
}

.about-feature-card p {
  color: #64748b;
  font-size: 1.38rem;
  line-height: 1.6;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.about-actions .btn {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-outline {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.72);
}

.about-outline:hover,
.about-outline:focus {
  color: #ffffff;
  background: #0f172a;
  border-color: #0f172a;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
  .about-shell {
    padding: 36px;
  }

  .about-grid {
    gap: 36px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .about-shell {
    padding: 34px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-media {
    max-width: 620px;
    margin-inline: auto;
  }

  .about-content {
    padding-top: 0;
  }

  .about-title,
  .about-lead,
  .about-text {
    text-align: left;
  }

  .about-image {
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  .about-shell {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .about-shell::before {
    inset: 10px;
    border-radius: 18px;
  }

  .about-line {
    left: 24px;
    right: 24px;
  }

  .about-title {
    font-size: 3.15rem;
  }

  .about-lead {
    font-size: 1.58rem;
  }

  .about-text {
    font-size: 1.45rem;
  }

  .about-highlight {
    grid-template-columns: 1fr;
  }

  .about-feature-card {
    grid-template-columns: 1fr;
  }

  .about-card {
    position: static;
    margin-top: 14px;
  }

  .about-info-panel {
    margin-top: 16px;
  }

  .about-note {
    grid-template-columns: 1fr;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .btn {
    width: 100%;
    max-width: none;
  }
}

/* =========================================================
   GAMES SECTION — Premium Universal Casino Grid
========================================================= */

.games-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 184, 75, 0.14), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(216, 63, 85, 0.12), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #f8fafc 48%, #ffffff 100%);
}

.games-section::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 184, 75, 0.7),
    transparent
  );
}

.games-header {
  position: relative;
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
  color: #ffffff;
}

.games-header .section-kicker {
  justify-content: center;
  color: #f2b84b;
}

.games-header .section-kicker::before {
  background: linear-gradient(90deg, rgba(242, 184, 75, 0), #f2b84b);
}

.games-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3.4rem, 4vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.games-title span {
  display: inline;
  color: #f2b84b;
}

.games-lead {
  max-width: 82ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.72rem;
  line-height: 1.8;
}

.games-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.games-showcase::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(200, 169, 107, 0.28);
  pointer-events: none;
}

.games-intro-card {
  position: sticky;
  top: 110px;
  z-index: 1;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.games-intro-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.games-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.games-intro-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.games-intro-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.52rem;
  line-height: 1.75;
}

.games-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.games-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.42rem;
  line-height: 1.55;
}

.games-points i {
  margin-top: 3px;
  color: #f2b84b;
}

.games-intro-card .btn {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Game grid */

.grid-games {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.game-card {
  position: relative;
  height: 100%;
}

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}

.game-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 38%, rgba(15, 23, 42, 0.86) 100%);
  opacity: 0.95;
  pointer-events: none;
}

.game-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.game-card:hover .game-img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.03);
}

.game-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #ffffff;
}

.game-caption span {
  display: block;
  margin-bottom: 3px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-caption strong {
  display: block;
  font-family: var(--ff-league-spartan);
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.12;
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    radial-gradient(circle at center, rgba(242, 184, 75, 0.16), transparent 42%),
    rgba(15, 23, 42, 0.74);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay,
.game-card:focus-within .game-overlay {
  opacity: 1;
}

.game-overlay .btn {
  margin: 0;
  min-width: 126px;
  justify-content: center;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .games-showcase {
    grid-template-columns: 1fr;
  }

  .games-intro-card {
    position: relative;
    top: auto;
  }

  .grid-games {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .games-showcase {
    padding: 22px;
  }

  .grid-games {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-intro-card h3 {
    font-size: 2.6rem;
  }
}

@media (max-width: 767.98px) {
  .grid-games {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-lead {
    font-size: 1.55rem;
  }
}

@media (max-width: 575.98px) {
  .games-showcase {
    padding: 16px;
    border-radius: 24px;
  }

  .games-showcase::before {
    inset: 9px;
    border-radius: 18px;
  }

  .games-intro-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .games-intro-card h3 {
    font-size: 2.35rem;
  }

  .grid-games {
    gap: 10px;
  }

  .game-thumb {
    border-radius: 16px;
  }

  .game-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .game-caption strong {
    font-size: 1.35rem;
  }

  .game-caption span {
    font-size: 0.95rem;
  }

  .game-overlay .btn {
    min-width: auto;
    padding-inline: 20px;
  }
}

/* =========================================================
   ADVANTAGES SECTION — Premium Universal Benefits Block
========================================================= */

.advantages-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 184, 75, 0.14), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #f7f3ea 100%);
}

.advantages-section::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.25);
}

.advantages-section::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.advantages-header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.advantages-header .section-kicker {
  justify-content: center;
}

.advantages-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.advantages-title span {
  display: inline;
  color: #c88a22;
}

.advantages-lead {
  max-width: 82ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.7rem;
  line-height: 1.8;
}

.advantages-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.advantages-main-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

.advantages-main-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.32), transparent 68%);
}

.advantages-main-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.advantages-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advantages-main-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.advantages-main-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.55rem;
  line-height: 1.75;
}

.advantages-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}

.advantages-stats div {
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.advantages-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 2.7rem;
  line-height: 1;
}

.advantages-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  line-height: 1.25;
}

.advantages-main-card .btn {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* cards */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.advantage-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.13);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.advantage-card h3 {
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 2.05rem;
  line-height: 1.15;
}

.advantage-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.65;
}

/* bottom strip */

.advantages-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.advantages-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advantages-strip i {
  color: #f2b84b;
  font-size: 1.7rem;
}

.advantages-strip span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--ff-league-spartan);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* responsive */

@media (max-width: 1199.98px) {
  .advantages-layout {
    grid-template-columns: 1fr;
  }

  .advantages-main-card {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-main-card h3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 575.98px) {
  .advantages-header {
    margin-bottom: 30px;
  }

  .advantages-title {
    font-size: 3.1rem;
  }

  .advantages-lead {
    font-size: 1.5rem;
  }

  .advantages-main-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .advantages-main-card::after {
    inset: 10px;
    border-radius: 18px;
  }

  .advantages-main-card h3 {
    font-size: 2.35rem;
  }

  .advantages-stats {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .advantages-strip {
    grid-template-columns: 1fr;
  }

  .advantages-strip div {
    justify-content: flex-start;
  }
}

/* =========================================================
   GAMING EXPERIENCE SECTION — Universal Detailed Block
========================================================= */

.gaming-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 184, 75, 0.14), transparent 32%),
    radial-gradient(circle at 90% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #f7f3ea 100%);
}

.gaming-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.25);
}

.gaming-section::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: 160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.gaming-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.gaming-header .section-kicker {
  justify-content: center;
}

.gaming-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.gaming-title span {
  display: inline;
  color: #c88a22;
}

.gaming-lead {
  max-width: 88ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* intro card */

.gaming-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.gaming-hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.gaming-hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.gaming-hero-content,
.gaming-hero-stats {
  position: relative;
  z-index: 1;
}

.gaming-badge,
.gaming-panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gaming-hero-content h3 {
  max-width: 780px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gaming-hero-content p {
  max-width: 82ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.gaming-hero-stats {
  display: grid;
  gap: 12px;
}

.gaming-hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gaming-hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 3.2rem;
  line-height: 1;
}

.gaming-hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* land-based layout */

.gaming-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.gaming-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.gaming-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.gaming-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.gaming-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gaming-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.gaming-panel .btn {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.gaming-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gaming-info-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gaming-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gaming-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.gaming-info-card:hover::before {
  opacity: 1;
}

.gaming-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.gaming-info-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.gaming-info-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

/* machine strip */

.machine-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.machine-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.machine-copy p {
  margin-bottom: 12px;
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.machine-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.machine-points div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.machine-points i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.machine-points strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  line-height: 1.1;
}

.machine-points span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* online gaming */

.online-gaming-block {
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.online-gaming-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.online-gaming-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.online-gaming-header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 28px;
}

.online-gaming-header .section-kicker {
  color: #f2b84b;
}

.online-gaming-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.online-gaming-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.online-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.online-category-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.online-category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.online-category-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.online-category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2rem;
}

.online-category-head span {
  display: block;
  margin-bottom: 2px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.online-category-head h4 {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.25rem;
  line-height: 1.1;
}

.online-category-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1.65;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-list li {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.18rem;
  line-height: 1.2;
}

/* comparison */

.gaming-comparison {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.comparison-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.comparison-card-accent {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b88224;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card-accent span {
  color: #f2b84b;
}

.comparison-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.comparison-card-accent h3 {
  color: #ffffff;
}

.comparison-card p {
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1.7;
}

.comparison-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

/* responsive */

@media (max-width: 1199.98px) {
  .gaming-layout,
  .gaming-hero-card,
  .machine-strip {
    grid-template-columns: 1fr;
  }

  .online-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .machine-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .gaming-card-grid {
    grid-template-columns: 1fr;
  }

  .machine-points {
    grid-template-columns: 1fr;
  }

  .gaming-comparison {
    grid-template-columns: 1fr;
  }

  .online-gaming-block {
    padding: 28px 22px;
  }

  .online-gaming-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .online-category-grid {
    grid-template-columns: 1fr;
  }

  .gaming-hero-card,
  .machine-strip {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .gaming-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .gaming-panel h3,
  .machine-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .gaming-title {
    font-size: 3.1rem;
  }

  .gaming-lead {
    font-size: 1.5rem;
  }

  .gaming-hero-content h3,
  .online-gaming-header h3 {
    font-size: 2.65rem;
  }

  .gaming-info-card,
  .online-category-card,
  .comparison-card {
    padding: 20px;
  }

  .online-category-head {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SLOTS SECTION — Premium Universal Pokies Block
========================================================= */

.slots-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 44%, #f7f3ea 100%);
}

.slots-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.slots-section::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.slots-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.slots-header .section-kicker {
  justify-content: center;
}

.slots-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.slots-title span {
  display: inline;
  color: #c88a22;
}

.slots-lead {
  max-width: 90ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.slots-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.slots-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.slots-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.slots-hero-content,
.slots-hero-stats {
  position: relative;
  z-index: 1;
}

.slots-badge,
.slots-panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slots-hero-content h3 {
  max-width: 800px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.slots-hero-content p {
  max-width: 84ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.slots-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.slots-actions .btn {
  margin: 0;
}

.slots-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.slots-outline:hover,
.slots-outline:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

.slots-hero-stats {
  display: grid;
  gap: 12px;
}

.slots-hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slots-hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 3.2rem;
  line-height: 1;
}

.slots-hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* land-based */

.slots-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.slots-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.slots-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.slots-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.slots-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.slots-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.slots-check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.slots-check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.42rem;
  line-height: 1.55;
}

.slots-check-list i {
  margin-top: 3px;
  color: #f2b84b;
}

.slots-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.slots-info-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slots-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slots-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.slots-info-card:hover::before {
  opacity: 1;
}

.slots-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.slots-info-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.slots-info-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

/* online slots */

.online-slots-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.online-slots-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.online-slots-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.online-slots-header {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin-bottom: 28px;
}

.online-slots-header .section-kicker {
  color: #f2b84b;
}

.online-slots-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.online-slots-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.slots-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.slots-category-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.slots-category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.slots-category-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.slots-category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2rem;
}

.slots-category-head span {
  display: block;
  margin-bottom: 2px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slots-category-head h4 {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.25rem;
  line-height: 1.1;
}

.slots-category-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1.65;
}

.slots-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slots-tag-list li {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.18rem;
  line-height: 1.2;
}

/* slot types */

.slot-types-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.slot-types-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.slot-types-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.slot-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.slot-type-card {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.slot-type-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.slot-type-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.slot-type-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  line-height: 1.62;
}

/* features */

.slot-feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.slot-feature-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.slot-feature-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.slot-feature-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.05rem;
  line-height: 1.12;
}

.slot-feature-card p {
  color: #64748b;
  font-size: 1.42rem;
  line-height: 1.64;
}

/* SEO text */

.slots-seo-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.slots-seo-block > div {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.slots-seo-block > div:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
}

.slots-seo-block h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.slots-seo-block p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.slots-seo-block p:last-child {
  margin-bottom: 0;
}

/* responsive */

@media (max-width: 1199.98px) {
  .slots-hero,
  .slots-layout,
  .slot-types-block {
    grid-template-columns: 1fr;
  }

  .slots-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slot-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .slots-card-grid,
  .slot-types-grid,
  .slots-seo-block {
    grid-template-columns: 1fr;
  }

  .online-slots-block {
    padding: 28px 22px;
  }

  .online-slots-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .slots-category-grid,
  .slot-feature-strip {
    grid-template-columns: 1fr;
  }

  .slots-hero,
  .slot-types-block {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .slots-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .slots-panel h3,
  .slot-types-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .slots-title {
    font-size: 3.1rem;
  }

  .slots-lead {
    font-size: 1.5rem;
  }

  .slots-hero-content h3,
  .online-slots-header h3 {
    font-size: 2.65rem;
  }

  .slots-info-card,
  .slots-category-card,
  .slot-type-card,
  .slot-feature-card,
  .slots-seo-block > div {
    padding: 20px;
  }

  .slots-category-head {
    grid-template-columns: 1fr;
  }

  .slots-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slots-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* =========================================================
   TABLE GAMES & LIVE CASINO SECTION — Premium Universal Block
========================================================= */

.table-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 90% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.table-section::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.table-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.table-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.table-header .section-kicker {
  justify-content: center;
}

.table-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.table-title span {
  display: inline;
  color: #c88a22;
}

.table-lead {
  max-width: 90ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.table-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.table-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.table-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.table-hero-content,
.table-hero-points {
  position: relative;
  z-index: 1;
}

.table-badge,
.table-panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.table-hero-content p {
  max-width: 84ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.table-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.table-actions .btn {
  margin: 0;
}

.table-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.table-outline:hover,
.table-outline:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

.table-hero-points {
  display: grid;
  gap: 12px;
}

.table-hero-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-hero-points i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.9rem;
}

.table-hero-points strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1;
}

.table-hero-points span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* land-based */

.table-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.table-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.table-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.table-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.table-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.table-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.table-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.table-info-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.table-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.table-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.table-info-card:hover::before {
  opacity: 1;
}

.table-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.table-info-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.2rem;
  line-height: 1.12;
}

.table-info-card p {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 1.43rem;
  line-height: 1.66;
}

.table-info-card p:last-child {
  margin-bottom: 0;
}

/* feature strip */

.table-feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.table-feature-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.table-feature-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.table-feature-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.05rem;
  line-height: 1.12;
}

.table-feature-card p {
  color: #64748b;
  font-size: 1.42rem;
  line-height: 1.64;
}

/* live casino */

.live-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.live-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.live-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.live-header {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin-bottom: 28px;
}

.live-header .section-kicker {
  color: #f2b84b;
}

.live-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.live-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.live-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.live-category-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.live-category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.live-category-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.live-category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2rem;
}

.live-category-head span {
  display: block;
  margin-bottom: 2px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-category-head h4 {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.25rem;
  line-height: 1.1;
}

.live-category-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1.65;
}

.live-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.live-tag-list li {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.18rem;
  line-height: 1.2;
}

/* live detail */

.live-detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.live-detail-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.live-detail-card-accent {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
}

.live-detail-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b88224;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-detail-card-accent span {
  color: #f2b84b;
}

.live-detail-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.live-detail-card-accent h3 {
  color: #ffffff;
}

.live-detail-card p {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1.7;
}

.live-detail-card p:last-child {
  margin-bottom: 0;
}

.live-detail-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

/* SEO text */

.table-seo-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.table-seo-block > div {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.table-seo-block > div:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
}

.table-seo-block h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.table-seo-block p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.table-seo-block p:last-child {
  margin-bottom: 0;
}

/* responsive */

@media (max-width: 1199.98px) {
  .table-hero,
  .table-layout {
    grid-template-columns: 1fr;
  }

  .live-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .table-card-grid,
  .live-detail-layout,
  .table-seo-block {
    grid-template-columns: 1fr;
  }

  .live-block {
    padding: 28px 22px;
  }

  .live-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .live-category-grid,
  .table-feature-strip {
    grid-template-columns: 1fr;
  }

  .table-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .table-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .table-panel h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .table-title {
    font-size: 3.1rem;
  }

  .table-lead {
    font-size: 1.5rem;
  }

  .table-hero-content h3,
  .live-header h3 {
    font-size: 2.65rem;
  }

  .table-info-card,
  .table-feature-card,
  .live-category-card,
  .live-detail-card,
  .table-seo-block > div {
    padding: 20px;
  }

  .live-category-head {
    grid-template-columns: 1fr;
  }

  .table-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .table-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* =========================================================
   CTA BANNER — Compact Premium Parallax Block
========================================================= */

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-image: var(--cta-bg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  color: #ffffff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 18, 0.9) 0%,
      rgba(5, 10, 18, 0.76) 45%,
      rgba(5, 10, 18, 0.42) 100%
    );
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 184, 75, 0.18), transparent 34%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  max-width: 760px;
  padding: 30px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(7px);
  overflow: hidden;
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 18px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.cta-content::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-subtitle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: left;
}

.cta-subtitle::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #f2b84b, rgba(242, 184, 75, 0));
}

.cta-title {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 12px;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 3.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-align: left;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.cta-title span {
  display: inline;
  color: #f2b84b;
}

.cta-text {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.5rem;
  line-height: 1.65;
  text-align: left;
}

.cta-features {
  display: none;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions .btn {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-section .btn-primary {
  color: #ffffff;
  background-image: linear-gradient(135deg, #f2b84b 0%, #e56b2f 52%, #d83f55 100%);
  background-size: 160%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(216, 63, 85, 0.24);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus {
  background-position: right center;
  transform: translateY(-2px);
}

.cta-section .btn-outline-white {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.cta-section .btn-outline-white:hover,
.cta-section .btn-outline-white:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 991.98px) {
  .cta-section {
    min-height: auto;
    padding-block: 70px;
    background-attachment: scroll !important;
  }

  .cta-content {
    max-width: 100%;
    padding: 28px 26px;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding-block: 56px;
  }

  .cta-content {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .cta-title {
    font-size: 2.9rem;
  }

  .cta-text {
    font-size: 1.42rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: none;
  }
}

/* =========================================================
   REWARDS / BONUSES / LOYALTY SECTION — Premium Universal Block
========================================================= */

.rewards-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.rewards-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.rewards-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.rewards-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.rewards-header .section-kicker {
  justify-content: center;
}

.rewards-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.rewards-title span {
  display: inline;
  color: #c88a22;
}

.rewards-lead {
  max-width: 90ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.rewards-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.rewards-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.rewards-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.rewards-hero-content,
.rewards-hero-stats {
  position: relative;
  z-index: 1;
}

.rewards-badge,
.rewards-panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rewards-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rewards-hero-content p {
  max-width: 84ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.rewards-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.rewards-actions .btn {
  margin: 0;
}

.rewards-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.rewards-outline:hover,
.rewards-outline:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

.rewards-hero-stats {
  display: grid;
  gap: 12px;
}

.rewards-hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rewards-hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 3rem;
  line-height: 1;
}

.rewards-hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* land-based layout */

.rewards-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.rewards-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.rewards-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.rewards-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.rewards-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rewards-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.rewards-check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rewards-check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.42rem;
  line-height: 1.55;
}

.rewards-check-list i {
  margin-top: 3px;
  color: #f2b84b;
}

.rewards-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rewards-info-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rewards-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rewards-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.rewards-info-card:hover::before {
  opacity: 1;
}

.rewards-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.rewards-info-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.rewards-info-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

/* venue promos */

.venue-promos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.venue-promos-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.venue-promos-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.venue-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.venue-promo-card {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.venue-promo-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.85rem;
}

.venue-promo-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.venue-promo-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  line-height: 1.62;
}

/* online rewards */

.online-rewards-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.online-rewards-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.online-rewards-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.online-rewards-header {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-bottom: 28px;
}

.online-rewards-header .section-kicker {
  color: #f2b84b;
}

.online-rewards-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.online-rewards-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.online-bonus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.online-bonus-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.online-bonus-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.42), transparent 68%);
}

.bonus-card-red::before {
  background: radial-gradient(circle, rgba(216, 63, 85, 0.45), transparent 68%);
}

.bonus-card-green::before {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.38), transparent 68%);
}

.bonus-card-blue::before {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.38), transparent 68%);
}

.bonus-card-ruby::before {
  background: radial-gradient(circle, rgba(244, 63, 94, 0.38), transparent 68%);
}

.online-bonus-card span,
.highroller-card span,
.recurring-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.online-bonus-card h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.45rem;
  line-height: 1.1;
}

.online-bonus-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.38rem;
  line-height: 1.65;
}

.online-bonus-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.online-bonus-card a:hover {
  background: #ffffff;
  color: #0f172a;
}

/* highroller */

.highroller-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.highroller-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.highroller-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.highroller-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.highroller-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.highroller-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 70%);
}

.highroller-card h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.highroller-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.38rem;
  line-height: 1.64;
}

/* recurring */

.recurring-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.recurring-header {
  max-width: 900px;
  margin-bottom: 24px;
}

.recurring-header h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.recurring-header p {
  color: #475569;
  font-size: 1.58rem;
  line-height: 1.76;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recurring-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.recurring-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.recurring-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.05rem;
  line-height: 1.12;
}

.recurring-card p {
  color: #64748b;
  font-size: 1.42rem;
  line-height: 1.64;
}

/* terms */

.bonus-terms-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
}

.bonus-terms-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.bonus-terms-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-terms-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.bonus-terms-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.bonus-terms-card p:last-child {
  margin-bottom: 0;
}

.bonus-terms-list {
  display: grid;
  gap: 12px;
}

.bonus-terms-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.bonus-terms-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.bonus-terms-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.bonus-terms-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* responsive */

@media (max-width: 1199.98px) {
  .rewards-hero,
  .rewards-layout,
  .venue-promos,
  .highroller-block,
  .bonus-terms-block {
    grid-template-columns: 1fr;
  }

  .online-bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-promo-grid,
  .recurring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .rewards-card-grid,
  .highroller-grid {
    grid-template-columns: 1fr;
  }

  .online-rewards-block {
    padding: 28px 22px;
  }

  .online-rewards-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .online-bonus-grid,
  .venue-promo-grid,
  .recurring-grid {
    grid-template-columns: 1fr;
  }

  .rewards-hero,
  .venue-promos,
  .highroller-block {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .rewards-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .rewards-panel h3,
  .venue-promos-copy h3,
  .highroller-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .rewards-title {
    font-size: 3.1rem;
  }

  .rewards-lead {
    font-size: 1.5rem;
  }

  .rewards-hero-content h3,
  .online-rewards-header h3,
  .recurring-header h3 {
    font-size: 2.65rem;
  }

  .rewards-info-card,
  .venue-promo-card,
  .online-bonus-card,
  .highroller-card,
  .recurring-card,
  .bonus-terms-card,
  .bonus-terms-list div {
    padding: 20px;
  }

  .online-bonus-card {
    min-height: auto;
  }

  .rewards-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rewards-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* =========================================================
   VISITOR INFORMATION SECTION — Premium Universal Guide
========================================================= */

.visitor-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.visitor-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.visitor-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.visitor-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.visitor-header .section-kicker {
  justify-content: center;
}

.visitor-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.visitor-title span {
  display: inline;
  color: #c88a22;
}

.visitor-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.visitor-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.visitor-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.visitor-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.visitor-hero-content,
.visitor-quick-card {
  position: relative;
  z-index: 1;
}

.visitor-badge,
.visitor-panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.visitor-hero-content p {
  max-width: 84ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.visitor-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.visitor-actions .btn {
  margin: 0;
}

.visitor-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.visitor-outline:hover,
.visitor-outline:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

.visitor-quick-card {
  display: grid;
  gap: 12px;
}

.visitor-quick-card div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-quick-card span {
  display: block;
  margin-bottom: 5px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visitor-quick-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.15;
}

/* practical info */

.visitor-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.visitor-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.visitor-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.visitor-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.visitor-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.visitor-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.visitor-check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.visitor-check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.42rem;
  line-height: 1.55;
}

.visitor-check-list i {
  margin-top: 3px;
  color: #f2b84b;
}

.visitor-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.visitor-info-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visitor-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.visitor-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.visitor-info-card:hover::before {
  opacity: 1;
}

.visitor-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.visitor-info-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.visitor-info-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

/* services */

.visitor-services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.visitor-services-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.visitor-services-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.visitor-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.visitor-service-card {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.visitor-service-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.85rem;
}

.visitor-service-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.visitor-service-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  line-height: 1.62;
}

/* gaming guide */

.visitor-gaming-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.visitor-gaming-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.visitor-gaming-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.visitor-gaming-header {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-bottom: 28px;
}

.visitor-gaming-header .section-kicker {
  color: #f2b84b;
}

.visitor-gaming-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.visitor-gaming-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.visitor-game-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.visitor-game-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.visitor-game-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.visitor-game-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.visitor-game-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2rem;
}

.visitor-game-head span {
  display: block;
  margin-bottom: 2px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-game-head h4 {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.1;
}

.visitor-game-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1.65;
}

/* rules */

.visitor-rules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
  margin-bottom: 34px;
}

.visitor-rules-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.visitor-rules-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-rules-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.visitor-rules-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.visitor-rules-card p:last-child {
  margin-bottom: 0;
}

.visitor-rules-list {
  display: grid;
  gap: 12px;
}

.visitor-rules-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.visitor-rules-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.visitor-rules-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.visitor-rules-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* FAQ */

.visitor-faq-block {
  position: relative;
  z-index: 1;
}

.visitor-faq-header {
  max-width: 820px;
  margin-bottom: 24px;
}

.visitor-faq-header h3 {
  color: #0f172a;
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.visitor-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.visitor-faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.visitor-faq-item summary {
  cursor: pointer;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

.visitor-faq-item summary::-webkit-details-marker {
  display: none;
}

.visitor-faq-item summary::after {
  content: "+";
  float: right;
  color: #c88a22;
  font-size: 2.2rem;
  line-height: 1;
}

.visitor-faq-item[open] summary::after {
  content: "–";
}

.visitor-faq-item p {
  margin-top: 12px;
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.65;
}

/* responsive */

@media (max-width: 1199.98px) {
  .visitor-hero,
  .visitor-layout,
  .visitor-services,
  .visitor-rules {
    grid-template-columns: 1fr;
  }

  .visitor-service-grid,
  .visitor-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .visitor-info-grid,
  .visitor-faq-grid {
    grid-template-columns: 1fr;
  }

  .visitor-gaming-block {
    padding: 28px 22px;
  }

  .visitor-gaming-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .visitor-service-grid,
  .visitor-game-grid {
    grid-template-columns: 1fr;
  }

  .visitor-hero,
  .visitor-services {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .visitor-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .visitor-panel h3,
  .visitor-services-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .visitor-title {
    font-size: 3.1rem;
  }

  .visitor-lead {
    font-size: 1.5rem;
  }

  .visitor-hero-content h3,
  .visitor-gaming-header h3,
  .visitor-faq-header h3 {
    font-size: 2.65rem;
  }

  .visitor-info-card,
  .visitor-service-card,
  .visitor-game-card,
  .visitor-rules-card,
  .visitor-rules-list div,
  .visitor-faq-item {
    padding: 20px;
  }

  .visitor-game-head {
    grid-template-columns: 1fr;
  }

  .visitor-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visitor-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* =========================================================
   LOGIN & REGISTRATION SECTION — Premium Universal Account Block
========================================================= */

.account-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.account-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.account-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.account-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.account-header .section-kicker {
  justify-content: center;
}

.account-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.account-title span {
  display: inline;
  color: #c88a22;
}

.account-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.account-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.account-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.account-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.account-hero-content,
.account-quick-card {
  position: relative;
  z-index: 1;
}

.account-badge,
.account-panel-label,
.password-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.account-hero-content p {
  max-width: 84ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.account-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.account-actions .btn {
  margin: 0;
}

.account-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.account-outline:hover,
.account-outline:focus {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
}

.account-quick-card {
  display: grid;
  gap: 12px;
}

.account-quick-card div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-quick-card span {
  display: block;
  margin-bottom: 5px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.account-quick-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.15;
}

/* registration layout */

.account-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.account-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
}

.account-panel-dark {
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.account-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.account-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.account-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.account-panel .btn {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.account-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.account-step-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.account-step-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.account-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.account-step-card:hover::before {
  opacity: 1;
}

.account-step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #c88a22;
  font-family: var(--ff-league-spartan);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.account-step-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.15rem;
  line-height: 1.12;
}

.account-step-card p {
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

/* login block */

.login-block {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.login-block::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.login-block::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 70%);
}

.login-header {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-bottom: 28px;
}

.login-header .section-kicker {
  color: #f2b84b;
}

.login-header h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(3rem, 3.4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.login-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.76;
}

.login-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.login-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.login-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 2rem;
}

.login-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.1rem;
  line-height: 1.12;
}

.login-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1.65;
}

/* password block */

.password-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 28px;
  margin-bottom: 34px;
}

.password-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
  overflow: hidden;
}

.password-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.password-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.password-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.76;
}

.password-steps {
  position: relative;
  z-index: 1;
  counter-reset: password-step;
  display: grid;
  gap: 12px;
}

.password-steps li {
  position: relative;
  padding: 14px 16px 14px 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.42rem;
  line-height: 1.55;
}

.password-steps li::before {
  counter-increment: password-step;
  content: counter(password-step);
  position: absolute;
  left: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-family: var(--ff-league-spartan);
  font-weight: 700;
  font-size: 1.25rem;
}

.password-help-grid {
  display: grid;
  gap: 14px;
}

.password-help-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.password-help-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 1.85rem;
}

.password-help-card h4 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.password-help-card p {
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1.64;
}

/* support */

.account-support {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
  margin-bottom: 34px;
}

.account-support-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.account-support-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-support-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.account-support-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.account-support-card p:last-child {
  margin-bottom: 0;
}

.account-support-list {
  display: grid;
  gap: 12px;
}

.account-support-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.account-support-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.account-support-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.account-support-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* FAQ */

.account-faq-block {
  position: relative;
  z-index: 1;
}

.account-faq-header {
  max-width: 820px;
  margin-bottom: 24px;
}

.account-faq-header h3 {
  color: #0f172a;
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.account-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.account-faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.account-faq-item summary {
  cursor: pointer;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

.account-faq-item summary::-webkit-details-marker {
  display: none;
}

.account-faq-item summary::after {
  content: "+";
  float: right;
  color: #c88a22;
  font-size: 2.2rem;
  line-height: 1;
}

.account-faq-item[open] summary::after {
  content: "–";
}

.account-faq-item p {
  margin-top: 12px;
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.65;
}

/* responsive */

@media (max-width: 1199.98px) {
  .account-hero,
  .account-layout,
  .password-block,
  .account-support {
    grid-template-columns: 1fr;
  }

  .login-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .account-steps-grid,
  .account-faq-grid {
    grid-template-columns: 1fr;
  }

  .login-block {
    padding: 28px 22px;
  }

  .login-block::before {
    inset: 10px;
    border-radius: 22px;
  }
}

@media (max-width: 767.98px) {
  .login-grid {
    grid-template-columns: 1fr;
  }

  .account-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .account-panel,
  .password-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .account-panel h3,
  .password-panel h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .account-title {
    font-size: 3.1rem;
  }

  .account-lead {
    font-size: 1.5rem;
  }

  .account-hero-content h3,
  .login-header h3,
  .account-faq-header h3 {
    font-size: 2.65rem;
  }

  .account-step-card,
  .login-card,
  .password-help-card,
  .account-support-card,
  .account-support-list div,
  .account-faq-item {
    padding: 20px;
  }

  .account-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* =========================================================
   APP SECTION — Premium Universal Mobile Casino Block
========================================================= */

.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.app-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.app-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.app-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.app-header .section-kicker {
  justify-content: center;
}

.app-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.app-title span {
  display: inline;
  color: #c88a22;
}

.app-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* main showcase */

.app-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
}

.app-visual-column,
.app-content-column {
  position: relative;
  z-index: 1;
}

.app-image-frame {
  position: relative;
  margin: 0 0 22px;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.86), rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, #ffffff, #f2efe8);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.app-image-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 40px;
  border: 1px solid rgba(200, 169, 107, 0.34);
  z-index: -1;
}

.app-main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.app-download-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.app-download-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.24), transparent 68%);
}

.app-download-label,
.app-badge,
.app-install-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-download-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.app-download-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.48rem;
  line-height: 1.7;
}

.store-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: 172px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.store-button:hover,
.store-button:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.store-button img {
  display: block;
  width: 100%;
  height: auto;
}

.app-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.app-note i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 1.7rem;
}

.app-note p {
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1.62;
}

/* right column */

.app-intro-card {
  position: relative;
  margin-bottom: 22px;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.app-intro-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.app-intro-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.app-intro-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.52rem;
  line-height: 1.76;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.app-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.app-feature-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.app-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.app-feature-card:hover::before {
  opacity: 1;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2rem;
}

.app-feature-card h4 {
  margin-bottom: 6px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.app-feature-card p {
  color: #64748b;
  font-size: 1.38rem;
  line-height: 1.62;
}

/* navigation block */

.app-navigation-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.app-navigation-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.app-navigation-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.app-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.app-nav-card {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.app-nav-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.app-nav-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.app-nav-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  line-height: 1.62;
}

/* install */

.app-install-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.app-install-panel {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.app-install-panel-dark {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
}

.app-install-panel h3 {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.app-install-panel-dark h3 {
  color: #ffffff;
}

.app-steps {
  counter-reset: app-step;
  display: grid;
  gap: 12px;
}

.app-steps li {
  position: relative;
  padding: 14px 16px 14px 50px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.05);
  color: #475569;
  font-size: 1.42rem;
  line-height: 1.55;
}

.app-install-panel-dark .app-steps li {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.app-steps li::before {
  counter-increment: app-step;
  content: counter(app-step);
  position: absolute;
  left: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-family: var(--ff-league-spartan);
  font-weight: 700;
  font-size: 1.25rem;
}

/* bottom strip */

.app-bottom-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.app-bottom-strip div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-bottom-strip i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.7rem;
}

.app-bottom-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.8rem;
  line-height: 1.12;
}

.app-bottom-strip span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* responsive */

@media (max-width: 1199.98px) {
  .app-showcase,
  .app-navigation-block {
    grid-template-columns: 1fr;
  }

  .app-visual-column {
    max-width: 720px;
    margin-inline: auto;
  }

  .app-nav-grid,
  .app-bottom-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .app-feature-grid,
  .app-install-block {
    grid-template-columns: 1fr;
  }

  .app-feature-card {
    grid-template-columns: 54px 1fr;
  }
}

@media (max-width: 767.98px) {
  .app-navigation-block {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .app-nav-grid,
  .app-bottom-strip {
    grid-template-columns: 1fr;
  }

  .app-intro-card,
  .app-download-card,
  .app-install-panel {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .app-intro-card h3,
  .app-navigation-copy h3,
  .app-install-panel h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .app-title {
    font-size: 3.1rem;
  }

  .app-lead {
    font-size: 1.5rem;
  }

  .app-feature-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .app-note {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    max-width: 190px;
  }
}

/* Bonus CTA variation */
.bonus-cta .cta-content {
  margin-left: auto;
  margin-right: 0;
}

.bonus-cta .cta-subtitle {
  color: #f7d99a;
}

.bonus-cta .cta-title span {
  color: #f7d99a;
}

.bonus-cta::before {
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 18, 0.34) 0%,
      rgba(5, 10, 18, 0.58) 38%,
      rgba(5, 10, 18, 0.9) 100%
    ) !important;
}

.bonus-cta::after {
  background:
    radial-gradient(circle at 78% 34%, rgba(242, 184, 75, 0.2), transparent 34%),
    radial-gradient(circle at 44% 80%, rgba(216, 63, 85, 0.16), transparent 30%);
}

/* =========================================================
   PAYMENT METHODS SECTION — Premium Universal Cashier Block
========================================================= */

.payments-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.payments-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.payments-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.payments-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.payments-header .section-kicker {
  justify-content: center;
}

.payments-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.payments-title span {
  display: inline;
  color: #c88a22;
}

.payments-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.payments-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.payments-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.payments-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.payments-hero-content,
.payments-hero-points {
  position: relative;
  z-index: 1;
}

.payments-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payments-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.payments-hero-content p {
  max-width: 84ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.payments-hero-points {
  display: grid;
  gap: 12px;
}

.payments-hero-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payments-hero-points i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.9rem;
}

.payments-hero-points strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1;
}

.payments-hero-points span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* tabbed table */

.payment-table-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  border: 1px solid rgba(242, 184, 75, 0.22);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.payment-table-shell > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-tabs label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 184, 75, 0.42);
  font-family: var(--ff-league-spartan);
  font-size: 1.45rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

#deposit-tab:checked ~ .payment-tabs label[for="deposit-tab"],
#withdrawal-tab:checked ~ .payment-tabs label[for="withdrawal-tab"] {
  color: #111827;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.3);
}

.payment-panel {
  display: none;
}

#deposit-tab:checked ~ .payment-panels .payment-panel-deposit,
#withdrawal-tab:checked ~ .payment-panels .payment-panel-withdrawal {
  display: block;
}

.payment-table {
  display: grid;
  gap: 12px;
}

.payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.25s ease;
}

.payment-row:hover {
  transform: translateY(-2px);
  background: rgba(5, 10, 18, 0.94);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.payment-method img,
.payment-icons img {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

.payment-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 74px;
}

.payment-method-multi {
  gap: 10px;
}

.payment-method strong {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.65rem;
  line-height: 1.2;
  white-space: normal;
}

.payment-limit {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.65rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* info */

.payment-info-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.payment-info-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.payment-info-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-info-card {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.payment-info-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.85rem;
}

.payment-info-card h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.12;
}

.payment-info-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.35rem;
  line-height: 1.62;
}

/* notes */

.payment-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
}

.payment-note-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.payment-note-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-note-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.payment-note-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.payment-note-card p:last-child {
  margin-bottom: 0;
}

.payment-note-list {
  display: grid;
  gap: 12px;
}

.payment-note-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.payment-note-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.payment-note-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.payment-note-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* responsive */

@media (max-width: 1199.98px) {
  .payments-hero,
  .payment-info-block,
  .payment-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .payment-info-grid {
    grid-template-columns: 1fr;
  }

  .payment-table-shell {
    padding: 22px;
  }
}

@media (max-width: 767.98px) {
  .payments-hero,
  .payment-info-block {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .payment-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .payment-limit {
    text-align: left;
    padding-left: 48px;
  }

  .payment-tabs label {
    width: 100%;
  }

  .payments-hero-content h3,
  .payment-info-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .payments-title {
    font-size: 3.1rem;
  }

  .payments-lead {
    font-size: 1.5rem;
  }

  .payment-table-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .payment-row {
    padding: 14px;
    border-radius: 16px;
  }

  .payment-method {
    gap: 10px;
  }

  .payment-method img,
  .payment-icons img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
  }

  .payment-method strong,
  .payment-limit {
    font-size: 1.45rem;
  }

  .payment-limit {
    padding-left: 38px;
  }

  .payment-info-card,
  .payment-note-card,
  .payment-note-list div {
    padding: 20px;
  }
}

/* =========================================================
   LAND-BASED CASINO INFORMATION — Premium Universal Block
========================================================= */

.venue-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.venue-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.venue-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.venue-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.venue-header .section-kicker {
  justify-content: center;
}

.venue-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.venue-title span {
  display: inline;
  color: #c88a22;
}

.venue-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.venue-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.venue-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.venue-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.venue-hero-content,
.venue-quick-card {
  position: relative;
  z-index: 1;
}

.venue-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.venue-hero-content p {
  max-width: 84ch;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.venue-hero-content p:last-child {
  margin-bottom: 0;
}

.venue-quick-card {
  display: grid;
  gap: 12px;
}

.venue-quick-card div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-quick-card span {
  display: block;
  margin-bottom: 5px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.venue-quick-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.15;
}

/* cards */

.venue-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.venue-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.venue-card:hover::before {
  opacity: 1;
}

.venue-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.18), rgba(242, 184, 75, 0.08));
  color: #b88224;
  font-size: 2.1rem;
}

.venue-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.12;
}

.venue-card p {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 1.45rem;
  line-height: 1.68;
}

.venue-card p:last-child {
  margin-bottom: 0;
}

/* policy strip */

.venue-policy-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

.venue-policy-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.venue-policy-copy p {
  color: #475569;
  font-size: 1.52rem;
  line-height: 1.76;
}

.venue-policy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.venue-policy-list div {
  padding: 22px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.venue-policy-list i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.85rem;
}

.venue-policy-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  line-height: 1.12;
}

.venue-policy-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.32rem;
  line-height: 1.55;
}

/* notice */

.venue-notice {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
}

.venue-notice-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.venue-notice-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-notice-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.venue-notice-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.venue-notice-card p:last-child {
  margin-bottom: 0;
}

.venue-notice-list {
  display: grid;
  gap: 12px;
}

.venue-notice-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.venue-notice-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.venue-notice-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.venue-notice-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* responsive */

@media (max-width: 1199.98px) {
  .venue-hero,
  .venue-policy-strip,
  .venue-notice {
    grid-template-columns: 1fr;
  }

  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .venue-grid,
  .venue-policy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .venue-hero,
  .venue-policy-strip {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .venue-hero-content h3,
  .venue-policy-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 575.98px) {
  .venue-title {
    font-size: 3.1rem;
  }

  .venue-lead {
    font-size: 1.5rem;
  }

  .venue-card,
  .venue-notice-card,
  .venue-notice-list div,
  .venue-policy-list div {
    padding: 20px;
  }
}

/* =========================================================
   FAQ SECTION — Premium Universal Accordion Block
========================================================= */

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.faq-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.faq-header {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.faq-header .section-kicker {
  justify-content: center;
}

.faq-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.faq-title span {
  display: inline;
  color: #c88a22;
}

.faq-lead {
  max-width: 82ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.7rem;
  line-height: 1.8;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  position: relative;
  padding: 0;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}

.faq-item:hover::before,
.faq-item[open]::before {
  opacity: 1;
}

.faq-item summary {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 22px 58px 22px 24px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.14);
  color: #c88a22;
  font-family: var(--ff-league-spartan);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "–";
  color: #111827;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
}

.faq-item p {
  padding: 0 24px 24px;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1.72;
}

.faq-item[open] summary {
  color: #0f172a;
}

/* responsive */

@media (max-width: 991.98px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .faq-title {
    font-size: 3.1rem;
  }

  .faq-lead {
    font-size: 1.5rem;
  }

  .faq-item summary {
    min-height: auto;
    padding: 20px 54px 20px 20px;
    font-size: 1.75rem;
  }

  .faq-item summary::after {
    right: 18px;
    width: 30px;
    height: 30px;
    font-size: 2.2rem;
  }

  .faq-item p {
    padding: 0 20px 20px;
    font-size: 1.42rem;
  }
}

/* =========================================================
   PLAYER REVIEWS SECTION — Premium Universal Testimonials
========================================================= */

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.reviews-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.reviews-header {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto 42px;
  text-align: center;
}

.reviews-header .section-kicker {
  justify-content: center;
}

.reviews-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.reviews-title span {
  display: inline;
  color: #c88a22;
}

.reviews-lead {
  max-width: 86ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.7rem;
  line-height: 1.8;
}

.reviews-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  align-items: stretch;
}

.reviews-media {
  position: relative;
}

.reviews-image-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.86), rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, #ffffff, #f2efe8);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.reviews-image-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 40px;
  border: 1px solid rgba(200, 169, 107, 0.34);
  z-index: -1;
}

.reviews-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 560px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.reviews-summary-card {
  position: relative;
  margin-top: 22px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.reviews-summary-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.24), transparent 68%);
}

.reviews-summary-card span,
.reviews-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-summary-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.45rem;
  line-height: 1.12;
}

.reviews-summary-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.45rem;
  line-height: 1.68;
}

.reviews-content {
  min-width: 0;
}

.reviews-intro-card {
  position: relative;
  margin-bottom: 22px;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 26px 68px rgba(70, 43, 25, 0.2);
}

.reviews-intro-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.22), transparent 68%);
}

.reviews-intro-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.reviews-intro-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.52rem;
  line-height: 1.76;
}

/* carousel */

.reviews-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 3;
  pointer-events: none;
}

.reviews-carousel::before {
  top: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

.reviews-carousel::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

.reviews-track {
  display: grid;
  gap: 16px;
  animation: reviewScroll 38s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #f2b84b;
  font-size: 1.55rem;
}

.review-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.48rem;
  line-height: 1.72;
}

.review-author {
  display: grid;
  gap: 3px;
}

.review-author strong {
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.9rem;
  line-height: 1.1;
}

.review-author span {
  color: #f2b84b;
  font-size: 1.25rem;
  line-height: 1.3;
}

@keyframes reviewScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* responsive */

@media (max-width: 1199.98px) {
  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .reviews-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .reviews-image {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .reviews-intro-card,
  .reviews-summary-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .reviews-intro-card h3 {
    font-size: 2.55rem;
  }

  .reviews-carousel {
    height: 560px;
    padding: 14px;
    border-radius: 24px;
  }

  .review-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .reviews-title {
    font-size: 3.1rem;
  }

  .reviews-lead {
    font-size: 1.5rem;
  }

  .reviews-carousel {
    height: 600px;
  }

  .review-card p {
    font-size: 1.4rem;
  }

  .review-author strong {
    font-size: 1.7rem;
  }
}

/* =========================================================
   GAME PROVIDERS SECTION — Premium Universal Provider Grid
========================================================= */

.providers-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.15), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f7f3ea 100%);
}

.providers-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.24);
}

.providers-section::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: 120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.providers-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.providers-header .section-kicker {
  justify-content: center;
}

.providers-title {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.providers-title span {
  display: inline;
  color: #c88a22;
}

.providers-lead {
  max-width: 92ch;
  margin-inline: auto;
  color: #475569;
  font-size: 1.72rem;
  line-height: 1.8;
}

/* hero */

.providers-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.providers-hero::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  pointer-events: none;
}

.providers-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.28), transparent 68%);
}

.providers-hero-content,
.providers-hero-stats {
  position: relative;
  z-index: 1;
}

.providers-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.12);
  color: #f2b84b;
  border: 1px solid rgba(242, 184, 75, 0.28);
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.providers-hero-content h3 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.8rem, 3.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.providers-hero-content p {
  max-width: 86ch;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.58rem;
  line-height: 1.78;
}

.providers-hero-content p:last-child {
  margin-bottom: 0;
}

.providers-hero-stats {
  display: grid;
  gap: 12px;
}

.providers-hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.providers-hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 3rem;
  line-height: 1;
}

.providers-hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.28rem;
  line-height: 1.35;
}

/* provider cards */

.providers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.provider-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.provider-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.provider-card:hover::before {
  opacity: 1;
}

.provider-logo {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  border: 1px solid rgba(200, 169, 107, 0.22);
}

.provider-logo img {
  display: block;
  width: 78px !important;
  height: 78px !important;
  max-width: 78px !important;
  max-height: 78px !important;
  object-fit: contain !important;
}

.provider-content h3 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--ff-league-spartan);
  font-size: 2.35rem;
  line-height: 1.08;
}

.provider-content p {
  margin-bottom: 14px;
  color: #64748b;
  font-size: 1.42rem;
  line-height: 1.64;
}

.provider-games span {
  display: block;
  margin-bottom: 8px;
  color: #b88224;
  font-family: var(--ff-league-spartan);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-games ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.provider-games li {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.12);
  color: #0f172a;
  border: 1px solid rgba(200, 169, 107, 0.18);
  font-size: 1.16rem;
  line-height: 1.2;
}

/* bottom */

.providers-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
}

.providers-bottom-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(70, 43, 25, 0.98), rgba(38, 24, 15, 0.96));
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(70, 43, 25, 0.18);
}

.providers-bottom-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f2b84b;
  font-family: var(--ff-league-spartan);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.providers-bottom-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.providers-bottom-card p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1.7;
}

.providers-bottom-card p:last-child {
  margin-bottom: 0;
}

.providers-bottom-list {
  display: grid;
  gap: 12px;
}

.providers-bottom-list div {
  padding: 20px;
  border-radius: 22px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
}

.providers-bottom-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.75rem;
}

.providers-bottom-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.85rem;
  line-height: 1.1;
}

.providers-bottom-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  line-height: 1.55;
}

/* responsive */

@media (max-width: 1399.98px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .providers-hero,
  .providers-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .providers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .providers-title {
    font-size: 3.1rem;
  }

  .providers-lead {
    font-size: 1.5rem;
  }

  .providers-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .providers-hero-content h3 {
    font-size: 2.65rem;
  }

  .provider-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .provider-logo {
    width: 96px;
    height: 96px;
  }

  .provider-logo img {
    width: 68px !important;
    height: 68px !important;
    max-width: 68px !important;
    max-height: 68px !important;
  }

  .providers-bottom-card,
  .providers-bottom-list div {
    padding: 20px;
  }
}

/* =========================================================
   FOOTER — Premium Official Casino Footer
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 76px 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 184, 75, 0.14), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(216, 63, 85, 0.10), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #0b1120 100%);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  border: 1px solid rgba(242, 184, 75, 0.18);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.10), transparent 70%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand {
  max-width: 760px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-brand p {
  max-width: 78ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.52rem;
  line-height: 1.78;
}

.footer-trust {
  display: grid;
  gap: 12px;
}

.footer-trust div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-trust i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.8rem;
}

.footer-trust span {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--ff-league-spartan);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.18;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.footer-col {
  min-width: 0;
}

.footer-title {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.05rem;
  line-height: 1.1;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2b84b, rgba(242, 184, 75, 0));
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.43rem;
  line-height: 1.35;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #f2b84b;
  transform: translateX(4px);
}

/* payments */

.footer-payments {
  margin-bottom: 34px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(242, 184, 75, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.footer-payments-head {
  max-width: 820px;
  margin-bottom: 20px;
}

.footer-payments-head h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.1;
}

.footer-payments-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.42rem;
  line-height: 1.65;
}

.footer-pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pay-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--ff-league-spartan);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.footer-pay-list img {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  object-fit: contain !important;
  display: block !important;
}

/* compliance cards */

.footer-compliance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.footer-compliance-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compliance-card i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2b84b, #c88a22);
  color: #111827;
  font-size: 1.9rem;
}

.footer-compliance-card h4 {
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.95rem;
  line-height: 1.1;
}

.footer-compliance-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.32rem;
  line-height: 1.58;
}

/* bottom */

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-disclaimer {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.28rem;
  line-height: 1.72;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.copyright {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.4rem;
  line-height: 1.4;
  white-space: nowrap;
}

.copyright span {
  display: inline;
}

@media (max-width: 575.98px) {
  .footer-bottom-row {
    align-items: center;
    text-align: center;
  }

  .copyright {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .footer-cta {
    margin-inline: auto;
  }
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--ff-league-spartan);
  font-size: 1.4rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, #f2b84b 0%, #e56b2f 52%, #d83f55 100%);
  background-size: 160%;
  box-shadow: 0 12px 26px rgba(216, 63, 85, 0.25);
  transition: transform 0.25s ease, background-position 0.25s ease;
}

.footer-cta:hover,
.footer-cta:focus {
  transform: translateY(-2px);
  background-position: right center;
}

/* responsive */

@media (max-width: 1199.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-compliance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding-block: 58px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-payments {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer-pay-list {
    gap: 8px;
  }

  .footer-pay-list li {
    min-height: 42px;
    padding: 7px 10px;
    font-size: 1.25rem;
  }

  .footer-pay-list img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
  }

  .footer-compliance-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-trust div {
    grid-template-columns: 1fr;
  }

  .footer-brand p,
  .footer-payments-head p {
    font-size: 1.36rem;
  }

  .footer-title {
    font-size: 1.9rem;
  }
}

/*======================================
=              RESORT ABOUT            =
======================================*/

.resort-about {
  background:
    radial-gradient(circle at top left, rgba(255, 126, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  overflow: hidden;
}

.resort-about__header {
  max-width: 960px;
  margin: 0 auto 44px;
  text-align: center;
}

.resort-about__kicker,
.resort-about__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 1.5rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resort-about__title {
  margin-bottom: 18px;
  text-align: center;
}

.resort-about__title .span {
  display: inline-block;
  color: var(--safety-orange);
}

.resort-about__lead {
  color: var(--gray-wave);
  font-size: 1.7rem;
  line-height: 1.9;
}

.resort-about__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 34px;
}

.resort-about__story-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.resort-about__story-card h3 {
  margin-bottom: 16px;
}

.resort-about__story-card p:not(.resort-about__eyebrow) {
  color: var(--gray-wave);
  font-size: 1.58rem;
  line-height: 1.9;
}

.resort-about__story-card p:not(:last-child):not(.resort-about__eyebrow) {
  margin-bottom: 18px;
}

.resort-about__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.resort-about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.16), transparent 60%);
  pointer-events: none;
}

.resort-about__img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resort-about__media:hover .resort-about__img {
  transform: scale(1.05);
}

.resort-about__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 38px;
}

.resort-about__fact {
  background: #ffffff;
  padding: 24px 14px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.resort-about__fact strong {
  display: block;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 3.1rem;
  font-weight: var(--fw-700);
  line-height: 1;
  margin-bottom: 8px;
}

.resort-about__fact span {
  color: var(--eeria-black);
  font-size: 1.35rem;
  font-weight: var(--fw-500);
  line-height: 1.4;
}

.resort-about__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 42px;
}

.resort-about__info-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.resort-about__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.resort-about__info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 126, 0, 0.1);
  color: var(--safety-orange);
  font-size: 2.2rem;
}

.resort-about__info-card h3 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.resort-about__info-card p {
  color: var(--gray-wave);
  font-size: 1.45rem;
  line-height: 1.8;
}

.resort-about__experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 42px;
}

.resort-about__media--experience .resort-about__img {
  height: 340px;
}

.resort-about__experience-card {
  background:
    linear-gradient(135deg, rgba(16, 16, 18, 0.96), rgba(38, 38, 42, 0.96));
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.resort-about__experience-card h3 {
  color: #ffffff;
  margin-bottom: 14px;
}

.resort-about__experience-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.58rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.resort-about__check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.resort-about__check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.resort-about__check-list li:last-child {
  border-bottom: none;
}

.resort-about__check-list i {
  flex-shrink: 0;
  color: var(--safety-orange);
  font-size: 1.8rem;
  margin-top: 4px;
}

.resort-about__check-list span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.48rem;
  line-height: 1.7;
}

.resort-about__image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 42px;
}

.resort-about__difference {
  background: #ffffff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.resort-about__difference-head {
  max-width: 920px;
  margin-bottom: 28px;
}

.resort-about__difference-head h3 {
  margin-bottom: 14px;
}

.resort-about__difference-head p {
  color: var(--gray-wave);
  font-size: 1.58rem;
  line-height: 1.9;
}

.resort-about__difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.resort-about__difference-card {
  background: #f7f8fb;
  padding: 24px;
  border-radius: 22px;
  border-left: 4px solid var(--safety-orange);
}

.resort-about__difference-card span {
  display: block;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 2.6rem;
  font-weight: var(--fw-700);
  line-height: 1;
  margin-bottom: 12px;
}

.resort-about__difference-card h4 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.resort-about__difference-card p {
  color: var(--gray-wave);
  font-size: 1.45rem;
  line-height: 1.75;
}

/*----------  Resort About Responsive  ----------*/

@media (min-width: 768px) {
  .resort-about__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .resort-about__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-about__image-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-about__difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .resort-about__hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .resort-about__story-card,
  .resort-about__media--hero .resort-about__img {
    height: 100%;
  }

  .resort-about__media--hero .resort-about__img {
    min-height: 420px;
  }

  .resort-about__experience {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .resort-about__media--experience .resort-about__img,
  .resort-about__experience-card {
    height: 100%;
    min-height: 500px;
  }

  .resort-about__image-row .resort-about__img {
    height: 340px;
  }

  .resort-about__difference {
    padding: 38px;
  }

  .resort-about__difference-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .resort-about__facts {
    grid-template-columns: repeat(6, 1fr);
  }

  .resort-about__info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .resort-about__facts,
  .resort-about__info-grid,
  .resort-about__image-row,
  .resort-about__difference-grid {
    grid-template-columns: 1fr;
  }

  .resort-about__story-card,
  .resort-about__experience-card,
  .resort-about__difference,
  .resort-about__info-card,
  .resort-about__difference-card {
    padding: 22px;
  }

  .resort-about__img,
  .resort-about__media--hero .resort-about__img,
  .resort-about__media--experience .resort-about__img,
  .resort-about__image-row .resort-about__img {
    height: 240px;
    min-height: auto;
  }
}

/*=====  End of RESORT ABOUT  ======*/

/* Casino Overview */

.casino-overview {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.casino-head {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.casino-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.casino-lead {
  max-width: 82ch;
  margin: 16px auto 0;
  color: var(--gray-wave);
  font-size: var(--fs-5);
  line-height: 1.8;
}

.casino-main,
.casino-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.casino-main {
  margin-bottom: 34px;
}

.casino-bottom {
  margin-top: 42px;
}

.casino-copy,
.casino-bottom-copy {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 28px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.casino-copy .h3,
.casino-bottom-copy .h3 {
  margin-bottom: 14px;
}

.casino-copy p,
.casino-bottom-copy p {
  margin-bottom: 14px;
}

.casino-bottom-copy .btn {
  margin-top: 18px;
}

.casino-media {
  position: relative;
  overflow: hidden;
  border-radius: 34px var(--radius-5);
  box-shadow: var(--shadow-2);
  background: var(--platinum);
}

.casino-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.casino-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.casino-media--large .casino-img {
  min-height: 420px;
}

.casino-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 34px 0;
}

.casino-stat {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 22px var(--radius-5);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.casino-stat-number {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 4rem;
  font-weight: var(--fw-700);
  line-height: 1;
}

.casino-stat-label {
  margin-top: 8px;
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  line-height: 1.25;
}

.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.casino-card {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 28px var(--radius-5);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.casino-card:hover {
  transform: translateY(-6px);
}

.casino-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: var(--white-1);
  background-image: var(--gradient);
  border-radius: 50%;
  font-size: 2rem;
}

.casino-card h3 {
  margin-bottom: 10px;
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.2rem;
  line-height: 1.2;
}

.casino-card p {
  color: var(--gray-wave);
  font-size: var(--fs-6);
  line-height: 1.75;
}

@media (min-width: 575px) {
  .casino-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .casino-main,
  .casino-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .casino-main {
    margin-bottom: 44px;
  }

  .casino-copy,
  .casino-bottom-copy {
    padding: 34px;
  }

  .casino-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 44px 0;
  }

  .casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .casino-card {
    padding: 26px 22px;
  }
}

@media (min-width: 1200px) {
  .casino-head {
    margin-bottom: 52px;
  }

  .casino-copy,
  .casino-bottom-copy {
    padding: 42px;
  }

  .casino-card h3 {
    font-size: 2.4rem;
  }
}

/* ===== About Casino Section Start ===== */

.about-casino {
  background: var(--white-2);
}

.about-casino__head {
  max-width: 920px;
  margin: 0 auto 45px;
  text-align: center;
}

.about-casino .section-subtitle {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-weight: var(--fw-700);
  font-size: var(--fs-5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-casino__grid,
.about-casino__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.about-casino__media {
  border-radius: 28px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white-1);
}

.about-casino__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-casino__content,
.about-casino__text {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.about-casino__content .h3,
.about-casino__text .h3 {
  margin-bottom: 15px;
}

.about-casino__content p,
.about-casino__text p {
  margin-bottom: 16px;
}

.about-casino__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.about-casino__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.about-casino__list i {
  color: var(--red-crayola);
  margin-top: 6px;
  flex-shrink: 0;
}

.about-casino__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 35px 0;
}

.about-casino__fact {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.about-casino__fact span {
  color: var(--gray-wave);
  font-size: var(--fs-6);
  margin-bottom: 6px;
}

.about-casino__fact strong {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  line-height: 1.2;
}

.about-casino__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-casino__buttons .btn {
  margin: 0;
}

@media (min-width: 768px) {
  .about-casino__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-casino__content,
  .about-casino__text {
    padding: 34px;
  }
}

@media (min-width: 992px) {
  .about-casino__grid,
  .about-casino__split {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-casino__split {
    margin-top: 10px;
  }

  .about-casino__facts {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-casino__media--small .about-casino__img {
    min-height: 430px;
  }
}

@media (min-width: 1200px) {
  .about-casino__content,
  .about-casino__text {
    padding: 42px;
  }
}

/* ===== About Casino Section End ===== */

/* ===== Slots Section Start ===== */

.slots-section {
  background: var(--white-1);
}

.slots-section__head {
  max-width: 920px;
  margin: 0 auto 45px;
  text-align: center;
}

.slots-section .section-subtitle {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.slots-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 45px;
}

.slots-section__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.slots-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.slots-card:hover {
  transform: translateY(-8px);
}

.slots-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.slots-card h3 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slots-card p {
  font-size: var(--fs-6);
}

.slots-section__media {
  border-radius: 36px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white-2);
}

.slots-section__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.slots-section__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 35px;
}

.slots-section__content,
.slots-section__rules,
.slots-section__club {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.slots-section__content .h3,
.slots-section__rules .h3,
.slots-section__club .h3 {
  margin-bottom: 14px;
}

.slots-section__content p {
  margin-bottom: 16px;
}

.slots-section__list {
  display: grid;
  gap: 13px;
}

.slots-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.slots-section__list i {
  color: var(--red-crayola);
  margin-top: 6px;
  flex-shrink: 0;
}

.slots-section__club {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  background-image: var(--gradient);
  color: var(--white-1);
}

.slots-section__club .h3,
.slots-section__club p {
  color: var(--white-1);
}

.slots-section__club .btn {
  background: var(--white-1);
  color: var(--eeria-black);
  margin: 0;
}

@media (min-width: 768px) {
  .slots-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-section__content,
  .slots-section__rules,
  .slots-section__club {
    padding: 34px;
  }

  .slots-section__club {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 992px) {
  .slots-section__layout {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 28px;
  }

  .slots-section__cards {
    grid-template-columns: 1fr;
  }

  .slots-section__info {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
  }

  .slots-section__img {
    min-height: 560px;
  }
}

@media (min-width: 1200px) {
  .slots-card {
    padding: 30px;
  }

  .slots-section__content,
  .slots-section__rules,
  .slots-section__club {
    padding: 42px;
  }
}

/* ===== Slots Section End ===== */

/* ===== Slots Section Start ===== */

.slots-section {
  background: var(--white-1);
}

.slots-section__head {
  max-width: 920px;
  margin: 0 auto 45px;
  text-align: center;
}

.slots-section .section-subtitle {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.slots-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 45px;
}

.slots-section__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.slots-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.slots-card:hover {
  transform: translateY(-8px);
}

.slots-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.slots-card h3 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slots-card p {
  font-size: var(--fs-6);
}

.slots-section__media {
  border-radius: 36px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white-2);
}

.slots-section__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.slots-section__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 35px;
}

.slots-section__content,
.slots-section__rules,
.slots-section__club {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.slots-section__content .h3,
.slots-section__rules .h3,
.slots-section__club .h3 {
  margin-bottom: 14px;
}

.slots-section__content p {
  margin-bottom: 16px;
}

.slots-section__list {
  display: grid;
  gap: 13px;
}

.slots-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.slots-section__list i {
  color: var(--red-crayola);
  margin-top: 6px;
  flex-shrink: 0;
}

.slots-section__club {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  background-image: var(--gradient);
  color: var(--white-1);
}

.slots-section__club .h3,
.slots-section__club p {
  color: var(--white-1);
}

.slots-section__club .btn {
  background: var(--white-1);
  color: var(--eeria-black);
  margin: 0;
}

@media (min-width: 768px) {
  .slots-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-section__content,
  .slots-section__rules,
  .slots-section__club {
    padding: 34px;
  }

  .slots-section__club {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 992px) {
  .slots-section__layout {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 28px;
  }

  .slots-section__cards {
    grid-template-columns: 1fr;
  }

  .slots-section__info {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
  }

  .slots-section__img {
    min-height: 560px;
  }
}

@media (min-width: 1200px) {
  .slots-card {
    padding: 30px;
  }

  .slots-section__content,
  .slots-section__rules,
  .slots-section__club {
    padding: 42px;
  }
}

/* ===== Slots Section End ===== */

/* ===== Slots Section Start ===== */

.slots-section {
  background: var(--white-1);
}

.slots-section__head {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.slots-section .section-subtitle {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.slots-section__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 46px;
}

.slots-section__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.slots-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 26px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.slots-card:hover {
  transform: translateY(-8px);
}

.slots-card__icon,
.slots-section__rules-icon,
.slots-section__rewards-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
}

.slots-card h3,
.slots-section__rules-card h3 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slots-card p,
.slots-section__rules-card p {
  font-size: var(--fs-6);
}

.slots-section__image {
  border-radius: 38px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white-2);
}

.slots-section__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.slots-section__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 36px;
}

.slots-section__text,
.slots-section__panel,
.slots-section__rewards {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.slots-section__text .h3,
.slots-section__panel .h3,
.slots-section__rewards .h3 {
  margin-bottom: 14px;
}

.slots-section__text p {
  margin-bottom: 16px;
}

.slots-section__list {
  display: grid;
  gap: 13px;
}

.slots-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.slots-section__list i {
  color: var(--red-crayola);
  margin-top: 6px;
  flex-shrink: 0;
}

.slots-section__rules-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

.slots-section__rules-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.slots-section__rewards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background-image: var(--gradient);
  color: var(--white-1);
}

.slots-section__rewards .h3,
.slots-section__rewards p {
  color: var(--white-1);
}

.slots-section__rewards-icon {
  background: var(--white-1);
  color: var(--red-crayola);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .slots-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-section__rules-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-section__text,
  .slots-section__panel,
  .slots-section__rules-card,
  .slots-section__rewards {
    padding: 34px;
  }

  .slots-section__rewards {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
  }
}

@media (min-width: 992px) {
  .slots-section__hero {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 28px;
  }

  .slots-section__cards {
    grid-template-columns: 1fr;
  }

  .slots-section__details {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }

  .slots-section__rules-wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .slots-section__img {
    min-height: 560px;
  }
}

@media (min-width: 1200px) {
  .slots-card,
  .slots-section__rules-card {
    padding: 30px;
  }

  .slots-section__text,
  .slots-section__panel,
  .slots-section__rewards {
    padding: 42px;
  }
}

/* ===== Slots Section End ===== */

/* ===== Table Games Section Start ===== */

.table-games {
  background: var(--white-2);
}

.table-games__head {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.table-games .section-subtitle {
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.table-games__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 46px;
}

.table-games__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.table-card {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 26px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.table-card:hover {
  transform: translateY(-8px);
}

.table-card__icon,
.table-games__feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
}

.table-card h3,
.table-games__feature h3 {
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.table-card p,
.table-games__feature p {
  font-size: var(--fs-6);
}

.table-games__image {
  border-radius: 38px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--white-1);
}

.table-games__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.table-games__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 36px;
}

.table-games__info,
.table-games__panel {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.table-games__info .h3,
.table-games__panel .h3 {
  margin-bottom: 14px;
}

.table-games__info p {
  margin-bottom: 16px;
}

.table-games__list {
  display: grid;
  gap: 13px;
}

.table-games__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.table-games__list i {
  color: var(--red-crayola);
  margin-top: 6px;
  flex-shrink: 0;
}

.table-games__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.table-games__feature {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px var(--radius-5);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

@media (min-width: 768px) {
  .table-games__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-games__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-games__info,
  .table-games__panel,
  .table-games__feature {
    padding: 34px;
  }
}

@media (min-width: 992px) {
  .table-games__hero {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 28px;
  }

  .table-games__cards {
    grid-template-columns: 1fr;
  }

  .table-games__content {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
  }

  .table-games__bottom {
    grid-template-columns: repeat(4, 1fr);
  }

  .table-games__img {
    min-height: 560px;
  }
}

@media (min-width: 1200px) {
  .table-card,
  .table-games__feature {
    padding: 30px;
  }

  .table-games__info,
  .table-games__panel {
    padding: 42px;
  }
}

/* ===== Table Games Section End ===== */

/* ===== High Limit Gaming Start ===== */

.high-limit {
  background: var(--white-1);
}

.high-limit__head {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.high-limit__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.high-limit__content,
.high-limit__games-content,
.high-limit__games-panel {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 30px;
  box-shadow: var(--shadow-1);
}

.high-limit__image {
  overflow: hidden;
  border-radius: 40px var(--radius-5);
  box-shadow: var(--shadow-2);
}

.high-limit__img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.high-limit__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.high-limit__stat {
  background: var(--white-1);
  border-radius: var(--radius-12);
  padding: 18px;
  text-align: center;
}

.high-limit__stat strong {
  display: block;
  font-size: 3rem;
  color: var(--red-crayola);
  font-family: var(--ff-league-spartan);
}

.high-limit__stat span {
  font-size: var(--fs-7);
}

.high-limit__rooms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.high-limit-room {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-1);
}

.high-limit-room__icon,
.high-limit-feature i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.high-limit-room ul {
  margin-top: 20px;
}

.high-limit-room li {
  padding-block: 6px;
  font-weight: var(--fw-500);
}

.high-limit__games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.high-limit__list {
  display: grid;
  gap: 12px;
}

.high-limit__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.high-limit__list i {
  color: var(--red-crayola);
  margin-top: 5px;
}

.high-limit__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.high-limit-feature {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-1);
}

.high-limit-feature h3 {
  margin-bottom: 10px;
}

@media (min-width: 768px) {

  .high-limit__rooms,
  .high-limit__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 992px) {

  .high-limit__hero {
    grid-template-columns: 1.1fr 1fr;
  }

  .high-limit__games {
    grid-template-columns: 1.2fr .8fr;
  }

  .high-limit__bottom {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* ===== High Limit Gaming End ===== */

/* ===== Entertainment Section Start ===== */

.entertainment {
  background: var(--white-2);
}

.entertainment__head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.entertainment__hero,
.entertainment__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 45px;
}

.entertainment__content,
.entertainment__info {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 32px;
  box-shadow: var(--shadow-1);
}

.entertainment__image {
  overflow: hidden;
  border-radius: 40px var(--radius-5);
  box-shadow: var(--shadow-2);
}

.entertainment__img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.entertainment__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 45px;
}

.entertainment-card {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.entertainment-card:hover {
  transform: translateY(-8px);
}

.entertainment-card__icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.entertainment-card h3 {
  margin-bottom: 12px;
}

.entertainment__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.entertainment-stat {
  background-image: var(--gradient);
  color: var(--white-1);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.entertainment-stat strong {
  display: block;
  font-family: var(--ff-league-spartan);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

.entertainment-stat span {
  font-size: var(--fs-6);
  color: var(--white-1);
}

@media (min-width: 768px) {

  .entertainment__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .entertainment__stats {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 992px) {

  .entertainment__hero,
  .entertainment__split {
    grid-template-columns: 1fr 1fr;
  }

  .entertainment__cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .entertainment__stats {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (min-width: 1200px) {

  .entertainment__content,
  .entertainment__info {
    padding: 40px;
  }

}

/* ===== Entertainment Section End ===== */

/* ===== Casino Experience Start ===== */

.casino-experience {
  background:
    radial-gradient(circle at top left, rgba(255, 116, 0, 0.12), transparent 34%),
    linear-gradient(180deg, var(--white-1), var(--white-2));
}

.casino-experience__showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 35px;
}

.casino-experience__intro {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-1);
}

.casino-experience__intro .section-title,
.casino-experience__intro .section-subtitle {
  text-align: left;
}

.casino-experience__intro .section-title {
  margin-bottom: 16px;
}

.casino-experience__main-image,
.casino-experience__story-image {
  overflow: hidden;
  border-radius: 32px 8px 32px 8px;
  box-shadow: var(--shadow-2);
}

.casino-experience__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.casino-experience__side-panel {
  background-image: var(--gradient);
  color: var(--white-1);
  border-radius: 8px 32px 8px 32px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-2);
}

.casino-experience__side-panel h3,
.casino-experience__side-panel p,
.casino-experience__side-panel span {
  color: var(--white-1);
}

.casino-experience__label {
  font-family: var(--ff-league-spartan);
  font-weight: var(--fw-700);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.casino-experience__side-panel h3 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.casino-experience__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.experience-flow-card {
  position: relative;
  overflow: hidden;
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: var(--shadow-1);
}

.experience-flow-card--dark {
  background: var(--eeria-black);
  color: var(--white-1);
}

.experience-flow-card--dark h3,
.experience-flow-card--dark p,
.experience-flow-card--dark i,
.experience-flow-card--dark .experience-flow-card__number {
  color: var(--white-1);
}

.experience-flow-card__number {
  position: absolute;
  top: 12px;
  right: 20px;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-size: 4.5rem;
  font-weight: var(--fw-700);
  line-height: 1;
  opacity: 0.22;
}

.experience-flow-card i {
  color: var(--red-crayola);
  font-size: 3.2rem;
  margin-bottom: 18px;
}

.experience-flow-card h3 {
  margin-bottom: 10px;
}

.casino-experience__story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow-1);
}

.casino-experience__story-content {
  padding: 18px;
}

.casino-experience__story-content .h3 {
  margin-bottom: 14px;
}

.casino-experience__story-content p:not(:last-child) {
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .casino-experience__flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .casino-experience__showcase {
    grid-template-columns: 1fr 1.25fr 0.8fr;
  }

  .casino-experience__story {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 22px;
  }

  .casino-experience__img {
    min-height: 460px;
  }
}

/* ===== Casino Experience End ===== */
/* ===== Dining Showcase Section Start ===== */

.dining-showcase {
  background:
    radial-gradient(circle at top left, rgba(255, 128, 0, 0.08), transparent 35%),
    var(--white-1);
}

.dining-showcase__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 42px;
}

.dining-showcase__intro .section-title {
  text-align: left;
}

.dining-showcase__lead {
  background: var(--white-2);
  border-left: 4px solid var(--safety-orange);
  border-radius: 0 var(--radius-16) var(--radius-16) 0;
  padding: 22px;
  color: var(--eeria-black);
  box-shadow: var(--shadow-1);
}

.dining-showcase__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 32px;
}

.dining-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 34px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.dining-feature__image {
  min-height: 320px;
}

.dining-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-feature__content {
  padding: 30px;
}

.dining-feature__tag,
.dining-bar-card span {
  display: inline-block;
  color: var(--safety-orange);
  font-family: var(--ff-league-spartan);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.dining-feature__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dining-feature__list li {
  display: flex;
  gap: 10px;
  color: var(--eeria-black);
  font-weight: var(--fw-500);
}

.dining-feature__list i {
  color: var(--red-crayola);
  margin-top: 6px;
}

.dining-showcase__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dining-mini {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-1);
}

.dining-mini--dark {
  background: var(--eeria-black);
  color: var(--white-1);
}

.dining-mini--dark h3,
.dining-mini--dark p {
  color: var(--white-1);
}

.dining-mini__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.dining-mini h3 {
  margin-bottom: 10px;
}

.dining-showcase__bars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.dining-bar-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 26px var(--radius-5);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.dining-bar-card figure {
  height: 240px;
  overflow: hidden;
}

.dining-bar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-bar-card div {
  padding: 26px;
}

.dining-bar-card h3 {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .dining-showcase__bars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .dining-showcase__intro {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .dining-showcase__main {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .dining-feature {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .dining-feature__image {
    min-height: 100%;
  }
}

/* ===== Dining Showcase Section End ===== */

/* ===== Hotel & Accommodation Start ===== */

.accommodation {
  background:
    linear-gradient(180deg, var(--white-2) 0%, var(--white-1) 100%);
}

.accommodation__header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.accommodation__overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.accommodation__intro {
  background: var(--eeria-black);
  color: var(--white-1);
  padding: 40px;
  border-radius: 32px var(--radius-5);
  position: relative;
  overflow: hidden;
}

.accommodation__intro::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -110px;
  right: -110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.accommodation__intro h3,
.accommodation__intro p {
  color: var(--white-1);
}

.accommodation__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: var(--white-1);
  font-size: var(--fs-7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accommodation__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.accommodation__fact {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.accommodation__fact strong {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--red-crayola);
  font-family: var(--ff-league-spartan);
}

.accommodation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

.accommodation-card {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-1);
  text-align: center;
}

.accommodation-card__icon {
  width: 68px;
  height: 68px;
  margin-inline: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}

.accommodation-card h3 {
  margin-bottom: 12px;
}

.accommodation__experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.accommodation__content,
.accommodation__highlights {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 35px;
  box-shadow: var(--shadow-1);
}

.accommodation__list {
  display: grid;
  gap: 14px;
}

.accommodation__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.accommodation__list i {
  color: var(--red-crayola);
  margin-top: 5px;
}

@media (min-width: 768px) {

  .accommodation__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 992px) {

  .accommodation__overview {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .accommodation__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .accommodation__experience {
    grid-template-columns: 1.2fr 0.8fr;
  }

}

@media (min-width: 1200px) {

  .accommodation__intro,
  .accommodation__content,
  .accommodation__highlights {
    padding: 45px;
  }

}

/* ===== Hotel & Accommodation End ===== */

/* ===== Dining Experience Section Start ===== */

.dining-experience {
  background: var(--white-1);
  position: relative;
}

.dining-experience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.dining-experience__header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.dining-experience__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.dining-highlight {
  background: var(--eeria-black);
  color: var(--white-1);
  padding: 40px;
  border-radius: 32px var(--radius-5);
  position: relative;
  overflow: hidden;
}

.dining-highlight::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.dining-highlight h3,
.dining-highlight p {
  color: var(--white-1);
}

.dining-highlight__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  font-size: var(--fs-7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dining-highlight__badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 100px;
  background-image: var(--gradient);
  color: var(--white-1);
  font-weight: var(--fw-700);
}

.dining-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dining-overview__stat {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.dining-overview__stat strong {
  display: block;
  color: var(--red-crayola);
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--ff-league-spartan);
}

.dining-venues {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.venue-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.venue-card:hover {
  transform: translateY(-8px);
}

.venue-card--featured {
  border: 2px solid var(--red-crayola);
}

.venue-card__icon,
.dining-feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.venue-card h3 {
  margin-bottom: 8px;
}

.venue-card__type {
  display: block;
  color: var(--red-crayola);
  font-weight: var(--fw-700);
  margin-bottom: 12px;
}

.dining-experience__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dining-feature {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
}

.dining-feature h3 {
  margin-bottom: 8px;
}

@media (min-width: 768px) {

  .dining-venues {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-experience__bottom {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 992px) {

  .dining-experience__hero {
    grid-template-columns: 1.1fr .9fr;
  }

  .dining-venues {
    grid-template-columns: repeat(5, 1fr);
  }

}

@media (min-width: 1200px) {

  .dining-highlight {
    padding: 50px;
  }

}

/* ===== Dining Experience Section End ===== */

/* ===== Entertainment & Events Section Start ===== */

.entertainment-events {
  background: var(--white-2);
}

.entertainment-events__header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.entertainment-events__hero,
.entertainment-events__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 42px;
}

.entertainment-events__content {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 34px;
  box-shadow: var(--shadow-1);
}

.entertainment-events__tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--safety-orange);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.entertainment-events__image {
  overflow: hidden;
  border-radius: 38px var(--radius-5);
  box-shadow: var(--shadow-2);
}

.entertainment-events__img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.entertainment-events__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 42px;
}

.entertainment-events__stat {
  background-image: var(--gradient);
  color: var(--white-1);
  padding: 28px;
  border-radius: 22px;
  text-align: center;
}

.entertainment-events__stat strong {
  display: block;
  color: var(--white-1);
  font-family: var(--ff-league-spartan);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}

.entertainment-events__stat span {
  color: var(--white-1);
}

.entertainment-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 42px;
}

.event-card {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.event-card h3 {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .entertainment-events__stats,
  .entertainment-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .entertainment-events__hero,
  .entertainment-events__split {
    grid-template-columns: 1fr 1fr;
  }

  .entertainment-events__stats,
  .entertainment-events__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .entertainment-events__content {
    padding: 44px;
  }
}

/* ===== Entertainment & Events Section End ===== */

/* ===== Location Information Section Start ===== */

.location-info {
  background: var(--white-1);
}

.location-info__header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.location-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.location-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-card__icon {
  width: 68px;
  height: 68px;
  margin-inline: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}

.location-card h3 {
  margin-bottom: 12px;
}

.location-info__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.location-panel {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 35px;
  box-shadow: var(--shadow-1);
}

.location-panel .h3 {
  margin-bottom: 15px;
}

.location-list {
  display: grid;
  gap: 15px;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-list i {
  color: var(--red-crayola);
  margin-top: 5px;
  flex-shrink: 0;
}

@media (min-width: 768px) {

  .location-info__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 992px) {

  .location-info__content {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 1200px) {

  .location-panel {
    padding: 42px;
  }

}

/* ===== Location Information Section End ===== */
/* ===== Visitor Guide Section Start ===== */

.visitor-guide {
  background:
    linear-gradient(180deg, var(--white-2) 0%, var(--white-1) 100%);
}

.visitor-guide__header {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 55px;
}

.visitor-guide__timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-bottom: 45px;
}

.visit-option {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.visit-option:hover {
  transform: translateY(-6px);
}

.visit-option__number {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--ff-league-spartan);
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  flex-shrink: 0;
}

.visit-option h3 {
  margin-bottom: 10px;
}

.visitor-guide__tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.guide-tip {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
}

.guide-tip i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.guide-tip h3 {
  margin-bottom: 8px;
}

@media (min-width: 768px) {

  .visitor-guide__tips {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1200px) {

  .visitor-guide__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===== Visitor Guide Section End ===== */

/* ===== Responsible Gaming Start ===== */

.responsible-gaming {
  background: var(--white-1);
}

.responsible-gaming__header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

.responsible-gaming__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

.responsible-card {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.responsible-card__icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  background-image: var(--gradient);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.responsible-card h3 {
  margin-bottom: 10px;
}

.responsible-gaming__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.responsible-panel {
  background: var(--white-2);
  border: 1px solid var(--platinum);
  border-radius: var(--radius-16);
  padding: 35px;
  box-shadow: var(--shadow-1);
}

.responsible-panel .h3 {
  margin-bottom: 15px;
}

.responsible-list {
  display: grid;
  gap: 14px;
}

.responsible-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.responsible-list i {
  color: var(--red-crayola);
  margin-top: 5px;
  flex-shrink: 0;
}

@media (min-width: 768px) {

  .responsible-gaming__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 992px) {

  .responsible-gaming__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .responsible-gaming__content {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 1200px) {

  .responsible-panel {
    padding: 42px;
  }

}

/* ===== Responsible Gaming End ===== */

/* ===== FAQ Section Start ===== */

.faq {
  background: var(--white-2);
}

.faq__header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 45px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.faq-item {
  background: var(--white-1);
  border: 1px solid var(--platinum);
  border-radius: 18px;
  padding: 0;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  color: var(--eeria-black);
  font-family: var(--ff-league-spartan);
  font-size: 2rem;
  font-weight: var(--fw-700);
  padding: 22px 26px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red-crayola);
  font-size: 2.6rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 26px 24px;
  margin: 0;
}

@media (min-width: 992px) {
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ Section End ===== */