  .about-section , .games-section, .bonus-section {
            margin-bottom: 40px;
            padding: 30px;
            background-color: rgba(0,0,0,0.3);
         
        }

        
        
        .about h2 {
         font-size: 2em;
         line-height: 130%;
            color: #FFCD00;
            margin-bottom: 20px;
            border-bottom: 2px solid #e3d2d5;
            padding-bottom: 10px;
        }
 
        
      .about   p {
            margin-bottom: 15px;
        }

        .slot-machine h3 {
         margin-bottom: 10px;
        }

        .about-section p {
         margin-top: 15px;
         line-height: 130%;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-card {
            background-color: rgba(0,45,98,0.7);
            border: 1px solid #FFCD00;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            color: #FFCD00;
            margin-bottom: 10px;
        }
        
        .slot-machine {
            max-width: 400px;
            margin: 30px auto;
            background: #111;
            border: 5px solid #FFCD00;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .slot-display {
            display: flex;
            justify-content: space-around;
            background: #fff;
            padding: 15px;
            margin-bottom: 20px;
            color: #000;
            font-size: 2rem;
            font-weight: bold;
            border-radius: 5px;
        }
        
        .slot-symbol {
            color: #e4002b;
        }

        #main-pictures-wrapper {
         margin: 0 auto;
        }
        
        .btn {
            background-color: #FFCD00;
            color: #002d62;
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
        }
        
        .btn:hover {
            background-color: #e4002b;
            color: #fff;
        }
        

        .cta .main__container {
         box-shadow: 0 0 10px #fff;
    border-radius: 5px;
    padding: 30px;
        }

        .cta.container {
         box-shadow: none;
         border-radius: 0%;
        }


    
#faq-list .accordion-item {
  margin-bottom: 30px;
  border: none;
}


.accordion-section {
  padding: 0px 20px;
  margin-top: 50px;
   text-align: center;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: #750d37;
  color: #fff;
  border-radius: 8px;
  position: relative;
}

.accordion-item.active .accordion-header {
  border-radius: 8px 8px 0 0;
}

.accordion-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.accordion-toggle:focus {
  outline: none;
}

.accordion-body {
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

 

.accordion-body p {
  margin: 0;
  color: #333;
}

.accordion-item.active .accordion-body {
  height: 150px; /* Adjust as needed */
  padding: 15px;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(45deg);
}

.feature-spotlight .feature-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}