/* ============================================================
   Fraud Alert Styles - Shared between desktop & mobile
   ============================================================ */

/* ---------- Popup Modal ---------- */
.fraud-alert-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.fraud-alert-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 95%;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 20px 15px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: fraudFadeIn 0.3s ease;
}
@keyframes fraudFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.fraud-alert-close {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 0;
  z-index: 10;
}
.fraud-alert-close:hover {
  color: #e74c3c;
}
.fraud-alert-poster {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.fraud-alert-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.fraud-alert-learn-more {
  display: inline-block;
  background: #2d7ce5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}
.fraud-alert-learn-more:hover {
  background: #1a5fb4;
  color: #fff;
  text-decoration: none;
}
.fraud-alert-got-it {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 13px;
}
.fraud-alert-got-it:hover {
  background: #c0392b;
}

/* ---------- Page Content (mobile-first) ---------- */
.fraud-alert-section {
    padding: 20px 15px;
}
.fraud-alert-section .poster-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.fraud-alert-section .alert-box {
    background: #fff3f3;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.fraud-alert-section .alert-box h3 {
    color: #e74c3c;
    margin-top: 0;
    font-weight: 700;
    font-size: 20px;
}
.fraud-alert-section .alert-box .warning-icon {
    font-size: 36px;
    color: #e74c3c;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.fraud-alert-section h4 {
    color: #2d7ce5;
    font-weight: 700;
    border-bottom: 2px solid #2d7ce5;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 18px;
}
.fraud-alert-section .contact-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}
.fraud-alert-section .contact-card h5 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}
.fraud-alert-section .contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fraud-alert-section .contact-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.fraud-alert-section .contact-card ul li:last-child {
    border-bottom: none;
}
.fraud-alert-section .contact-card ul li .name {
    font-weight: 600;
    color: #555;
}
.fraud-alert-section .contact-card ul li .num {
    color: #2d7ce5;
    font-weight: 600;
}
.fraud-alert-section .payment-notice {
    background: #fff8e1;
    border-left: 4px solid #f39c12;
    padding: 15px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.fraud-alert-section .payment-notice strong {
    color: #e74c3c;
    font-size: 16px;
}
.fraud-alert-section .payment-notice .company-name {
    color: #2d7ce5;
    font-weight: 700;
    font-size: 18px;
}
.fraud-alert-section .license-section {
    text-align: center;
    margin-bottom: 20px;
}
.fraud-alert-section .license-section img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background: #fff;
}
.fraud-alert-section .stb-link {
    display: block;
    background: #2d7ce5;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 14px;
}
.fraud-alert-section .stb-link:hover {
    background: #1a5fb4;
    color: #fff;
    text-decoration: none;
}
.fraud-alert-section .police-notice {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* ---------- Desktop overrides (min-width: 768px) ---------- */
@media (min-width: 768px) {
  .fraud-alert-overlay {
    padding: 20px;
  }
  .fraud-alert-modal {
    max-width: 500px;
    padding: 25px 25px 20px;
  }
  .fraud-alert-close {
    top: 10px; right: 15px;
    font-size: 28px;
  }
  .fraud-alert-poster {
    margin-bottom: 15px;
  }
  .fraud-alert-actions {
    gap: 10px;
  }
  .fraud-alert-learn-more {
    padding: 10px 25px;
    font-size: 14px;
  }
  .fraud-alert-got-it {
    padding: 10px 25px;
    font-size: 14px;
  }

  .fraud-alert-section {
      padding: 40px 15px;
  }
  .fraud-alert-section .poster-img {
      margin-bottom: 30px;
  }
  .fraud-alert-section .alert-box {
      padding: 25px;
      margin-bottom: 30px;
  }
  .fraud-alert-section .alert-box h3 {
      font-size: inherit;
  }
  .fraud-alert-section .alert-box .warning-icon {
      font-size: 48px;
  }
  .fraud-alert-section h4 {
      padding-bottom: 10px;
      margin-bottom: 20px;
      font-size: inherit;
  }
  .fraud-alert-section .contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
  }
  .fraud-alert-section .contact-col {
      flex: 1;
      min-width: 280px;
      background: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
  }
  .fraud-alert-section .contact-col h5 {
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 15px;
      color: #333;
  }
  .fraud-alert-section .contact-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .fraud-alert-section .contact-col ul li {
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      font-size: 15px;
  }
  .fraud-alert-section .contact-col ul li:last-child {
      border-bottom: none;
  }
  .fraud-alert-section .contact-col ul li .name {
      font-weight: 600;
      color: #555;
  }
  .fraud-alert-section .contact-col ul li .num {
      color: #2d7ce5;
      font-weight: 600;
  }
  .fraud-alert-section .payment-notice {
      border-left: 5px solid #f39c12;
      padding: 20px 25px;
      margin-bottom: 30px;
  }
  .fraud-alert-section .payment-notice strong {
      font-size: 18px;
  }
  .fraud-alert-section .payment-notice .company-name {
      font-size: 20px;
  }
  .fraud-alert-section .license-section {
      margin-bottom: 30px;
  }
  .fraud-alert-section .stb-link {
      display: inline-block;
      padding: 12px 30px;
      margin-bottom: 30px;
  }
  .fraud-alert-section .police-notice {
      padding: 20px;
      margin-bottom: 30px;
      font-size: inherit;
  }
}
