




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




body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:#000000;
color:#e5e7eb;
}




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




/* HEADER */
.header{
background:#0f172a; 
border-bottom:1px solid #0f172a;
}




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

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

.content-image{
margin:40px 0;
text-align:center;
}

.content-image img{
max-width:100%;
height:auto;
border-radius:12px;
}

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




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




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




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




/* GREEN BUTTONS */
.btn-login,
.btn-register{
display:inline-block;
padding:12px 28px;
border-radius:12px;
font-weight:700;
text-decoration:none;
background:#FE5F00;
color:#031022;
transition:all .2s ease;
box-shadow:0 4px 14px rgba(34,197,94,.35);
}




.btn-login:hover,
.btn-register:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(34,197,94,.5);
}




/* BONUS */
.bonus{
margin:80px auto;
text-align:center;
}




.bonus-inner{
max-width:1000px;
margin:0 auto;
padding:100px 40px;
border-radius:30px;
background:#0f172a;
}




.bonus-title{
font-size:clamp(28px,5vw,60px);
font-weight:700;
margin-bottom:25px;
color:#fff;
}

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




.bonus p{
font-size:22px;
color:#94a3b8;
margin-bottom:50px;
}




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




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




/* PROS CONS */
.pros-cons{
width:100%;
max-width:1200px;
margin:80px auto;
display:grid;
grid-template-columns:repeat(2, minmax(0,1fr));
gap:40px;
align-items:stretch;
}




.pros,.cons{
background:#111827;
padding:40px;
border-radius:20px;
display:flex;
flex-direction:column;
}




.pros h3{color:#22c55e;margin-bottom:15px}
.cons h3{color:#ef4444;margin-bottom:15px}




/* FAQ */
.faq{
width:100%;
max-width:1200px;
margin:100px auto;
}




.faq-item{
background:#111827;
border-radius:16px;
margin-bottom:20px;
overflow:hidden;
}




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




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




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




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




.faq-answer p{
padding:0 25px 25px 25px;
color:#ccc;
line-height:1.6;
}




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




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




.content h2{
margin-top:60px;
margin-bottom:20px;
font-size:32px;
font-weight:700;
}




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




.main-title{
margin-top:60px;
margin-bottom:40px;
font-size:42px;
font-weight:800;
}
/* ================= CONTENT TABLE FIX ================= */




.content table{
width:100%;
max-width:1200px;
margin:80px auto;
border-collapse:collapse;
background:#161618;
border-radius:24px;
overflow:hidden;
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}




.content th{
background:#041a33;
padding:22px 20px;
text-align:left;
font-size:18px;
font-weight:700;
color:#fff;
}




.content td{
padding:20px;
font-size:17px;
color:#cbd5e1;
}




.content tr:not(:last-child){
border-bottom:1px solid rgba(255,255,255,0.05);
}




.content tr:hover{
background:rgba(255,255,255,0.04);
}
/* FOOTER */
.footer{
margin-top:100px;
padding:70px 20px;
background:#0f172a;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
}


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


.footer small{
color:#64748b;
}


/* ================= MOBILE ================= */

@media (max-width:900px){

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

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

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

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

.bonus-inner{
padding:60px 20px;
}

.bonus-btn{
width:100%;
max-width:320px;
}

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

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

.content h2{
font-size:24px;
}

.content h3{
font-size:20px;
}

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

.content table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.faq{
margin:60px auto;
}

.footer{
padding:50px 20px;
}

}

/* ================= GAMES BLOCK ================= */

.games {
  margin: 80px 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: transform 0.3s ease;
}

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

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

.play-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #FE5F00;
  color: #031022;
  padding: 14px 45px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
}

.play-btn:hover {
  transform: translateX(-50%) scale(1.05);
}

/* Responsive */

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

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