/*
Theme: KazinoApskatnieks – Design v4.3 Premium Edition (Fixed layout v4.3.1)
Author: KazinoApskatnieks
Version: 4.3.1
*/

/* ======= TOPLIST KONTEINERS ======= */
.casino-toplist-container {
  width: 100%;
  max-width: 1150px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* ======= KAZINO KARTIŅA ======= */
.casino-card {
  display: grid;
  grid-template-columns: 160px 1fr 230px;
  align-items: center;
  position: relative;
  background: linear-gradient(145deg, #19192e, #202046);
  border: 1px solid rgba(0,255,160,0.05);
  border-radius: 20px;
  padding: 28px 38px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0,255,160,0.04);
  transition: all 0.35s ease;
  overflow: hidden;
  margin-bottom: 10px;
}
.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,255,160,0.25);
}

/* ======= RANK LENTE (TOP 3) ======= */
.casino-rank-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}
.casino-rank-ribbon span {
  position: absolute;
  top: 6px;
  left: -58px;
  width: 155px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-45deg);
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.6), 0 0 10px rgba(255,255,255,0.4);
  z-index: 15;
}
.casino-rank-ribbon.gold span {
  background: linear-gradient(135deg, #FFD700, #ffae00);
  color: #222;
}
.casino-rank-ribbon.silver span {
  background: linear-gradient(135deg, #C0C0C0, #e0e0e0);
  color: #222;
}
.casino-rank-ribbon.bronze span {
  background: linear-gradient(135deg, #CD7F32, #a85b2f);
  color: #fff;
}

/* ======= “JAUNS KAZINO” ======= */
.casino-badge-inline {
  background: linear-gradient(145deg, #ffcc00, #b38600);
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 8px;
  display: inline-block;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}
.casino-badge-inline:hover {
  background: linear-gradient(145deg, #ffe066, #d4a300);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
  transform: scale(1.05);
}

/* ======= LOGO ======= */
.casino-logo {
  position: relative;
  text-align: center;
}
.casino-logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 14px;
  background: #0e0e1a;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
  transition: all 0.35s ease;
}
.casino-logo img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(0,255,160,0.2);
}

/* ======= INFO BLOKS ======= */
.casino-info {
  padding-left: 25px;
  color: #e6e9ff;
}
.casino-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.casino-rating {
  color: #ffd75e;
  margin: 5px 0 10px;
  font-weight: 600;
}
.casino-info p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ======= IZMAKSU / METOŽU / UZTICAMS BLOKS ======= */
.casino-details-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 6px;
  width: 100%;
}
.casino-details-row span {
  display: block;             /* Katrs uz jaunas rindas */
  width: 100%;                /* Neļauj “savilkties” kopā */
  white-space: normal;        /* Nodrošina, ka teksts lauzīsies vajadzības gadījumā */
  font-size: 0.95rem;
  color: #e6e9ff;
  line-height: 1.5;
}
.casino-details-row strong {
  color: #fff;
  font-weight: 600;
}
/* ======= BONUS BLOKS ======= */
.casino-bonus {
  background: rgba(20,20,40,0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,255,160,0.1);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,255,120,0.08);
}
.bonus-amount {
  color: #00ff99;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0,255,160,0.3);
}
.bonus-spins {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* ======= POGAS ======= */
.btn-bonus {
  display: inline-block;
  background: linear-gradient(90deg, #00ff99, #00d4ff);
  color: #000;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,255,120,0.25);
  position: relative;
  overflow: hidden;
}
.btn-bonus:hover {
  background: linear-gradient(90deg, #00d4ff, #00ff99);
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(0,255,160,0.4);
}

/* ======= EKSKLUZĪVS BONUSS ======= */
.casino-exclusive {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6600, #ffcc00);
  color: #fff;
  font-weight: 700;
  padding: 6px 55px;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 0 20px 0 10px;
  box-shadow: 0 0 12px rgba(255, 200, 0, 0.4);
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  z-index: 20;
}
.casino-exclusive::before {
  content: "⭐";
  margin-right: 5px;
}

/* ===== FIX: Mobilajā skatā — pareizs logo un izkārtojums ===== */
@media (max-width: 900px) {
  .casino-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 15px !important;
    margin-bottom: 22px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  .casino-logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 15px !important;
  }

  .casino-logo img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
  }

  .casino-info {
    width: 100% !important;
    padding-left: 0 !important;
    margin-top: 10px !important;
  }

  .casino-bonus {
    margin-top: 20px !important;
    width: 100% !important;
  }

  .btn-bonus {
    width: 80% !important;
    font-size: 1.1rem !important;
  }

  .casino-toplist-container {
    overflow: visible !important;
    padding: 0 10px !important;
  }
}
/* ===== MOBILĀ SKATA UZLABOJUMS (maksājumu teksta pārplūde + atsauksme zem pogas) ===== */
@media (max-width: 900px) {
  .casino-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 15px !important;
    margin-bottom: 22px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  .casino-logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 15px !important;
  }

  .casino-logo img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
  }

  .casino-info {
    width: 100% !important;
    padding-left: 0 !important;
    margin-top: 10px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .casino-details-row span {
    display: block !important;
    text-align: center !important;
    white-space: normal !important; /* ļauj rindas pārnesi */
    line-height: 1.4 !important;
  }

  .casino-bonus {
    margin-top: 25px !important;
    width: 100% !important;
  }

  .btn-bonus {
    width: 80% !important;
    font-size: 1.1rem !important;
  }

  .casino-bonus a:last-child {
    display: block !important;
    text-align: center !important;
    margin-top: 12px !important;
    color: #8ad7ff !important;
  }

  .casino-toplist-container {
    overflow: visible !important;
    padding: 0 10px !important;
  }
}