/* fakeshopfinder.css – orientiert sich am Vevodo CI, aber eigenständig */
/* Root + Base */
:root{
  --bg:#050814;
  --bg-gradient:radial-gradient(circle at top, rgba(139,92,246,0.22), transparent 55%), linear-gradient(180deg,#050814,#020617);
  --card-bg:#050b18;
  --accent-start:#ec4899; /* pink */
  --accent-end:#8b5cf6;   /* lila */
  --text:#e5e7eb;
  --muted:#9ca3af;
  --danger:#f97373;
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,0.65);
  --font-main:-apple-system,BlinkMacSystemFont,\"Segoe UI\",system-ui,sans-serif;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  height:100%;
}

body{
  font-family:var(--font-main);
  color:var(--text);
  background:var(--bg-gradient);
}

/* Layout */
.wrapper{
  min-height:100vh;
  max-width:960px;
  margin:0 auto;
  padding:32px 16px 40px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.logo{
  align-self:flex-start;
  margin-bottom:14px;
}
.logo img{
  height:44px;
  width:auto;
  display:block;
}

h1{
  font-size:2.3rem;
  text-align:center;
  margin:10px 0 6px;
}

.headline-important{
  text-align:center;
  font-size:1.05rem;
  color:var(--muted);
  max-width:640px;
  margin:0 auto 24px;
}

.card{
  width:100%;
  max-width:760px;
  padding:22px 20px 24px;
  border-radius:26px;
  background:linear-gradient(145deg,rgba(15,23,42,0.96),rgba(15,23,42,0.92));
  box-shadow:var(--shadow);
}

.input-row{
  display:flex;
  gap:12px;
  align-items:center;
}

.input-row input[type=\"text\"]{
  flex:1;
  padding:16px 18px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.28);
  background:rgba(15,23,42,0.9);
  color:var(--text);
  font-size:0.98rem;
  outline:none;
}

.input-row input::placeholder{
  color:rgba(148,163,184,0.7);
}

#submitBtn{
  padding:12px 20px;
  min-width:130px;
  border:none;
  border-radius:999px;
  font-weight:600;
  font-size:0.98rem;
  cursor:pointer;
  background:linear-gradient(90deg,var(--accent-start),var(--accent-end));
  color:#fff;
  box-shadow:0 14px 35px rgba(236,72,153,0.35);
  transition:transform .12s ease,box-shadow .12s ease,opacity .12s ease;
}

#submitBtn:disabled{
  opacity:0.6;
  cursor:default;
  box-shadow:none;
}

#submitBtn:hover:not(:disabled){
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(236,72,153,0.45);
}

.hint{
  margin-top:10px;
  font-size:0.84rem;
  color:var(--muted);
}

.error{
  margin-top:8px;
  font-size:0.9rem;
  color:var(--danger);
  display:none;
}

/* SEO-Text Sektion */
.seo-text{
  max-width:880px;
  margin:40px auto 30px;
  padding:26px 24px 26px;
  background:#050b18;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,0.65);
}

.seo-text h2{
  margin-top:0;
  margin-bottom:14px;
  font-size:1.4rem;
}

.seo-text h3{
  margin-top:22px;
  margin-bottom:8px;
  font-size:1.1rem;
}

.seo-text p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.6;
}

.seo-text ul{
  margin:0 0 10px 0;
  padding-left:1.3rem;
}

.seo-text li{
  margin-bottom:6px;
  color:var(--text);
}

/* Footer */
.footer{
  width:100%;
  max-width:960px;
  margin:10px auto 0;
  border-top:1px solid rgba(148,163,184,0.25);
  padding-top:14px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:0.82rem;
  color:var(--muted);
}

.footer-inner nav a{
  color:var(--muted);
  margin-left:12px;
  text-decoration:none;
}

.footer-inner nav a:hover{
  color:#e5e7eb;
}

/* Responsive */
@media (max-width:720px){
  h1{font-size:1.9rem;}
  .card{padding:20px 18px;}
  .input-row{flex-direction:column;align-items:stretch;}
  #submitBtn{width:100%;}
  .seo-text{padding:22px 18px;}
  .footer-inner{flex-direction:column;align-items:flex-start;gap:8px;}
}
