/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 19 2026 | 04:29:43 */
.casino-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem auto;
  padding: 0 1rem;
}

.casino-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.casino-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.75rem;
}

.casino-card p {
  margin: 0.3rem 0;
  line-height: 1.5;
  color: #444;
}

.casino-card strong {
  color: #1d72b8;
}

/* Адаптив */
@media (max-width: 600px) {
  .casino-card {
    padding: 1.2rem;
  }

  .casino-card h3 {
    font-size: 1.2rem;
  }

  .casino-card p {
    font-size: 0.95rem;
  }
}





  .banner {
    background: #2e2e2e;
    border: 2px solid #4cb5ff;
    border-radius: 18px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    box-sizing: border-box;
  }

  .banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .logo {
    width: 160px;      /* подстрой под свой PNG */
    height: 44px;
    object-fit: contain;
    display: block;
	background: snow;
	padding: 8px;
	border-radius: 12px;
  }

  .banner-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .banner-text .title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }

  .banner-text .subtitle {
    color: #4cb5ff;
    font-weight: 600;
    font-size: 0.98rem;
  }

  .banner-button {
    background: #41cd25;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 0 rgba(0,0,0,0.15) inset;
    transition: transform .12s ease, background .12s ease;
  }

  .banner-button:hover { transform: translateY(-1px); background: #148f18; }

  @media (max-width: 720px) {
    .banner {
      flex-direction: column;
      gap: 14px;
      padding: 16px;
      text-align: center;
    }
    .banner-left { flex-direction: column; gap: 10px; }
  }