* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;
    color: #403848
}

.container {
    width: min(1280px, 100%);
    margin: auto
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .10);
    position: sticky;
    top: 0;
    z-index: 20
}

.nav-wrap {
    height: 62px;
    display: flex;
    align-items: center;
    gap: 28px
}

.logo {
    font-size: 24px;
    color: #3a1654;
    text-decoration: none
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px
}

.nav a {
    font-size: 14px;
    color: #3f3748;
    text-decoration: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4b12;
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 42px;
    text-transform: uppercase;
    letter-spacing: .2px;
    padding: 18px 48px;
    min-width: 220px
}

.btn-small {
    min-width: auto;
    padding: 12px 22px;
    font-size: 12px
}

.menu-btn {
    display: none;
    margin-left: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 24px
}
.site-header{
  background:#2b113f;
  border-bottom:1px solid rgba(255,255,255,.18);
  position:sticky;
  top:0;
  z-index:999;
}

.nav-wrap{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.logo{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#fff;
  font-size:30px;
  letter-spacing:-1px;
}

.logo-dot{
  width:14px;
  height:14px;
  background:#ff4b16;
  border-radius:50%;
  display:inline-block;
}

.nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav a{
  color:rgba(255,255,255,.65);
  text-decoration:none;
  font-size:14px;
  text-transform:uppercase;
  
}

.nav a:hover{
  color:#fff;
}

.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.lang{
  color:#fff;
  font-weight:700;
  white-space:nowrap;
}

.btn-small{
  padding:12px 22px;
  font-size:13px;
  border-radius:30px;
}

.menu-btn{
  display:none;
  border:0;
  background:#ff4b16;
  color:#fff;
  font-size:22px;
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;
}

@media(max-width:900px){
  .nav{
    position:absolute;
    top:72px;
    left:0;
    right:0;
    background:#2b113f;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }

  .nav.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .header-right .btn-small{
    display:none;
  }
}
.hero {
    padding: 16px 0 32px
}

.hero-frame {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background: #1d1028;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15)
}

.slides,
.hero-slide {
    height: 100%
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    visibility: hidden;
    transition: .45s ease
}

.hero-slide.active {
    opacity: 1;
    visibility: visible
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 10, 54, .62)
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: 48%;
    padding: 74px 0 0 54px;
    color: #fff
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .3px
}

.hero-copy p {
    margin: 0 0 82px;
    font-size: 16px;
    line-height: 1.52;
    text-transform: uppercase;
    max-width: 560px
}

.hero-copy strong {
    display: block;
    margin: -62px 0 42px;
    font-size: 18px;
    text-transform: uppercase
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3
}

.hero-dots button {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 20px;
    background: #ddd;
    cursor: pointer
}

.hero-dots button.active {
    width: 82px;
    background: #ff4b12
}

.hero-arrows {
    position: absolute;
    right: 22px;
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, .32);
    padding: 8px;
    border-radius: 10px
}

.hero-arrows button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .75);
    color: #403848;
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
    cursor: pointer
}

.section {
    padding: 20px 0
}

.panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    padding: 28px
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px
}

.section-head h2,
.faq h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15
}

.section-head a {
    color: #ff4b12;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px
}

.game-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px
}

.game-card {
    position: relative;
    min-width: 0
}

.game-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 12px;
    display: block
}

.game-card h3 {
    margin: 18px 0 6px;
    font-size: 18px;
    line-height: 1.25
}

.game-card p {
    margin: 0;
    color: #8b7b97;
    font-size: 16px
}



.overlay a {
    color: #bd2bff;
    font-size: 24px
}

.overlay button {
    background: #ff4b12;
    color: #fff;
    border: 0;
    border-radius: 24px;
    padding: 12px 28px;
    font-weight: 800;
    text-transform: uppercase
}

.overlay em {
    margin-top: 10px;
    border: 2px solid #fff;
    border-radius: 18px;
    padding: 5px 16px;
    font-style: normal
}

.icon-head h2 {
    display: flex;
    align-items: center;
    gap: 14px
}

.icon-head span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #9e2df1;
    color: #fff;
    font-size: 15px
}

.icon-head button {
    border: 0;
    border-radius: 28px;
    padding: 14px 26px;
    color: #60536a;
    font-weight: 800
}

.blackjack-grid {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 18px
}

.bj {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #222
}

.bj.big {
    grid-row: span 2
}

.bj img {
    width: 100%;
    object-fit: cover;
    display: block
}

.bj:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 100%;
    
}

.bj h3,
.bj p {
    position: absolute;
    z-index: 1;
    left: 18px;
    margin: 0;
    color: #fff;
    text-transform: uppercase
}

.bj h3 {
    bottom: 34px;
    font-size: 20px;
    line-height: 1
}

.bj p {
    bottom: 14px;
    font-size: 13px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.split.reverse .split-img {
    order: 2
}

.split-img img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 10px
}

.split-text h2 {
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 18px
}

.split-text p,
.split-text li {
    font-size: 16px;
    line-height: 1.65
}

.faq {
    padding-bottom: 44px
}

.faq h2 {
    margin-bottom: 16px
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .10);
    overflow: hidden
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 0;
    padding: 20px;
    font-size: 17px;
    font-weight: 800;
    color: #403848;
    cursor: pointer
}

.faq-item p {
    display: none;
    margin: 0;
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.7
}

.faq-item.active p {
    display: block
}

.site-footer {
    background: #30113e;
    color: #fff;
    padding: 48px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    
}

.site-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 8px 0
}

.copy {
    text-align: center;
    margin: 36px 0 0;
    color: #eee
}

