/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #00b894;
  --green-dark: #00896e;
  --blue: #0984e3;
  --dark: #1e1e2e;
  --dark2: #2d2d44;
  --text: #2d3436;
  --text-light: #636e72;
  --border: #dfe6e9;
  --bg: #f8fafb;
  --white: #ffffff;
  --red: #e17055;
  --yellow: #fdcb6e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
               "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sub { color: var(--text-light); margin-top: .5rem; font-size: 1.05rem; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,184,148,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-ghost { color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; border-radius: 10px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.logo-icon { color: var(--green); font-size: 1rem; }
.logo-text em { color: var(--green); font-style: normal; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lang-toggle {
  padding: .4rem .8rem;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  transition: all var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,.2); color: #fff; }

.hamburger {
  display: none;
  color: #fff;
  font-size: 1.4rem;
  margin-left: auto;
}

.mobile-menu {
  background: var(--dark2);
  padding: 1rem 1.5rem;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .75rem; }
.mobile-menu a { color: rgba(255,255,255,.85); padding: .5rem 0; display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a1a2e 100%);
  color: #fff;
  padding: 5rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 85vh;
  overflow: hidden;
}
.hero-content { max-width: 560px; }
.badge {
  display: inline-block;
  background: rgba(0,184,148,.2);
  color: var(--green);
  border: 1px solid rgba(0,184,148,.4);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.highlight {
  color: var(--green);
  position: relative;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--green); }
.stat span:last-child { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: -.2rem; }

/* Phone mockup */
.hero-visual { flex-shrink: 0; }
.phone-mock {
  width: 200px;
  height: 350px;
  background: #0f0f1a;
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.progress-ring {
  position: relative;
  width: 120px;
  height: 120px;
}
.progress-ring svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.5s ease;
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ring-num { font-size: 1.8rem; font-weight: 800; line-height: 1; color: var(--green); }
.ring-slash { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.6); }
.ring-text { font-size: .65rem; color: rgba(255,255,255,.5); }
.phone-label { color: rgba(255,255,255,.5); font-size: .75rem; }

/* ===== AD SLOTS ===== */
.ad-slot { width: 100%; background: #f0f4f8; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ad-slot--top, .ad-slot--bottom { min-height: 90px; }
.ad-slot--inline { min-height: 70px; margin: 1.5rem 0; border-radius: var(--radius-sm); overflow: hidden; }
.ad-placeholder {
  max-width: 1100px;
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ad-label {
  font-size: .7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 1px dashed #ccc;
  padding: .5rem 1.5rem;
  border-radius: 4px;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--white); }
.how-section h2 { font-size: 2rem; font-weight: 800; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
}
.step-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.step-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--text-light); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
}

