.slots-section{
    padding-top: 100px;
}


.games-section {
    color: #ffffff;
  }
  
  .section-tag {
    letter-spacing: 2px;
    font-size: 12px;
    color: #bdb7ff;
    display: block;
    margin-bottom: 10px;
  }
  
  .section-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  .section-title span {
    color: #feea00 ;
  }
  
  /* GAME CARD */
  .game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .game-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  
  .game-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 28px;
  }
  
  .game-card p {
    font-size: 15px;
    color: #bbbaca;
    line-height: 1.6;
  }
  
  /* HOVER EFFECT */
  .game-card:hover {
    transform: translateY(-8px);
    border-color: #feea00 ;
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .section-title {
      font-size: 30px;
    }
  
    .game-card h4 {
      font-size: 18px;
    }
  }


  .casino-footer {
    /* background: #100C26; */
    background: #000;
    color: #cfcfcf;
    font-size: 14px;
  }
  
  /* TEXT */
  .footer-text {
    line-height: 1.8;
  }
  
  /* MENU */
  .footer-menu {
    list-style: none;
    padding: 0;
  }
  
  .footer-menu li {
    margin-bottom: 14px;
  }
  
  .footer-menu a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-menu a:hover {
    color: #ffffff;
  }
  
  /* SOCIAL ICONS */
  .social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    background: #d7b60e;
    border-color: #d7b60e;
  }
  
  /* RIGHT TITLE */
  .footer-title {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
  }
  
  .footer-desc {
    margin-top: 15px;
    max-width: 420px;
    margin-left: auto;
  }
  
  /* BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .footer-title {
      font-size: 26px;
      text-align: left;
    }
  
    .footer-desc {
      margin-left: 0;
      text-align: left;
    }
  
    .footer-bottom {
      text-align: center;
    }
  }
  
  