.elementor-18 .elementor-element.elementor-element-965999c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-965999c */<style>
  .slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .slot-card {
    background: #111;
    color: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
  }

  .slot-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .rtp {
    font-weight: bold;
    color: #00ff88;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .slot-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .slot-buttons a {
    background: #ff6600;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }

  .slot-buttons a.demo {
    background: #333;
  }

  .slot-buttons a:hover {
    background: #ff8533;
  }
</style>/* End custom CSS */