.info-box {
  margin-top: 2.5rem;
  background: rgba(0,184,148,.08);
  border: 1px solid rgba(0,184,148,.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-box strong { display: block; margin-bottom: .4rem; color: var(--dark); }
.info-box p { color: var(--text-light); font-size: .95rem; }

/* ===== BOARD ===== */
.board-section {
  padding: 4rem 0 5rem;
  background: var(--bg);
}
.board-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.board-header h2 { font-size: 2rem; font-weight: 800; }

.filters {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.search-input, .filter-select {
  padding: .6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition);
}
.search-input { flex: 1; min-width: 180px; }
.search-input:focus, .filter-select:focus {
  outline: none;
  border-color: var(--green);
}

/* Board cards */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.app-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 1.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
}
.card-appname { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.card-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-game     { background: #e3f0ff; color: #0367d0; }
.badge-utility  { background: #e8f8f5; color: #00896e; }
.badge-social   { background: #fdf3e7; color: #c17d00; }
.badge-productivity { background: #f3e8ff; color: #7c3aed; }
.badge-education    { background: #fff8e1; color: #b08000; }
.badge-health   { background: #fce8f0; color: #c02060; }
.badge-other    { background: #f0f0f0; color: #555; }

.card-dev { font-size: .85rem; color: var(--text-light); }
.card-desc { font-size: .9rem; color: var(--text); line-height: 1.55; flex: 1; }

/* Tester progress bar */
.tester-progress { }
.tester-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: .3rem;
}
.tester-label strong { color: var(--text); }
.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 99px;
  transition: width .8s ease;
}
.progress-fill.urgent { background: var(--red); }
.progress-fill.almost { background: var(--yellow); }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.card-date { font-size: .78rem; color: var(--text-light); }
.btn-test {
  padding: .45rem 1rem;
  font-size: .85rem;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition);
}
.btn-test:hover { background: var(--green-dark); }

.no-results {
  text-align: center;
  color: var(--text-light);
  padding: 3rem;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.7; }
.rules { margin-top: 1.5rem; }
.rules h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .75rem; }
.rules li { padding: .4rem 0; font-size: .9rem; color: var(--text); border-bottom: 1px solid var(--border); }
.rules li:last-child { border-bottom: none; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.feature-icon { font-size: 1.75rem; display: block; margin-bottom: .5rem; }
.feature-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.feature-card p { font-size: .85rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer .logo { color: #fff; font-size: 1.2rem; }
.footer-brand p { font-size: .85rem; margin-top: .4rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn .2s ease;
}
.modal-overlay.hidden { display: none !important; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal h2 { font-size: 1.4rem; margin-bottom: .25rem; }
.modal-sub { color: var(--text-light); font-size: .9rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,184,148,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-hint { display: block; font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.form-hint-details { margin-top: .3rem; }
.form-hint-details summary { cursor: pointer; }
.form-hint-details summary:hover { color: var(--primary); }
.form-hint-steps { margin: .5rem 0 0 1.2rem; padding: 0; font-size: .8rem; color: var(--text-light); line-height: 1.8; }
.form-hint-steps strong { color: var(--text); }
.char-count { display: block; text-align: right; font-size: .75rem; color: var(--text-light); margin-top: .25rem; }

.form-check {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: .2rem; accent-color: var(--green); }
.form-check label { font-size: .85rem; color: var(--text-light); font-weight: 400; }

/* ===== INTERSTITIAL AD ===== */
.ad-interstitial {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn .3s ease;
}
.ad-interstitial.hidden { display: none !important; }
.ad-interstitial-box {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  animation: slideUp .3s ease;
}
.ad-interstitial-label {
  font-size: .7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: .75rem;
}
.ad-interstitial-content {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
}
.ad-placeholder-large { text-align: center; padding: 2rem; }
.ad-placeholder-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.ad-placeholder-hint { font-size: .75rem; color: #bbb; margin-top: .4rem; }
.ad-interstitial-countdown {
  text-align: center;
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--text-light);
}
.ad-interstitial-close {
  display: block;
  width: 100%;
  margin-top: .75rem;
  padding: .7rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.ad-interstitial-close:hover { background: #444; }
.ad-interstitial-close.hidden { display: none !important; }

/* ===== STICKY BOTTOM AD ===== */
.ad-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 18px rgba(0,0,0,.1);
  z-index: 200;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-sticky-bar.hidden { display: none !important; }
.ad-sticky-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 2.5rem .5rem .5rem;
  min-height: 70px;
}
.ad-sticky-close {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.ad-sticky-close:hover { background: var(--border); color: var(--text); }
body.has-sticky-ad { padding-bottom: 70px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  padding: .8rem 1.5rem;
  border-radius: 99px;
  font-size: .9rem;
  z-index: 600;
  box-shadow: var(--shadow-md);
  animation: fadeIn .2s ease;
}
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }
body.has-sticky-ad .toast { bottom: calc(2rem + 70px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 4rem 1.5rem 3rem; min-height: auto; gap: 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .board-header { flex-direction: column; align-items: flex-start; }
  .about-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--green); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--bg); }
.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: .95rem;
}

/* ===== CARD HINT ===== */
.card-hint {
  font-size: .78rem;
  color: var(--green-dark);
  background: rgba(0,184,148,.08);
  border-radius: var(--radius-sm);
  padding: .4rem .7rem;
  margin-top: .6rem;
}

/* ===== COMMENTS ===== */
.comments-section { margin-top: .75rem; border-top: 1px solid var(--border); padding-top: .75rem; }
.btn-comments-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--blue); font-size: .88rem; font-weight: 600; padding: 0;
}
.btn-comments-toggle:hover { text-decoration: underline; }
.comments-body { margin-top: .6rem; }
.comments-list { margin-bottom: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.comment-item {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: .5rem .7rem; font-size: .85rem;
}
.comment-author { font-weight: 700; margin-right: .4rem; }
.comment-date { color: var(--text-light); font-size: .78rem; }
.comment-text { margin-top: .2rem; color: var(--text); }
.comment-empty { color: var(--text-light); font-size: .85rem; }
.comment-form { display: flex; flex-direction: column; gap: .4rem; }
.comment-name, .comment-text {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .4rem .7rem; font-size: .88rem; resize: none; font-family: inherit;
}
.comment-name:focus, .comment-text:focus { outline: none; border-color: var(--green); }
.btn-sm { padding: .4rem 1rem; font-size: .88rem; }

/* ===== CARD ACTIONS & REPORT ===== */
.card-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.btn-report {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: .95rem;
  padding: .25rem .4rem;
  border-radius: 4px;
  opacity: .5;
  transition: opacity var(--transition), color var(--transition);
}
.btn-report:hover { opacity: 1; color: var(--red); }

/* ===== FOOTER LEGAL ===== */
.footer-legal {
  margin-top: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  gap: .6rem;
  justify-content: center;
  align-items: center;
}
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: #fff; }
