* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: #070e1a;
    color: #ffffff;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    font-size: 18px;        /* чуть больше стандартного */
    line-height: 1.7;       /* увеличенный интервал между строк */
    letter-spacing: 0.5px;  /* небольшое расстояние между буквами */
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
  }
  
  /* HEADER */
  .header {
    background: #050b16;
    border-bottom: 1px solid #0f1f3a;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .logo {
    height: 65px;
  }
  
  .nav a {
    margin: 0 12px;
    color: #cfe8ff;
    text-decoration: none;
  }
  
  .header-buttons .btn {
    margin-left: 8px;
  }
  
  /* BUTTONS */
  .btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .btn-primary {
    background: #1aa3ff;
    color: #fff;
  }
  
  .btn-outline {
    border: 1px solid #1aa3ff;
    color: #1aa3ff;
  }
  
  /* BANNER */
  .banner {
    position: relative;
  }
  
  .banner-slider {
    position: relative;
    overflow: hidden;
  }
  
  .banner-slide {
    width: 100%;
    display: none;
  }
  
  .banner-slide.active {
    display: block;
  }
  
  .banner-arrow {
    position: absolute;
    top: 50%;
    background: rgba(0,0,0,.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
  }
  
  .banner-arrow.left { left: 10px; }
  .banner-arrow.right { right: 10px; }
  
  /* FILTERS */
  .filters {
    background: #050b16;
    padding: 12px 0;
  }

  
  /* SLOTS */
  .slots {
    padding: 32px 0;
  }
  
  .slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .slot {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: .3s;
  }
  
  .slot:hover::after {
    opacity: 1;
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1aa3ff;
    padding: 10px 20px;
    border-radius: 6px;
    opacity: 0;
    transition: .3s;
  }
  
  .slot:hover .play-btn {
    opacity: 1;
  }
  
  /* CONTENT */
  .content {
    padding: 40px 0;
  }
  
  h1, h2 {
    margin-bottom: 16px;
  }
  
  strong {
    color: #1aa3ff;
  }
  
  ul {
    padding-left: 20px;
    margin-bottom: 24px;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 10px;
    border: 1px solid #0f1f3a;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .slots-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .nav {
      display: none;
    }
  }
  /* FOOTER */
.footer {
    background: #050b16;
    border-top: 1px solid #0f1f3a;
    padding: 24px 0;
    margin-top: 40px;
  }
  
  .footer-inner {
    text-align: center;
  }
  
  .footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #b8d9ff;
    margin-bottom: 12px;
  }
  
  .footer-text a {
    color: #1aa3ff;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .footer-text a:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    font-size: 13px;
    color: #7fbfff;
  }
  
  /* MOBILE FOOTER */
  @media (max-width: 768px) {
    .footer-text {
      font-size: 13px;
    }
  }
  