*{margin:0;padding:0;box-sizing:border-box}

html,body{
  width:100%;
  max-width:100%;
  margin:0!important;
  padding:0!important;
}

:root{
  --bg:#f3f4f6;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --primary:#4f46e5;
}

.entry-content,
.wp-block-post-content,
.site-content,
.content-area{
  margin-top:0!important;
  padding-top:0!important;
}

.ccc-app{
  width:100%;
  display:flex;
  justify-content:center;
  padding:40px 20px;
  background:var(--bg);
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
}

.ccc-card{
  width:100%;
  max-width:720px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:32px;
  box-shadow:0 4px 24px rgba(0,0,0,.06);
}

.ccc-title{
  text-align:center;
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color:var(--text);
}

.ccc-textarea{
  width:100%;
  min-height:200px;
  background:var(--card);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:10px;
  padding:16px;
  outline:none;
  font-size:16px;
  line-height:1.8;
  font-family:inherit;
  resize:vertical;
  margin-bottom:24px;
}

.ccc-textarea:focus{
  border-color:var(--primary);
}

.ccc-textarea::placeholder{
  color:var(--muted);
}

.ccc-stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:16px;
}

.ccc-stat{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  text-align:center;
}

.ccc-stat-value{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:4px;
  line-height:1.2;
}

.ccc-stat-label{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
}

.ccc-est{
  font-size:11px;
  font-weight:500;
  color:var(--muted);
  cursor:help;
  border-bottom:1px dotted var(--muted);
}

.ccc-more-toggle{
  width:100%;
  background:none;
  border:none;
  border-top:1px solid var(--border);
  padding:14px 0 4px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  color:var(--primary);
  font-size:14px;
  font-weight:600;
}

.ccc-chevron{
  display:inline-block;
  transition:transform .2s ease;
  font-size:12px;
}

.ccc-more-stats{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}

.ccc-more-stats.ccc-open{
  max-height:400px;
  margin-top:12px;
}

.ccc-more-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 4px;
  border-bottom:1px solid var(--border);
  font-size:14px;
}

.ccc-more-row span{
  color:var(--muted);
}

.ccc-more-row strong{
  color:var(--text);
  font-weight:700;
}

.ccc-actions{
  display:flex;
  gap:10px;
  margin-top:24px;
}

.ccc-btn{
  flex:1;
  padding:12px;
  border-radius:10px;
  border:none;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

.ccc-btn-secondary{
  background:var(--bg);
  color:var(--text);
  border:1px solid var(--border);
}

.ccc-btn-secondary:hover{
  background:var(--border);
}

.ccc-btn-primary{
  background:var(--primary);
  color:#fff;
}

.ccc-btn-primary:hover{
  background:#4338ca;
}

@media(max-width:600px){
  .ccc-app{
    padding:20px 12px;
  }

  .ccc-card{
    padding:20px;
  }

  .ccc-title{
    font-size:21px;
  }

  .ccc-stat-value{
    font-size:22px;
  }

  .ccc-stats-grid{
    gap:10px;
  }

  .ccc-actions{
    flex-direction:column;
  }
}
