

*{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;
max-width:100%;
height:auto;
}

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

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

/* HEADER */

.header{
background:#EDF3FE;
}

.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:#FFDB21;
}

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

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

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

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

.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:#FFDB21;
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, #FFDB21, #16171E);
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:#16171E;
text-shadow:0 2px 10px rgba(0,0,0,0.15);
}

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

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

.bonus-btn{
display:inline-block;
padding:18px 70px;
background:#FFDB21;
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:#FFDB21;
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:#EDF3FE;
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:#16171E;
margin-bottom:15px;
}

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

/* LIST */

.pros li,
.cons li{
color:#16171E;
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 */

.table-wrapper{
width:100%;
overflow-x:auto;
-webkit-overflow-scrolling:touch;
margin:50px 0;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

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

/* HEADER */

.table-wrapper thead{
background:linear-gradient(135deg, #FFDB21, #16171E);
color:#fff;
}

.table-wrapper th{
padding:16px;
text-align:center;
font-weight:700;
font-size:15px;
vertical-align:middle;
}

/* FIRST COLUMN */

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

/* CELLS */

.table-wrapper td{
padding:16px;
border-bottom:1px solid rgba(255,255,255,0.08);
color:#16171E;
}

/* ZEBRA ROWS */

.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;
}

/* HIGHLIGHT FIRST ROW */

.table-wrapper tbody tr:first-child{
background:rgba(255,255,255,0.08);
font-weight:700;
}

/* ALIGN NUMBERS */

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

/* MOBILE */

@media (max-width:700px){

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

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

}

/* FAQ */

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

/* ITEM */

.faq-item{
background:#EDF3FE;
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:#16171E;
}

/* PLUS ICON */

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

/* 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:0 25px 25px;
opacity:.85;
color:#16171E;
}

/* FOOTER */

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

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

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

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

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

.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:#FFDB21;
color:#031022;
}

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

/* STICKY BONUS */

.sticky-bonus{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#FFDB21;
padding:10px 16px;
z-index:9999;
}

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

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

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

/* SCROLL TOP */

.scroll-top{
position:fixed;
bottom:100px;
right:25px;
width:45px;
height:45px;
border-radius:50%;
border:none;
background:#FFDB21;
color:#fff;
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:#16171E;
text-decoration:none;
transition:color .2s ease;
}

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

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

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

.breadcrumbs a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:2px;
background:#FFDB21;
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;
}

}

