

  *{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:#0E0D0F;
  color:#FFFFFF;
  padding-bottom:70px;
  }

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

  .header{
  background:#0E0D0F;
  }

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

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

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

  .lang-switcher{
  display:flex;
  gap:6px;
  align-items:center;
  justify-content:center;
  }

  .lang-switch{
  display:inline-block;
  padding:6px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.03em;
  text-decoration:none;
  color:#FFFFFF;
  border:1px solid rgba(255,255,255,0.15);
  transition:.2s;
  }

  .lang-switch:hover{
  border-color:#124ACB;
  color:#124ACB;
  }

  .lang-switch.active{
  background:#124ACB;
  color:#031022;
  border-color:#124ACB;
  pointer-events:none;
  }

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

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

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

  .bonus-inner{
  position:relative;
  max-width:1000px;
  margin:0 auto;
  padding:0;
  height:320px;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(135deg, #124ACB, #FFFFFF);
  background-size:cover;
  background-position:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  }

  .bonus-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  }

  .bonus-inner.has-image .bonus-overlay{
  background:linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
  }

  .bonus-content{
  position:relative;
  z-index:2;
  padding:20px 40px;
  max-width:700px;
  }

  .bonus-title{
  font-size:clamp(24px,4vw,42px);
  font-weight:800;
  margin-bottom:15px;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,0.4);
  }

  .bonus-subtitle{
  font-size:16px;
  color:#fff;
  opacity:.9;
  margin-bottom:25px;
  text-shadow:0 1px 6px rgba(0,0,0,0.4);
  }

  .bonus-btn{
  display:inline-block;
  padding:16px 55px;
  background:#124ACB;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
  color:#031022;
  text-decoration:none;
  transition:.2s;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  }

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

  @media (max-width:700px){
  .bonus-inner{
  height:260px;
  }
  .bonus-content{
  padding:15px 20px;
  }
  }

  .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:#124ACB;
  color:#031022;
  padding:14px 45px;
  border-radius:40px;
  font-weight:700;
  font-size:18px;
  text-decoration:none;
  }

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

  .pros,
  .cons{
  background:#0E0D0F;
  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);
  }

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

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

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

  .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{
  width:100%;
  overflow-x:auto;
  margin:40px 0;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  background:#0E0D0F;
  }

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

  .table-wrapper tr{
  background:transparent;
  }

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

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

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

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

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

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

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

  @media (max-width:700px){

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

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

  }

  .offers-listing{
  max-width:1200px;
  margin:40px auto;
  }

  .offers-listing-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
  }

  .offer-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:#0E0D0F;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:18px 22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  }

  .offer-media{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  }

  .offer-rank{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#124ACB;
  color:#031022;
  font-weight:800;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  }

  .offer-logo{
  height:44px;
  width:auto;
  max-width:110px;
  object-fit:contain;
  margin:0;
  }

  .offer-body{
  flex:1;
  min-width:0;
  }

  .offer-name{
  font-size:18px;
  font-weight:700;
  color:#FFFFFF;
  margin-bottom:4px;
  }

  .offer-bonus{
  font-size:15px;
  color:#FFFFFF;
  opacity:.85;
  margin-bottom:6px;
  }

  .offer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  opacity:.6;
  color:#FFFFFF;
  }

  .offer-btn{
  flex-shrink:0;
  display:inline-block;
  padding:12px 28px;
  background:#124ACB;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  color:#031022;
  text-decoration:none;
  transition:.2s;
  }

  .offer-btn:hover{
  transform:translateY(-2px);
  }

  @media (max-width:600px){

  .offer-card{
  flex-wrap:wrap;
  text-align:center;
  justify-content:center;
  }

  .offer-media{
  width:100%;
  justify-content:center;
  }

  .offer-body{
  width:100%;
  }

  .offer-meta{
  justify-content:center;
  }

  .offer-btn{
  width:100%;
  text-align:center;
  }

  }

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

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

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

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

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

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

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

  .faq-answer p{
  padding:0 28px 30px;
  opacity:.85;
  color:#FFFFFF;
  line-height:1.7;
  font-size:16px;
  }

  .footer{
  margin-top:100px;
  padding:70px 20px;
  background:#0E0D0F;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  }
  .footer-logo{
  font-size:26px;
  font-weight:700;
  color:#124ACB;
  margin-bottom:30px;
  }
  .footer-links{
  display:flex;
  gap:0;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:25px;
  }
  .footer-links a{
  color:#FFFFFF;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  padding:6px 20px;
  border-right:1px solid rgba(255,255,255,0.25);
  transition:.2s;
  }
  .footer-links a:last-child{
  border-right:none;
  }
  .footer-links a:hover{
  color:#124ACB;
  }
  .footer small{
  opacity:.6;
  }

  .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:#124ACB;
  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:#124ACB;
  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{
  position:fixed;
  bottom:130px;
  right:25px;
  width:45px;
  height:45px;
  border-radius:50%;
  border:none;
  background:#124ACB;
  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{
  margin:40px 0 20px;
  font-size:14px;
  color:rgba(255,255,255,0.6);
  }

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

  .breadcrumbs a:hover{
  color:#124ACB;
  }

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

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

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

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

  }

  