.article-main-content {
  min-width: 0;
}
.article-main-title {
  margin-bottom: 12px;
}
.article-content-block {
  padding: 24px 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.article-featured-image {
  overflow: hidden;
  max-height: 330px;
  margin: 20px 0;
  border-radius: 12px;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ SECTION */
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 24px 0;
}

/* REVIEWS SECTION */
.reviews-section {
  margin-top: 60px;
}
.reviews-header {
  margin-bottom: 12px;
}
.reviews-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.reviews-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.review-form-container {
  background: var(--bg-elevated-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}

.review-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.review-form .form-group {
  margin-bottom: 20px;
}

.review-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* STAR RATING */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 2rem;
  margin-bottom: 8px;
}

.star {
  color: var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.star:hover,
.star.star-hover {
  color: #fbbf24;
  transform: scale(1.1);
}

.star.star-selected {
  color: #fbbf24;
}

.btn-submit-review {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 12px;
}

.btn-submit-review:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 50, 0.4);
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.review-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.review-success-message svg {
  margin-bottom: 20px;
}

.review-success-message .h3 {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
    color: #fff;
}

.review-success-message p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}

/* REVIEWS LIST */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: var(--bg-elevated-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-fast);
}

.review-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.review-author-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: #fbbf24;
  font-size: 0.9rem;
}

.star-empty {
  color: var(--border-subtle);
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px 0;
}

/* SCAM REPORT SECTION */
.scam-report-section {
  padding: 24px 26px;
  margin-top: 24px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 77, 77, 0.18),
      transparent
    ),
    var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}
.scam-report-header {
  margin-bottom: 12px;
}
.scam-report-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.scam-report-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.scam-report-form {
  background: var(--bg-elevated-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.scam-report-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.scam-report-form .form-group {
  margin-bottom: 20px;
}

.scam-report-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.scam-report-form input,
.scam-report-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.scam-report-form input:focus,
.scam-report-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.scam-report-form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-group-checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.75rem;
}

.btn-submit-report {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 12px;
}

.btn-submit-report:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 140, 50, 0.4);
}

.report-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.report-success-message svg {
  margin-bottom: 24px;
}

.report-success-message h3 {
  font-size: 1.8rem;
  margin: 0 0 16px 0;
}

.report-success-message p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 500px;
}

/* SIDEBAR */

/* REPORT BANNER – CYBER PREMIUM STYLE */
.sidebar-report-banner {
  background: linear-gradient(
    135deg,
    #111 0%,
    #1a1a1a 40%,
    var(--accent, #ff4d15) 180%
  );
  border-radius: var(--radius-lg);

  overflow: hidden;
  position: relative;
  box-shadow: 0 0 24px rgba(255, 80, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.sidebar-report-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(255, 95, 0, 0.4);
}

.sidebar-report-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff7a3c, transparent);
  opacity: 0.7;
}

.report-banner-link {
  display: flex;
  align-items: center;
  padding: 26px 22px;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.report-banner-icon svg {
  width: 44px;
  height: 44px;
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 120, 60, 0.3));
  transition: transform 0.25s ease;
}

.report-banner-link:hover .report-banner-icon svg {
  transform: scale(1.07);
}

.report-banner-content h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.report-banner-content p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
}

.report-banner-arrow svg {
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.report-banner-link:hover .report-banner-arrow svg {
  opacity: 1;
  transform: translateX(6px);
}

.sidebar-report-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% {
    left: -60%;
  }
  100% {
    left: 160%;
  }
}

@media (max-width: 992px) {
  .review-form .form-row,
  .scam-report-form .form-row {
    grid-template-columns: 1fr;
  }
  .sidebar-report-banner {
    display: none;
  }
}

@media (max-width: 768px) {
  .alert-article-page .container {
    padding: 0 6px;
  }
  .article-content-block {
    padding: 8px;
  }

  .article-main-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .article-meta-info {
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-featured-image {
    max-height: 250px;
  }

  .review-form-container,
  .scam-report-form {
    padding: 24px;
  }

  .reviews-header h2,
  .scam-report-header h2 {
    font-size: 1.6rem;
  }
  .reviews-section {
    margin-top: 30px;
  }
  .review-meta {
    flex-direction: column;
  }
  .scam-report-section {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .article-main-title {
    font-size: 1.3rem;
  }

  .article-meta-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-form-container,
  .scam-report-form {
    padding: 20px;
  }

  .star-rating {
    font-size: 1.8rem;
  }

  .report-banner-link {
    padding: 20px;
  }

  .report-banner-title {
    font-size: 1.1rem;
  }

  .report-banner-text {
    font-size: 0.95rem;
  }
}
