


*{margin:0;padding:0;box-sizing:border-box}


html,body{
max-width:100%;
}


img{
max-width:100%;
height:auto;
display:block;
margin:30px auto;
}


.content img{
display:block;
margin:40px auto;
width:100%;
max-width:900px;
height:auto;
}


body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:#3C2C95;
color:#FFFFFF;
padding-bottom:70px;
}


.container{
max-width:1200px;
width:100%;
margin:0 auto;
padding:0 20px;
}


/* HEADER */


.header{
background:#3C2C95;
}


.header-inner{
max-width:1200px;
margin:0 auto;
padding:20px;
display:flex;
align-items:center;
justify-content:space-between;
}


.logo{
font-size:28px;
font-weight:700;
color:#F2F231;
}


.logo-img{
height:50px;
width:auto;
}


.nav{
display:flex;
gap:40px;
font-size:18px;
align-items:center;
}


.nav a{
color:#FFFFFF;
text-decoration:none;
}


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


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


/* BUTTONS */


.btn-login,
.btn-register{
display:inline-block;
padding:12px 28px;
border-radius:12px;
font-weight:700;
text-decoration:none;
background:#F2F231;
color:#031022;
transition:.2s;
}


.btn-login:hover,
.btn-register:hover{
transform:translateY(-2px);
}


/* BONUS */


.bonus{
margin:50px auto;
text-align:center;
}


.bonus-inner{
max-width:1000px;
margin:0 auto;
padding:80px 40px;
border-radius:30px;
background:linear-gradient(135deg, #F2F231, #FFFFFF);
color:#fff;
box-shadow:0 20px 50px rgba(0,0,0,0.25);
}


.bonus-title{
font-size:clamp(28px,5vw,60px);
font-weight:700;
margin-bottom:35px;
color:#FFFFFF;
text-shadow:0 2px 10px rgba(0,0,0,0.15);
}


.bonus-title span{
color:#F2F231;
}


.bonus p{
font-size:18px;
opacity:.8;
margin-bottom:30px;
}


.bonus-btn{
display:inline-block;
padding:18px 70px;
background:#F2F231;
border-radius:15px;
font-size:22px;
font-weight:700;
color:#000;
transition:.2s;
}


.bonus-btn:hover{
transform:scale(1.05);
}


/* GAMES */


.games {
margin: 40px auto 60px auto;
max-width: 1200px;
}


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


.game-card{
position:relative;
border-radius:20px;
overflow:hidden;
transition:.3s;
}


.game-card:hover{
transform:translateY(-6px);
}


.game-card img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
}


.play-btn{
position:absolute;
left:50%;
bottom:20px;
transform:translateX(-50%);
background:#F2F231;
color:#031022;
padding:14px 45px;
border-radius:40px;
font-weight:700;
font-size:18px;
text-decoration:none;
}


/* PROS CONS */


.pros-cons{
max-width:1200px;
margin:80px auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}


.pros,
.cons{
background:#3C2C95;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
border:1px solid rgba(255,255,255,0.08);
}


/* TITLES */


.pros h3{
color:#FFFFFF;
margin-bottom:15px;
}


.cons h3{
color:#FFFFFF;
margin-bottom:15px;
}


/* LIST */


.pros li,
.cons li{
color:#FFFFFF;
margin-bottom:10px;
}
/* CONTENT */


.content{
max-width:900px;
margin:100px auto 60px auto;
line-height:1.8;
font-size:18px;
}


.content p{
margin-bottom:22px;
}


.main-title{
margin-top:60px;
margin-bottom:40px;
font-size:42px;
font-weight:800;
}


.content h2{
margin-top:35px;
margin-bottom:15px;
font-size:32px;
}


.content h3{
margin-top:40px;
margin-bottom:15px;
font-size:24px;
}


/* TABLE WRAPPER */


.table-wrapper{
width:100%;
overflow-x:auto;
margin:40px 0;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
background:#3C2C95;
}


/* TABLE */


.table-wrapper table{
width:100%;
min-width:760px;
border-collapse:collapse;
font-size:16px;
background:#3C2C95;
}


/* ROWS */


.table-wrapper tr{
background:transparent;
}


/* HEADER */


.table-wrapper thead th,
.table-wrapper th{
padding:16px;
background:#FFFFFF;
color:#fff;
font-weight:700;
text-align:center;
white-space:nowrap;
border:0;
}


/* fallback если нет thead */


.table-wrapper tr:first-child th{
background:#3C2C95;
color:#fff;
}


/* CELLS */


.table-wrapper td{
padding:16px;
color:#FFFFFF;
background:transparent;
border:0;
border-bottom:1px solid rgba(255,255,255,0.08);
white-space:nowrap;
}


/* FIRST COLUMN */


.table-wrapper th:first-child,
.table-wrapper td:first-child{
text-align:left;
}