.page-hero {
    background: #fff;
    padding: 56px 0;
    border-bottom: 1px solid #ddd
}

.page-hero h1 {
    font-size: 42px;
    margin: 0 0 10px
}

.content-page {
    padding: 34px 0 60px
}

.content-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    padding: 34px
}

.content-box h2 {
    margin-top: 24px
}

.content-box p,
.content-box li {
    line-height: 1.8;
    font-size: 16px
}

@media(max-width:900px) {
    .nav {
        display: none
    }

    .nav.open {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 62px;
        flex-direction: column;
        padding: 18px
    }

    .menu-btn {
        display: block
    }

    .btn-small {
        display: none
    }

    .hero-frame {
        height: 390px
    }

    .hero-copy {
        width: 72%;
        padding: 54px 32px
    }

    .hero-copy h1 {
        font-size: 36px
    }

    .hero-copy p {
        font-size: 17px;
        margin-bottom: 58px
    }

    .game-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .blackjack-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .split,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .split.reverse .split-img {
        order: 0
    }
}

@media(max-width:560px) {
    .container {
        width: 94%
    }

    .hero-frame {
        height: 360px
    }

    .hero-copy {
        width: 100%;
        padding: 42px 22px
    }

    .hero-copy h1 {
        font-size: 30px
    }

    .hero-copy p {
        font-size: 15px;
        margin-bottom: 50px
    }

    .btn {
        min-width: 180px;
        padding: 15px 26px
    }

    .hero-arrows {
        right: 5px
    }

    .game-row {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 8px
    }

    .game-card {
        min-width: 210px
    }

    .section-head h2,
    .faq h2,
    .split-text h2 {
        font-size: 26px
    }

    .blackjack-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px
    }

    .bj.big {
        grid-row: auto
    }

    .panel {
        padding: 20px
    }

    .split-img img {
        height: 230px
    }
}
.games-showcase{
    padding:70px 0;
    background:#fff;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
    color:#222;
}

.section-title a{
    text-decoration:none;
    color:#ff5b17;
    font-weight:700;
    font-size:15px;
}

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

.showcase-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.showcase-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.showcase-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.card-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    opacity:0;
    transition:.3s;
}

.showcase-card{
    position:relative;
}

.showcase-card:hover .card-overlay{
    opacity:1;
}

.card-overlay span{
    background:#ff5b17;
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    font-weight:700;
}

.showcase-card h3{
    font-size:22px;
    margin:20px 20px 20px;
    line-height:1.3;
    color: #2B113F;
}

.showcase-card p{
    color:#777;
    margin:0 20px 22px;
    font-size:16px;
}

@media(max-width:991px){

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

}

@media(max-width:600px){

.showcase-grid{
grid-template-columns:1fr;
}

.showcase-card img{
height:220px;
}

.section-title h2{
font-size:28px;
}

}

.site-footer{
background:#2b113f;
color:#fff;
padding:70px 0 30px;
}

.footer-payments h3{
text-align:center;
margin-bottom:30px;
font-size:28px;
}

.payment-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin-bottom:40px;
}

.payment-grid img{
background:#fff;
padding:18px;
border-radius:12px;
height:72px;
object-fit:contain;
transition:.3s;
}

.payment-grid img:hover{
transform:translateY(-4px);
}

.site-footer hr{
border:none;
height:1px;
background:rgba(255,255,255,.15);
margin:45px 0;
}

.footer-main{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:60px;
}

.footer-main h3,
.footer-main h4{
margin-bottom:18px;
}

.footer-main p,
.footer-license p{
color:#ddd;
line-height:1.9;
}

.footer-main ul{
list-style:none;
padding:0;
}

.footer-main li{
margin-bottom:12px;
}

.footer-main a{
color:#fff;
text-decoration:none;
}

.footer-main a:hover{
color:#ff5b17;
}

.footer-license{
text-align:center;
max-width:1000px;
margin:auto;
}

.footer-bottom{
margin-top:35px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-badges{
display:flex;
gap:15px;
align-items:center;
}

.footer-badges img{
height:42px;
}

@media(max-width:768px){

.footer-main{
grid-template-columns:1fr;
text-align:center;
}

.footer-bottom{
justify-content:center;
flex-direction:column;
}

}
.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.split-img img{
    width:100%;
    border-radius:18px;
    display:block;
}

.section-tag{
    display:inline-block;
    background:#fff4ee;
    color:#ff5b17;
    font-size:13px;
    font-weight:700;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.split-text h2{
    font-size:32px;
    line-height:1.2;
    margin-bottom:20px;
    color:#222;
}

.split-text p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:35px;
}

.feature-item{
    font-size:16px;
    font-weight:600;
    color:#333;
}

.split-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ff5b17;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:#e54a0d;
}

.btn-outline{
    border:2px solid #ff5b17;
    color:#ff5b17;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:#ff5b17;
    color:#fff;
}

@media(max-width:991px){

.split{
    grid-template-columns:1fr;
}

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

.split-text h2{
    font-size:34px;
}

}


.split-text h2{
    font-size:32px;
    line-height:1.2;
    margin-bottom:20px;
    color:#222;
}

.split-text p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.feature-item{
    font-size:16px;
    font-weight:600;
    color:#333;
}

.split-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    background:#ff5b17;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:#e64c0f;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border:2px solid #ff5b17;
    color:#ff5b17;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:#ff5b17;
    color:#fff;
}

@media(max-width:991px){

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

.split-text h2{
    font-size:22px;
}

.split-buttons{
    justify-content:center;
}

}