/* ==========================================================================
   STYLE 3: SENSATIONAL NEWS INVESTIGATION & SPIN WHEEL
   Стиль независимого новостного портала с интерактивной рулеткой -50%
   ========================================================================== */

.news-portal-header {
  background: #b91c1c;
  color: #fff;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-portal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news-breaking-badge {
  background: #fef08a;
  color: #991b1b;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  animation: flash 1.5s infinite;
}

.news-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 2px solid #fecaca;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.92rem;
}

.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
}

.comparison-table tr.highlight-row {
  background: #fef2f2;
  font-weight: 700;
  color: #991b1b;
}

/* Interactive Discount Wheel */
.wheel-container {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  margin: 32px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 2px solid #e2e8f0;
}

.wheel-header h3 {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.wheel-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.wheel-graphic-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid #ef4444;
  z-index: 10;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.5));
}

.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fbbf24;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
  background: conic-gradient(
    #ef4444 0deg 72deg,
    #3b82f6 72deg 144deg,
    #10b981 144deg 216deg,
    #f59e0b 216deg 288deg,
    #8b5cf6 288deg 360deg
  );
  position: relative;
  overflow: hidden;
}

.wheel-sector-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  width: 120px;
  text-align: right;
  padding-right: 20px;
}

.wheel-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.wheel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.wheel-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wheel-result-box {
  display: none;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  animation: popIn 0.5s ease;
}

.wheel-result-box.visible {
  display: block;
}

.wheel-result-box h4 {
  font-size: 1.4rem;
  color: #b91c1c;
  margin-bottom: 8px;
}

@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