/* CENTER OTHERS */


.table-wrapper td:not(:first-child){
text-align:center;
}


/* ZEBRA */


.table-wrapper tbody tr:nth-child(even){
background:rgba(255,255,255,0.03);
}


/* HOVER */


.table-wrapper tbody tr:hover{
background:rgba(255,255,255,0.08);
transition:.2s;
}


/* MOBILE */


@media (max-width:700px){


.table-wrapper table{
min-width:760px;
font-size:14px;
}


.table-wrapper th,
.table-wrapper td{
padding:12px;
}


}


/* FAQ */


.faq{
max-width:1200px;
margin:70px auto;
}


.faq h2{
margin-top:-20px;
margin-bottom:25px;
}


/* ITEM */


.faq-item{
background:#3C2C95;
border-radius:16px;
margin-bottom:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border:1px solid rgba(255,255,255,0.08);
}


/* QUESTION */


.faq-question{
width:100%;
background:none;
border:none;
font-size:20px;
font-weight:600;
padding:25px;
text-align:left;
cursor:pointer;
display:flex;
justify-content:space-between;
color:#FFFFFF;
}


/* PLUS ICON */


.faq-question::after{
content:"+";
font-size:22px;
color:#F2F231;
}


/* ACTIVE */


.faq-item.active .faq-question::after{
content:"−";
}


/* ANSWER */


.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
}


.faq-answer p{
padding:6px 25px 25px;
opacity:.85;
color:#FFFFFF;
}


/* FOOTER */


.footer{
margin-top:100px;
padding:70px 20px;
background:#3C2C95;
text-align:center;
border-top:1px solid rgba(0,0,0,0.08);
}


.footer-logo{
font-size:26px;
font-weight:700;
color:#F2F231;
margin-bottom:20px;
}


.footer-links{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-bottom:20px;
}


.footer-links a{
color:#FFFFFF;
text-decoration:none;
font-size:14px;
transition:.2s;
}


.footer-links a:hover{
color:#F2F231;
}


.footer small{
opacity:.6;
}


/* FOOTER CONTACT */


.footer-contact{
margin-top:25px;
margin-bottom:25px;
text-align:center;
}


.footer-contact-title{
font-size:13px;
letter-spacing:.08em;
text-transform:uppercase;
opacity:.6;
margin-bottom:12px;
}


.footer-contact-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}


.contact-btn{
padding:10px 22px;
border-radius:30px;
font-size:14px;
font-weight:600;
text-decoration:none;
transition:.25s;
}


.contact-btn.telegram{
background:#229ED9;
color:#fff;
}


.contact-btn.telegram:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(34,158,217,.4);
}


.contact-btn.email{
background:#F2F231;
color:#031022;
}


.contact-btn.email:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(0,0,0,.15);
}


.sticky-bonus{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#F2F231;
padding:12px 18px;
z-index:9999;
}


.sticky-inner{
max-width:1100px;
margin:0 auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
}


.sticky-text{
font-weight:700;
font-size:16px;
color:#031022;
}


.sticky-btn{
background:#031022;
color:#fff;
padding:12px 26px;
border-radius:30px;
font-weight:700;
font-size:15px;
text-decoration:none;
}


/* SCROLL TOP */


.scroll-top{
position:fixed;
bottom:130px; /* ВАЖНО */
right:25px;
width:45px;
height:45px;
border-radius:50%;
border:none;
background:#F2F231;
color:#031022;
font-size:20px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:.3s;
z-index:9999;
}


.scroll-top.show{
opacity:1;
}


/* BREADCRUMBS */


.breadcrumbs{
margin:40px 0 20px;
font-size:14px;
color:rgba(255,255,255,0.6);
}


.breadcrumbs a{
color:#FFFFFF;
text-decoration:none;
transition:color .2s ease;
}


.breadcrumbs a:hover{
color:#F2F231;
}


.breadcrumbs span{
margin:0 8px;
opacity:.6;
}


.breadcrumbs a{
color:#FFFFFF;
text-decoration:none;
position:relative;
transition:color .2s ease;
}


.breadcrumbs a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:2px;
background:#F2F231;
transition:width .2s ease;
}


.breadcrumbs a:hover::after{
width:100%;
}


/* MOBILE */


@media (max-width:900px){


.header-inner{
flex-direction:column;
gap:20px;
text-align:center;
}


.nav{
flex-direction:column;
gap:15px;
}


.header-buttons{
width:100%;
flex-direction:column;
gap:15px;
}


.btn-login,
.btn-register{
width:100%;
text-align:center;
}


.pros-cons{
grid-template-columns:1fr;
}


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


.content{
margin:60px auto;
font-size:16px;
}


.main-title{
font-size:32px;
}


}


@media (max-width:600px){


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


}


