
/* ============================================================
   TOP BANNER – urgency bar
   ============================================================ */
.urgency-banner {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 8px;
    margin-bottom: 18px;
    animation: pulse-red 2.5s ease-in-out infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(230, 57, 70, 0);
    }
}

.urgency-banner .fire {
    font-size: 16px;
    margin-right: 4px;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border-radius: 16px;
    padding: 28px 28px 24px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 210, 63, 0.07);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header h1 span {
    color: #ffd23f;
}

.page-header .subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-chip .icon {
    font-size: 14px;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.social-proof-bar {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.social-proof-bar .live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.social-proof-bar .stat {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.social-proof-bar .stat span {
    color: #e63946;
    font-weight: 800;
    margin: 0 3px;
}

.social-proof-bar .stars-mini {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: -1px;
}

.social-proof-bar .updated {
    font-size: 11px;
    color: #9ca3af;
}

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* ============================================================
   CASINO CARD – BASE
   ============================================================ */
.casino-card {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #e8ecf0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

/* Header bar */
.card-header {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-header-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-header-blue {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.card-header-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.card-header-green {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.card-header-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.card-header-teal {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.card-header-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.card-header-indigo {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
}

.rank-badge {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 3px 10px;
    min-width: 38px;
    text-align: center;
    flex-shrink: 0;
}

.rank-1 {
    background: rgba(0, 0, 0, 0.25);
    font-size: 16px;
}

.casino-name-header {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    flex: 1;
}

.header-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.badge-editor {
    background: #fff;
    color: #d97706;
}

.badge-hot {
    background: #ef4444;
    color: #fff;
}

.badge-new {
    background: #10b981;
    color: #fff;
}

.badge-exclusive {
    background: #fff;
    color: #7c3aed;
}

.badge-top {
    background: #fbbf24;
    color: #92400e;
}

.badge-popular {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Card body */
.card-body {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.card-logo-area {
    width: 120px;
    min-height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-right: 1px solid #f0f0f0;
    background: #fafafa;
}

.logo-placeholder {
    width: 90px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.card-content {
    flex: 1;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-cta-area {
    width: 145px;
    flex-shrink: 0;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-left: 1px solid #f0f0f0;
}

/* Rating stars */
.rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: -1px;
}

.rating-num {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.rating-count {
    font-size: 11px;
    color: #9ca3af;
}

/* Bonus display */
.bonus-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bonus-amount {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.bonus-amount .highlight {
    color: #e63946;
}

/* Feature chips */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.chip {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
}

.chip-green {
    background: #d1fae5;
    color: #065f46;
}

.chip-blue {
    background: #dbeafe;
    color: #1e40af;
}

.chip-purple {
    background: #ede9fe;
    color: #5b21b6;
}

.chip-orange {
    background: #ffedd5;
    color: #9a3412;
}

.chip-gray {
    background: #f3f4f6;
    color: #4b5563;
}

/* Promo code */
.promo-code {
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
    background: #ede9fe;
    border: 1px dashed #a78bfa;
    border-radius: 6px;
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.promo-code .copy-icon {
    font-size: 11px;
}

/* T&C line */
.tc-line {
    font-size: 10px;
    color: #9ca3af;
}

/* CTA buttons */
.btn-claim {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.55);
    transform: scale(1.02);
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-green:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.55);
    transform: scale(1.02);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-blue:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: scale(1.02);
}

.btn-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-red:hover {
    background: linear-gradient(135deg, #f87171, #ef4444);
    transform: scale(1.02);
}

.btn-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-purple:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: scale(1.02);
}

.btn-teal {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.btn-teal:hover {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    transform: scale(1.02);
}

/* Urgency under CTA */
.urgency-mini {
    font-size: 10px;
    color: #e63946;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.players-mini {
    font-size: 10px;
    color: #6b7280;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.live-dot-mini {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

/* ============================================================
   SUPER CARD (#1) – special treatment
   ============================================================ */
.casino-card.super {
    border: 2px solid #f59e0b;
}

.super-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.super-ribbon {
    position: absolute;
    top: 10px;
    right: -1px;
    background: #e63946;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px 3px 12px;
    letter-spacing: 0.6px;
    clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 8px 100%, 0% 50%);
}

/* ============================================================
   BONUS HIGHLIGHT BOX (used in top cards)
   ============================================================ */
.bonus-highlight {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 8px 12px;
}

.bonus-highlight .amount {
    font-size: 18px;
    font-weight: 900;
    color: #d97706;
}

.bonus-highlight .desc {
    font-size: 11px;
    color: #92400e;
    font-weight: 600;
}

/* ============================================================
   PROMO STRIP BETWEEN CARDS
   ============================================================ */
.promo-strip {
    background: linear-gradient(135deg, #0f3460, #16213e);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 4px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-strip .text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.promo-strip .text span {
    color: #ffd23f;
}

.promo-strip .btn-strip {
    background: #ffd23f;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 580px) {
    .card-body {
        flex-direction: column;
    }

    .card-logo-area {
        width: 100%;
        min-height: 70px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        flex-direction: row;
        gap: 16px;
    }

    .card-cta-area {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .btn-claim {
        font-size: 14px;
        padding: 12px 10px;
    }

    .urgency-mini,
    .players-mini {
        font-size: 11px;
    }

    .social-proof-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-row {
        gap: 6px;
    }

    .page-header {
        padding: 20px 18px;
    }

    .card-content {
        padding: 12px;
    }

    .promo-strip {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   PIKA WRAPPER
   ============================================================ */
.pika-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.pika-urgency-banner {
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 8px;
  margin-bottom: 18px;
  animation: pika-pulse-red 2.5s ease-in-out infinite;
}
@keyframes pika-pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}
.pika-fire {
  font-size: 16px;
  margin-right: 4px;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.pika-page-header {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pika-page-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,210,63,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.pika-page-header::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}
.pika-page-header__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.pika-page-header__title span {
  color: #ffd23f;
}
.pika-page-header__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.pika-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.pika-trust-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.pika-social-proof-bar {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pika-live-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pika-blink 1.5s ease-in-out infinite;
}
@keyframes pika-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.pika-stat {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.pika-stat span {
  color: #e63946;
  font-weight: 800;
  margin: 0 3px;
}
.pika-stars-mini {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: -1px;
}
.pika-updated {
  font-size: 11px;
  color: #9ca3af;
}

/* ============================================================
   SECTION LABEL
   ============================================================ */
.pika-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pika-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ============================================================
   PROMO STRIP
   ============================================================ */
.pika-promo-strip {
  background: linear-gradient(135deg, #0f3460, #16213e);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 4px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pika-promo-strip__text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.pika-promo-strip__text span {
  color: #ffd23f;
}
.pika-promo-strip__btn {
  background: #ffd23f;
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.pika-promo-strip__btn:hover {
  opacity: 0.85;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.pika-bottom-cta {
  background: linear-gradient(135deg, #0f3460, #16213e);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
  text-align: center;
  color: #fff;
}
.pika-bottom-cta__icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.pika-bottom-cta__title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.pika-bottom-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.pika-bottom-cta__btn {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,158,11,0.45);
  transition: all 0.2s ease;
}
.pika-bottom-cta__btn:hover {
  box-shadow: 0 6px 22px rgba(245,158,11,0.6);
  transform: translateY(-1px);
}
.pika-bottom-cta__disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.pika-bottom-cta__disclaimer a {
  color: #fcd34d;
  text-decoration: underline;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 580px) {
  .pika-social-proof-bar { flex-direction: column; align-items: flex-start; }
  .pika-trust-row        { gap: 6px; }
  .pika-page-header      { padding: 20px 18px; }
  .pika-promo-strip      { flex-direction: column; text-align: center; }
  .pika-promo-strip__btn { width: 100%; text-align: center; }
}
