/* ===================== */
/* PROMO SECTION (MARAD) */
/* ===================== */

.promo-section {
  width: 100%;
  padding: 30px 10px;
  box-sizing: border-box;
}

.promo-cards {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 20px !important;

  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.promo-card {
  width: 250px !important;
  min-width: 250px !important;
  max-width: 250px !important;

  display: flex;
  flex-direction: column;

  background: #0f1117;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: #fff;
  transition: 0.3s;
}

.promo-card img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
}

.promo-card h2 {
  font-size: 18px;
  margin: 10px 0;
}

.promo-card p {
  font-size: 13px;
  color: #aaa;
  padding: 0 10px;
}

.promo-status {
  margin: 10px 0 15px;
  font-weight: bold;
}

.promo-status.active {
  color: #00ff00;
}

.promo-status.inactive {
  color: red;
}

@media (max-width: 600px) {
  .promo-card {
    width: 90%;
  }
}

/* ===================== */
/* BONUS LIST (JAVÍTOTT) */
/* ===================== */

.bonus-list {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-item {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 180px;

  background: #0f1117;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: 0.25s;
}

.bonus-item:hover {
  transform: translateY(-4px);
}

.bonus-img {
  width: 240px;
  min-width: 240px;
  height: auto;
  flex-shrink: 0;
}

.bonus-img img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.bonus-content {
  padding: 20px;
  color: #fff;
  font-family: Montserrat;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-content h2 {
  margin: 0 0 8px;
  color: #fff;
}

.bonus-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ddd;
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #B00404;
  color: white;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* CRYPTO WARNING */
.crypto-warning {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(176, 4, 4, 0.12);
  border-left: 4px solid #B00404;
  color: #ffb3b3;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 8px;
}

/* ===================== */
/* MOBIL FIX */
/* ===================== */

@media (max-width: 768px) {

  .bonus-item {
    flex-direction: column;
  }

  .bonus-img {
    width: 100%;
    height: 180px;
  }

  .bonus-img img {
    height: 100%;
  }
}

.crypto-help {
  margin-top: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #cfd6e4;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crypto-help strong {
  color: #4da3ff;
  font-weight: 600;
}

.crypto-help a {
  color: #4da3ff;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: 0.2s;
}

.crypto-help a:hover {
  color: #77bdff;
  transform: translateX(3px);
}

.user-card{
    max-width:450px;
    margin:30px auto;
    padding:25px;
    background:#0f1117;
    border:1px solid rgba(176,4,4,.5);
    border-radius:16px;
    text-align:center;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.user-card h2{
    margin-bottom:20px;
    color:#B00404;
    font-size:24px;
}

.user-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:12px 0;
    padding:12px 15px;
    background:rgba(255,255,255,.05);
    border-radius:10px;
}

.user-info span{
    color:#aaa;
}

.user-info strong{
    color:#fff;
    font-size:18px;
}

.vip{
    color:#FFD700;
    text-shadow:0 0 10px rgba(255,215,0,.5);
}

.ref {
    font-size: 12px;
}