/* ===========================================
   PRESS PAGE STYLES
   =========================================== */

.press-page {
  flex: 1;
  min-width: 0;
  max-width: 900px;
  padding: 24px 16px 60px;
}

.press-header {
  margin-bottom: 32px;
}

.press-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.press-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.press-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.press-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.press-filter-btn:hover {
  border-color: #00A778;
  color: #00A778;
}

.press-filter-active {
  background: #00A778;
  color: #fff;
  border-color: #00A778;
}

.press-filter-active:hover {
  background: #008F65;
  border-color: #008F65;
  color: #fff;
}

.press-filter-flag {
  font-size: 15px;
}

.press-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.press-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #E8E8EC;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  aspect-ratio: 16 / 9;
}

.press-logo-card:hover {
  border-color: #00A778;
  box-shadow: 0 4px 16px rgba(0, 167, 120, 0.1);
  transform: translateY(-2px);
}

.press-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.press-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.press-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}

.press-empty svg {
  margin-bottom: 16px;
}

.press-empty p {
  font-size: 15px;
  margin: 0;
}

/* Press page skeleton */
.press-card-skeleton {
  pointer-events: none;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .press-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .press-page {
    padding: 16px 12px 40px;
  }
  
  .press-title {
    font-size: 22px;
  }

  .press-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .press-logo-card {
    padding: 14px;
  }
}

/* FAQ Page */
.faq-page-content {
  padding: 0 20px 40px;
}

.faq-intro {
  margin-bottom: 24px;
}

.faq-main-title {
  font-size: 26px;
  font-weight: 600;
  color: #0F1B31;
  line-height: 1.1;
  letter-spacing: -0.52px;
  margin: 0 0 8px 0;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-subtitle {
  font-size: 15px;
  color: #5E6979;
  line-height: 1.6;
  letter-spacing: -0.32px;
  margin: 0;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-list {
  border-top: 1px solid #E5E7EB;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.faq-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 12px;
  text-align: left;
}

.faq-question-btn:hover {
  opacity: 0.7;
}

.faq-question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #0F1B31;
  line-height: 1.5;
  letter-spacing: -0.32px;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-chevron {
  color: #5E6979;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-chevron-open {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 14px;
  color: #5E6979;
  line-height: 1.7;
  letter-spacing: -0.3px;
  margin: 0;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-answer-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer-list li {
  font-size: 14px;
  color: #5E6979;
  line-height: 1.7;
  letter-spacing: -0.3px;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-contact-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.faq-contact-title {
  font-size: 15px;
  font-weight: 500;
  color: #0F1B31;
  margin: 0 0 4px 0;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-contact-link {
  font-size: 14px;
  color: #7C3AED;
  text-decoration: none;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}

.faq-contact-link:hover {
  text-decoration: underline;
}

/* Post Menu Dropdown */
.post-menu-container {
  position: relative;
}

.post-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-menu-trigger:hover {
  opacity: 1;
}

.post-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 160px;
  padding: 6px;
  z-index: 100;
  animation: menuSlideIn 0.15s ease;
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0F1B31;
  transition: background 0.15s;
}

.post-menu-item:hover {
  background: #F3F4F6;
}

.post-menu-item-danger {
  color: #E53935;
}

.post-menu-item-danger:hover {
  background: #FEF2F2;
}

/* Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: modalScaleIn 0.25s cubic-bezier(0.2, 0.8, 0.4, 1);
}

@keyframes modalScaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.confirm-modal-title {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0F1B31;
  margin: 0 0 8px 0;
}

.confirm-modal-message {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.confirm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.confirm-modal-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.confirm-modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.confirm-modal-cancel {
  background: #F3F4F6;
  color: #374151;
}

.confirm-modal-cancel:hover:not(:disabled) {
  background: #E5E7EB;
}

.confirm-modal-primary {
  background: #00A778;
  color: #fff;
}

.confirm-modal-primary:hover:not(:disabled) {
  background: #008B63;
}

.confirm-modal-danger {
  background: #E53935;
  color: #fff;
}

.confirm-modal-danger:hover:not(:disabled) {
  background: #C62828;
}

/* Report Modal (new unified) */
.report-modal {
  max-width: 440px;
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.report-modal-title {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0F1B31;
  margin: 0;
}

.report-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.report-modal-close:hover {
  color: #374151;
}

.report-modal-subtitle {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 16px 0;
}

.report-modal-loading {
  text-align: center;
  padding: 20px;
  color: #9CA3AF;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
}

.report-modal .report-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.report-modal .report-reason-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid #E9ECF1;
  background: transparent;
}

.report-modal .report-reason-item:hover {
  background: #F8F9FB;
  border-color: #D1D5DB;
}

.report-reason-radio {
  width: 18px;
  height: 18px;
  accent-color: #00A778;
  cursor: pointer;
  flex-shrink: 0;
}

.report-modal .report-reason-text {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0F1B31;
  line-height: 1.4;
}

.report-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Post Hidden Undo Bar */
.post-hidden-undo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  margin-bottom: 16px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-hidden-undo-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-hidden-undo-text {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.post-hidden-undo-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #00A778;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}

.post-hidden-undo-btn:hover {
  background: #E6F7F1;
}

/* Edit Post Modal */
.edit-post-modal {
  max-width: 500px;
}

.edit-post-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.edit-post-modal-title {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0F1B31;
  margin: 0;
}

.edit-post-textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #0F1B31;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 16px;
}

.edit-post-textarea:focus {
  border-color: #00A778;
}

.edit-post-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.infinite-scroll-sentinel {
  height: 1px;
  width: 100%;
}

.infinite-scroll-loading {
  padding: 8px 0;
}

/* Mobile App Banner */
.app-banner-sheet {
  display: none;
  position: fixed;
  bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-radius: 32px 32px 0 0;
  padding: 16px 16px 20px 16px;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: appBannerSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

@media (max-width: 768px) {
  .app-banner-sheet {
    display: flex;
  }
}

@keyframes appBannerSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.app-banner-title {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.32px;
  padding-bottom: 8px;
}

.app-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.app-banner-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-banner-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #F1F3F6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}

.app-banner-icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.app-banner-icon-box-browser {
  padding: 8px;
}

.app-banner-label {
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  letter-spacing: -0.32px;
}

.app-banner-open-btn {
  width: 124px;
  height: 44px;
  border-radius: 12px;
  background: #008555;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.32px;
  line-height: 1.3;
  transition: background 0.15s ease;
}

.app-banner-open-btn:active {
  background: #0D9668;
}

.app-banner-continue-btn {
  width: 124px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  color: #0F1B31;
  border: 1px solid #F1F3F6;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.32px;
  line-height: 1.3;
  transition: background 0.15s ease;
}

.app-banner-continue-btn:active {
  background: #F5F5F5;
}
