/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  }
  
  body{
  font-family: Arial, Helvetica, sans-serif;
  background:#0c0c0c;
  color:#ffffff;
  line-height:1.6;
  overflow-x:hidden;
  }
  
  /* CONTAINER */
  
  .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  }
  
  /* HEADER */
  
  .site-header{
  background:#a40000;
  border-bottom:3px solid #d4af37;
  }
  
  .header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
  }
  
  .logo img{
  height:50px;
  }
  
  /* BUTTONS */
  
  .btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
  }
  
  .btn-login{
  background:#222;
  color:#fff;
  border:1px solid #d4af37;
  }
  
  .btn-register{
  background:linear-gradient(90deg,#f7c948,#d4af37);
  color:#000;
  }
  
  .btn-cta{
  background:linear-gradient(90deg,#ffd700,#d4af37);
  color:#000;
  margin-top:15px;
  }
  
  .btn:hover{
  opacity:0.85;
  }
  
  /* HERO */
  
  .hero{
  background:#7a0000;
  padding:60px 0;
  border-bottom:2px solid #d4af37;
  }
  
  .hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  }
  
  .hero-banner img{
  width:100%;
  border-radius:10px;
  }
  
  .hero-content h1{
  font-size:36px;
  margin-bottom:20px;
  color:#ffd700;
  }
  
  .hero-text{
  margin-bottom:15px;
  }
  
  .hero-features{
  margin:20px 0;
  list-style:none;
  }
  
  .hero-features li{
  margin-bottom:10px;
  }
  
  .hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0;
    }
  
  .badge{
  background:#111;
  border:1px solid #d4af37;
  padding:6px 12px;
  margin-right:10px;
  border-radius:20px;
  font-size:14px;
  }
  
  /* BREADCRUMBS */
  
  .breadcrumbs{
  background:#111;
  padding:10px 0;
  font-size:14px;
  }
  
  .breadcrumbs a{
  color:#ffd700;
  text-decoration:none;
  }
  
  /* CONTENT SECTIONS */
  
  .content-section{
  padding:60px 0;
  border-bottom:1px solid #222;
  }
  
  .content-section h2{
  color:#ffd700;
  margin-bottom:20px;
  font-size:28px;
  }
  
  .content-section h3{
  margin:20px 0 10px;
  color:#ffd700;
  }
  
  .content-section p{
  margin-bottom:15px;
  }
  
  /* LISTS */
  
  .casino-games-list,
  .slots-types,
  .app-features{
  margin:15px 0;
  padding-left:20px;
  }
  
  .casino-games-list li,
  .slots-types li,
  .app-features li{
  margin-bottom:8px;
  }
  
  /* TABLES */
  
  table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
  background:#111;
  }
  
  table th{
  background:#a40000;
  color:#ffd700;
  padding:10px;
  text-align:left;
  }
  
  table td{
  padding:10px;
  border-bottom:1px solid #333;
  }
  
  /* TOC */
  
  .toc{
  background:#111;
  padding:40px 0;
  }
  
  .toc h2{
  color:#ffd700;
  margin-bottom:20px;
  }
  
  .toc-item{
  margin-bottom:10px;
  border:1px solid #333;
  padding:10px;
  border-radius:5px;
  background:#1a1a1a;
  }
  
  .toc-item summary{
  cursor:pointer;
  font-weight:bold;
  color:#ffd700;
  }
  .toc-list{
    list-style:none;
    margin-top:15px;
    padding-left:0;
    }
    
    .toc-list li{
    margin-bottom:8px;
    }
    
    .toc-list a{
    color:#ffd700;
    text-decoration:none;
    }
    
    .toc-list a:hover{
    text-decoration:underline;
    }
  
  /* REVIEWS */
  
  .reviews{
  padding:60px 0;
  background:#0f0f0f;
  }
  
  .reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:30px;
  }
  
  .review-card{
  background:#161616;
  padding:20px;
  border-radius:10px;
  border:1px solid #333;
  transition:0.3s;
  }
  
  .review-card:hover{
  border-color:#ffd700;
  }
  
  .stars{
  color:#ffd700;
  margin-bottom:10px;
  }
  
  .review-author{
  font-size:14px;
  color:#bbb;
  }
  
  /* FAQ */
  
  .faq{
  padding:60px 0;
  }
  
  .faq h2{
  margin-bottom:20px;
  color:#ffd700;
  }
  
  .faq-item{
  margin-bottom:10px;
  background:#161616;
  padding:12px;
  border-radius:6px;
  border:1px solid #333;
  }
  
  .faq-item summary{
  cursor:pointer;
  font-weight:bold;
  color:#ffd700;
  }
  
  /* FOOTER */
  
  .site-footer{
  background:#0a0a0a;
  padding:40px 0 20px;
  border-top:2px solid #d4af37;
  }
  
  .footer-grid{
  display:flex;
  justify-content:center;
  margin-bottom:20px;
  }
  
  .footer-links a{
  color:#ffd700;
  margin:0 15px;
  text-decoration:none;
  }
  
  .footer-links a:hover{
  text-decoration:underline;
  }
  
  .copyright{
  text-align:center;
  font-size:14px;
  color:#aaa;
  }
  
  /* INTERNAL LINKS */
  
  .internal-link{
  color:#ffd700;
  text-decoration:none;
  }
  
  .internal-link:hover{
  text-decoration:underline;
  }
  
  /* RESPONSIVE */
  
  @media (max-width:768px){

    .header-container{
    padding:12px 16px;
    }
    
    .header-buttons{
    display:flex;
    gap:10px;
    }
    
    .btn-login,
    .btn-register{
    padding:10px 18px;
    font-size:14px;
    }
    
    }
    @media (max-width:768px){

      .hero{
      padding:40px 0;
      }
      
      .hero-grid{
      grid-template-columns:1fr;
      gap:20px;
      }
      
      .hero-banner img{
      border-radius:12px;
      }
      
      .hero-content h1{
      font-size:28px;
      line-height:1.2;
      }
      
      .hero-text{
      font-size:16px;
      }
      
      }
      @media (max-width:768px){

        .reviews-grid{
        grid-template-columns:1fr;
        gap:18px;
        }
        
        .review-card{
        padding:18px;
        }
        
        .review-card p{
        font-size:15px;
        line-height:1.6;
        }
        
        }