/* premiumtv.css - Crypto Payment Fraud Investigation */

@import url('styles.css');

/* ============================================
   HERO SECTION
   ============================================ */
.ptv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 20px;
}

.ptv-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.ptv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.ptv-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fef3c7;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.ptv-alert-badge.critical {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.5);
  color: #fef3c7;
}

.ptv-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.ptv-hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: #cbd5e1;
  margin-bottom: 50px;
  line-height: 1.6;
}

.ptv-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */
.ptv-section {
  padding: 80px 20px;
  position: relative;
}

.ptv-section.ptv-findings {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.ptv-section.ptv-comparison {
  background: #f1f5f9;
}

.ptv-section.ptv-evidence {
  background: #ffffff;
}

.ptv-section.ptv-screenshot {
  background: #f8fafc;
}

.ptv-section.ptv-verdict {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.ptv-section.ptv-notice {
  background: linear-gradient(135deg, #f0fdf4, #f5f3ff);
  border-top: 2px solid #dcfce7;
}

.ptv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 50px;
}

/* ============================================
   CARDS
   ============================================ */
.ptv-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ptv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.ptv-card-alert {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
}

.ptv-card-secondary {
  background: #ffffff;
}

.ptv-card-issue {
  background: #ffffff;
  border-left: 4px solid #fbbf24;
}

.ptv-card-issue:hover {
  border-left-color: #f59e0b;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.card-badge.danger {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fffbeb;
  color: #f59e0b;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-icon.alert {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
}

.ptv-card h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  padding-top: 20px;
}

.ptv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
}

.card-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-top: 15px;
}

.issue-number {
  font-size: 3rem;
  font-weight: 900;
  color: #e2e8f0;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.5;
}

/* ============================================
   LISTS & ELEMENTS
   ============================================ */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
}

.problem-list li:before {
  content: "✗";
  color: #f59e0b;
  font-weight: 900;
  font-size: 1.1rem;
}

.issue-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.issue-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.issue-list .x {
  color: #f59e0b;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
}

.timeline-marker.day1 {
  background: #dcfce7;
  color: #166534;
}

.timeline-marker.day2 {
  background: #fef3c7;
  color: #92400e;
}

.timeline-marker.day3 {
  background: #fee2e2;
  color: #7f1d1d;
}

.timeline-text {
  padding-top: 10px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  font-weight: 800;
  gap: 1px;
}

.table-header .table-col {
  padding: 20px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table-header .table-col.actual {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
  gap: 1px;
}

.table-row:last-child {
  border-bottom: none;
}

.table-col {
  padding: 18px 20px;
  color: #475569;
  font-weight: 500;
}

.table-col.actual {
  background: #fffbeb;
  color: #a16207;
  font-weight: 700;
}

/* ============================================
   TESTIMONIES
   ============================================ */
.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.testimony-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-left: 4px solid #fbbf24;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.testimony-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimony-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.testimony-date {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.testimony-rating {
  background: #fee2e2;
  color: #dc2626;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.testimony-text {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 15px;
}

.testimony-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   SCREENSHOT
   ============================================ */
.screenshot-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.screenshot-frame {
  max-width: 900px;
  width: 100%;
}

.screenshot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.screenshot:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.screenshot-label {
  text-align: center;
  margin-top: 15px;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   VERDICT BOX
   ============================================ */
.verdict-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 3px solid #fbbf24;
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.verdict-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.verdict-box h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #a16207;
  margin-bottom: 20px;
}

.verdict-text {
  color: #92400e;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.verdict-risks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.risk-item {
  padding: 15px;
  background: #fef3c7;
  border-radius: 10px;
  color: #d97706;
  font-weight: 700;
  font-size: 0.95rem;
}

.risk-item.critical-risk {
  background: #fcd34d;
  color: #a16207;
}

/* ============================================
   NOTICE BOX
   ============================================ */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #bbf7d0;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.notice-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.notice-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #166534;
  margin: 0 0 12px 0;
}

.notice-body p {
  color: #15803d;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   GRIDS
   ============================================ */
.ptv-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.ptv-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .ptv-section {
    padding: 60px 20px;
  }

  .ptv-hero-title {
    font-size: 2rem;
  }

  .ptv-hero-subtitle {
    font-size: 1rem;
  }

  .ptv-hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .ptv-card {
    padding: 30px;
  }

  .card-header {
    flex-direction: column;
  }

  .section-header h2,
  .section-title {
    font-size: 1.8rem;
  }

  .ptv-grid-2,
  .ptv-grid-3,
  .testimony-grid {
    grid-template-columns: 1fr;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-header .table-col.actual,
  .table-col.actual {
    background: #fffbeb;
  }

  .verdict-box {
    padding: 30px;
  }

  .verdict-box h3 {
    font-size: 1.5rem;
  }

  .notice-box {
    flex-direction: column;
    text-align: center;
  }

  .notice-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .ptv-hero {
    padding: 40px 16px;
  }

  .ptv-hero-title {
    font-size: 1.5rem;
  }

  .ptv-hero-subtitle {
    font-size: 0.95rem;
  }

  .ptv-card {
    padding: 20px;
  }

  .issue-number {
    font-size: 2rem;
  }

  .notice-box {
    padding: 20px;
  }
}
