/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 10 2025 | 07:30:23 */
.faq-special {
	padding: 30px;
	border-radius: 25px;
}

/* Section container: no outer padding/margins/width caps */
.casino-cards {
  margin: 0;
  padding: 0;
  background: transparent;
}

/* Reset the table’s native layout; we’ll use grid per row */
.casino-cards .casino-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

/* Hide the “header” row (first tr) visually, keep in DOM for a11y/SEO */
.casino-cards .casino-table tbody > tr:first-child {
  display: none;
}

/* Card base styles for each data row */
.casino-cards .casino-table tbody > tr {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr 1fr 1fr;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  padding: 20px;
  background: #fff; /* card surface */
}

/* Only spacing between cards */
.casino-cards .casino-table tbody > tr + tr {
  margin-top: 16px;
}

/* Cells: strip native table paddings */
.casino-cards .casino-table td {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

/* Tighten <p> spacing inside cells */
.casino-cards .casino-table td p {
  margin: 0 0 6px 0;
  line-height: 1.5;
}
.casino-cards .casino-table td p:last-child {
  margin-bottom: 0;
}

/* Responsive: stack to single column on small screens and add inline labels */
@media (max-width: 640px) {
  .casino-cards .casino-table tbody > tr {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .casino-cards .casino-table td {
    position: relative;
    padding-top: 18px;
  }

  .casino-cards .casino-table td::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    line-height: 1;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: .01em;
  }

  /* Column labels via nth-child (HTML unchanged) */
  .casino-cards .casino-table td:nth-child(1)::before { content: "Casino en línea"; }
  .casino-cards .casino-table td:nth-child(2)::before { content: "Ranking"; }
  .casino-cards .casino-table td:nth-child(3)::before { content: "Bono de bienvenida"; }
  .casino-cards .casino-table td:nth-child(4)::before { content: "Lados fuertes"; }
  .casino-cards .casino-table td:nth-child(5)::before { content: "Lados débiles"; }
}

/* Dark-mode friendly tweaks if you use a dark theme */
@media (prefers-color-scheme: dark) {
  .casino-cards .casino-table tbody > tr {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
  }
  .casino-cards .casino-table td::before {
    color: #9ca3af;
  }
}










  .bonus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(145deg, #0a0e1a, #05070f);
    border: 1px solid rgba(0, 140, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    font-family: "Poppins", Arial, sans-serif;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 80, 255, 0.3);
    position: relative;
  }

  .bonus-info {
    flex: 1.2;
    padding: 40px 36px;
    background: linear-gradient(135deg, rgba(0,120,255,0.1), rgba(0,0,0,0));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .bonus-info::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, rgba(0,140,255,0.4), transparent);
  }

  .bonus-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4cb5ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
  }

  .bonus-subtitle {
    font-size: 1.05rem;
    color: #96c9ff;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  .bonus-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(90deg, #007bff, #00b4ff);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 140, 255, 0.4);
    transition: all 0.25s ease;
    align-self: flex-start;
  }

  .bonus-btn:hover {
    background: linear-gradient(90deg, #00a3ff, #0074e8);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 160, 255, 0.6);
  }

  .bonus-image {
    flex: 0.8;
    background: radial-gradient(circle at center, rgba(0, 100, 255, 0.15), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
  }

  .bonus-image img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 160, 255, 0.5));
    transition: transform 0.3s ease;
  }

  .bonus-image img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 800px) {
    .bonus-banner {
      flex-direction: column-reverse;
      text-align: center;
    }
    .bonus-info::after {
      display: none;
    }
    .bonus-info {
      padding: 28px 24px;
      background: none;
    }
    .bonus-btn {
      align-self: center;
    }
    .bonus-title {
      font-size: 1.7rem;
    }
  }