/* Report Template - Bank Spy "Worst Banks" Quarterly Report */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
  background: #f5f5f5;
  padding: 40px 20px;
}

.report-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-radius: 24px;
  overflow: hidden;
}

/* Header */
.report-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.report-header::after {
  content: "CONFIDENTIAL DRAFT";
  position: absolute;
  top: 20px;
  right: -50px;
  background: #e94560;
  color: white;
  padding: 8px 80px;
  transform: rotate(45deg);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  opacity: 0.9;
}

.report-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.report-header h1 span {
  color: #e94560;
  border-bottom: 4px solid #e94560;
  padding-bottom: 5px;
}

.report-header .date {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.report-header .embargo {
  background: rgba(233, 69, 96, 0.2);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  border-left: 4px solid #e94560;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 40px;
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-note {
  font-size: 12px;
  color: #e94560;
  margin-top: 5px;
}

/* Section Titles */
.section-title {
  padding: 20px 40px 10px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: "";
  font-size: 28px;
}

/* Table Styles */
.table-container {
  padding: 0 40px 30px;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.rank-table th {
  background: #1a1a2e;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 12px;
  text-align: left;
}

.rank-table td {
  padding: 20px 12px;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
}

.rank-table tr:last-child td {
  border-bottom: none;
}

.rank-table tr:hover td {
  background: #f8f9fa;
}

.rank-badge {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}

.rank-1 {
  background: #e94560;
  color: white;
}

.rank-2 {
  background: #ff7b89;
  color: white;
}

.rank-3 {
  background: #ffb6b9;
  color: #1a1a2e;
}

.bank-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.bank-logo-placeholder {
  width: 32px;
  height: 32px;
  background: #eaeaea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.fee-amount {
  font-weight: 700;
  color: #e94560;
}

.fee-amount.good {
  color: #2ecc71;
}

.hidden-fee {
  background: #fff3cd;
  color: #856404;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.yacht-index {
  font-weight: 700;
}

.yacht-1 { color: #27ae60; }
.yacht-2 { color: #f39c12; }
.yacht-3 { color: #e67e22; }
.yacht-4 { color: #e74c3c; }
.yacht-5 { color: #c0392b; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px 40px;
}

.shame-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #eaeaea;
  transition: transform 0.2s;
}

.shame-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.shame-card.worst {
  border-left: 4px solid #e94560;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.quote {
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin: 15px 0;
  padding-left: 12px;
  border-left: 3px solid #e94560;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
}

.fee-name {
  color: #666;
}

.fee-value {
  font-weight: 600;
}

/* Yacht Index Section */
.yacht-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
  color: white;
  padding: 40px;
  margin: 20px 40px 40px;
  border-radius: 16px;
}

.yacht-section h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.yacht-section h3 span {
  color: #e94560;
}

.yacht-explanation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.yacht-level {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
}

.yacht-level .emoji {
  font-size: 32px;
  margin-bottom: 10px;
}

.yacht-level .level {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.yacht-level .desc {
  font-size: 12px;
  opacity: 0.7;
}

/* Call to Action */
.cta-section {
  background: #f8f9fa;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #e94560;
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #c82345;
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}

/* Footer */
.footer {
  padding: 30px 40px;
  background: #1a1a2e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer .watermark {
  opacity: 0.5;
  font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .yacht-explanation {
    grid-template-columns: 1fr;
  }
  
  .report-header h1 {
    font-size: 32px;
  }
}
