/* ==========================================================================
   Bro138 Two Column Feature Section: Analisis Modal & Ranking Provider
   ========================================================================== */

.bro-two-col-section {
  max-width: 1200px;
  margin: 35px auto 25px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bro-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Feature Column Card Base */
.feature-column-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(245, 180, 0, 0.12), transparent 45%),
              radial-gradient(circle at bottom right, rgba(245, 180, 0, 0.08), transparent 40%),
              linear-gradient(150deg, #151821 0%, #0d0f14 50%, #161922 100%);
  border: 1.5px solid rgba(245, 180, 0, 0.45);
  border-radius: 24px;
  padding: 28px 24px;
  box-sizing: border-box;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45),
              0 0 25px rgba(245, 180, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-column-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 180, 0, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55),
              0 0 35px rgba(245, 180, 0, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Inner decorative shine effect */
.fc-shine {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 250px;
  height: 500px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(25deg);
  animation: fcShineMove 6s infinite;
  pointer-events: none;
}

@keyframes fcShineMove {
  0% { left: -200px; }
  45% { left: 120%; }
  100% { left: 120%; }
}

/* Header Section */
.fc-header {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(245, 180, 0, 0.2);
  padding-bottom: 16px;
}

.fc-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(245, 180, 0, 0.15);
  color: #F5B400;
  border: 1px solid rgba(245, 180, 0, 0.4);
  box-shadow: 0 2px 8px rgba(245, 180, 0, 0.15);
}

.fc-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
}

.live-dot-pulse {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.fc-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #F5B400;
  text-shadow: 0 0 12px rgba(245, 180, 0, 0.4);
  line-height: 1.3;
}

.fc-desc {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   LEFT COLUMN: Analisis Modal & Rencana Bermain
   ========================================================================== */

/* Tier Selector Tabs */
.plan-tier-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-tier-btn {
  flex: 1;
  padding: 10px 8px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.plan-tier-btn span.tier-sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
}

.plan-tier-btn:hover {
  color: #F5B400;
  background: rgba(245, 180, 0, 0.08);
}

.plan-tier-btn.active {
  background: linear-gradient(135deg, #FFE066 0%, #F5B400 50%, #D97706 100%);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(245, 180, 0, 0.35);
}

.plan-tier-btn.active span.tier-sub {
  color: #1a1a1a;
  opacity: 0.9;
  font-weight: 700;
}

/* Dynamic Metric Cards */
.plan-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.plan-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 180, 0, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-metric-box:hover {
  border-color: rgba(245, 180, 0, 0.4);
  background: rgba(245, 180, 0, 0.05);
}

.pm-label {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pm-value {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.pm-value.gold {
  color: #F5B400;
}

.pm-value.green {
  color: #10B981;
}

.pm-value.orange {
  color: #F97316;
}

.pm-hint {
  font-size: 10.5px;
  color: #64748B;
}

/* Strategic Execution Steps */
.plan-steps-wrap {
  margin-bottom: 20px;
}

.plan-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #F5B400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid #F5B400;
  border-radius: 0 12px 12px 0;
  padding: 10px 14px;
  margin-bottom: 8px;
  transition: background 0.2s ease;
}

.plan-step-item:hover {
  background: rgba(245, 180, 0, 0.06);
}

.step-num-badge {
  background: #F5B400;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.step-desc {
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

/* Pro Golden Rule Note */
.plan-pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245, 180, 0, 0.08);
  border: 1px dashed rgba(245, 180, 0, 0.35);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11.5px;
  color: #E2E8F0;
  line-height: 1.5;
  margin-top: auto;
}

.plan-pro-tip strong {
  color: #F5B400;
}

/* ==========================================================================
   RIGHT COLUMN: Ranking Provider
   ========================================================================== */

.provider-rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  flex: 1;
}

.provider-rank-item {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(245, 180, 0, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.provider-rank-item:hover {
  background: rgba(245, 180, 0, 0.06);
  border-color: rgba(245, 180, 0, 0.45);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.provider-rank-item.rank-gold {
  border-color: rgba(245, 180, 0, 0.5);
  background: linear-gradient(135deg, rgba(245, 180, 0, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 4px 16px rgba(245, 180, 0, 0.1);
}

.pri-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pri-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pri-rank-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.rank-badge-1 {
  background: linear-gradient(135deg, #FFE066 0%, #F5B400 50%, #B45309 100%);
  color: #000000;
  box-shadow: 0 0 12px rgba(245, 180, 0, 0.5);
}

.rank-badge-2 {
  background: linear-gradient(135deg, #E2E8F0 0%, #94A3B8 50%, #475569 100%);
  color: #000000;
  box-shadow: 0 0 10px rgba(148, 163, 184, 0.4);
}

.rank-badge-3 {
  background: linear-gradient(135deg, #FDBA74 0%, #EA580C 50%, #9A3412 100%);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.4);
}

.rank-badge-other {
  background: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pri-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pri-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pri-name {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
}

.pri-status-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pri-volatility {
  font-size: 11px;
  color: #94A3B8;
}

.pri-right-rtp {
  text-align: right;
  flex-shrink: 0;
}

.pri-rtp-val {
  font-size: 16px;
  font-weight: 900;
  color: #F5B400;
  text-shadow: 0 0 8px rgba(245, 180, 0, 0.4);
}

.pri-rtp-label {
  font-size: 10px;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 600;
}

/* RTP Progress Bar */
.pri-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  overflow: hidden;
}

.pri-progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #F5B400, #10B981);
  transition: width 0.8s ease-in-out;
}

/* Popular Games Chips */
.pri-games-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pri-games-label {
  font-size: 10.5px;
  color: #64748B;
  font-weight: 600;
}

.pri-game-chip {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ranking Bottom CTA */
.provider-ranking-cta-wrap {
  margin-top: auto;
  padding-top: 10px;
}

.provider-ranking-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFE066 0%, #F5B400 50%, #D97706 100%);
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(245, 180, 0, 0.3);
  transition: all 0.25s ease;
  border: 1px solid #FFE066;
}

.provider-ranking-cta-btn:hover {
  background: linear-gradient(135deg, #FFF099 0%, #FFC107 50%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 180, 0, 0.5);
  color: #000000;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 960px) {
  .bro-two-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-column-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  
  .fc-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .plan-tier-nav {
    flex-direction: column;
    gap: 4px;
  }
  
  .plan-metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .pri-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .pri-right-rtp {
    text-align: left;
  }
}
