
:root{
  --yitsp-bg:#050806;
  --yitsp-card:#111612;
  --yitsp-text:#E5F2E1;
  --yitsp-muted:#9FB6A8;
  --yitsp-accent:#9BE870;
}

/* Card container */
.yitsp-card{
  position:relative;
  width:100%;
  max-width:100%;
  margin:0 0 24px 0;
  padding:22px 26px;
  border-radius:18px;
  background:radial-gradient(circle at top left,#121c14,#050806 55%);
  border:1px solid rgba(155,232,112,0.16);
  box-shadow:0 24px 60px rgba(0,0,0,0.55);
  box-sizing:border-box;
}

/* Heading & subtitle */
.yitsp-header h3{
  margin:0 0 4px;
  font-size:20px;
  font-weight:700;
  color:var(--yitsp-text);
}

.yitsp-help{
  margin:0;
  color:var(--yitsp-muted);
  font-size:13px;
}

/* URL row */
.yitsp-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:4px 4px 4px 16px;
  border-radius:999px;
  background:#050806;
  box-shadow:0 0 0 1px rgba(155,232,112,0.14);
}

.yitsp-input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  color:var(--yitsp-text);
  font-size:14px;
  padding:10px 4px;
}

.yitsp-input::placeholder{
  color:#5d776a;
}

/* Analyze button */
.yitsp-btn{
  border:none;
  border-radius:999px;
  padding:10px 22px;
  font-weight:600;
  cursor:pointer;
  background:var(--yitsp-accent);
  color:#071107;
  box-shadow:0 0 0 0 rgba(155,232,112,0.4);
  transition:box-shadow .2s, transform .12s, background .12s;
}

.yitsp-btn,
.yitsp-btn span{
  color:#000000 !important;
}

.yitsp-btn:hover{
  box-shadow:0 0 0 6px rgba(155,232,112,0.15);
  transform:translateY(-1px);
}

.yitsp-btn:active{
  transform:translateY(0);
  box-shadow:0 0 0 3px rgba(155,232,112,0.2);
}

/* Progress text */
.yitsp-progress{
  margin:12px 0 0;
  color:var(--yitsp-muted);
  font-size:13px;
}

/* Result grid: 3 columns desktop, 2 tablet, 1 mobile */
.yitsp-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}

@media (max-width:1024px){
  .yitsp-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:700px){
  .yitsp-card{
    padding:18px 18px;
  }
  .yitsp-row{
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border-radius:18px;
  }
  .yitsp-btn{
    width:100%;
    text-align:center;
    justify-content:center;
  }
  .yitsp-grid{
    grid-template-columns:1fr;
  }
}

/* Result box styling */
.yitsp-box{
  background:#0f1411;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid #263229;
}

.yitsp-box strong{
  color:#cfe8c6;
}

.yitsp-kv{
  margin:8px 0 0;
  font-size:14px;
}

.yitsp-kv span{
  color:var(--yitsp-muted);
}

/* Pills / badges */
.yitsp-badge{
  display:inline-block;
  margin:4px 6px 0 0;
  padding:6px 10px;
  border-radius:999px;
  background:#0e1a14;
  border:1px solid #28402f;
  color:#b7ef9b;
  font-size:12px;
}

/* Score highlight */
.yitsp-score{
  font-size:26px;
  font-weight:900;
  color:#b7ef9b;
}

/* Code blocks */
.yitsp-code{
  background:#0b100d;
  border-radius:10px;
  padding:10px 12px;
  border:1px solid #203126;
  font-family:SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  color:var(--yitsp-text);
  overflow-x:auto;
}

/* Small muted text */
.yitsp-small{
  font-size:12px;
  color:var(--yitsp-muted);
  margin-top:6px;
}

/* URL line break */
.yurl{
  word-break:break-all;
}
