:root{
--bg:#f3f4f6;
--text:#111827;
--card:#ffffff;
--border:#e5e7eb;
}

[data-theme="dark"]{
--bg:#0f172a;
--text:#f1f5f9;
--card:#1e293b;
--border:#334155;
}

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

body{
font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--text);
min-height:100vh;
transition:background-color .35s ease,color .35s ease;
}


/* HEADER */

.header{
position:sticky;
top:0;
display:flex;
align-items:center;
padding:16px 20px;
background:var(--card);
box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.title{
flex:1;
text-align:center;
font-weight:600;
font-size:16px;
}

.icon-btn{
background:none;
border:none;
cursor:pointer;
padding:8px;
border-radius:50%;
color:var(--text);
}

.icon-btn:hover{
background:#DBC900;
}

.icon-btn svg{
width:22px;
height:22px;
}


/* CONTAINER */

.feedback-container{
padding:40px 20px;
max-width:520px;
margin:auto;
}


/* CARD */

.feedback-card{
background:var(--card);
border-radius:20px;
padding:28px 24px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
border:1px solid var(--border);
display:flex;
flex-direction:column;
gap:16px;
}


/* FORM */

form{
display:flex;
flex-direction:column;
gap:14px;
}

input,select,textarea{
padding:12px 14px;
border-radius:10px;
border:1px solid var(--border);
background:var(--bg);
color:var(--text);
font-family:inherit;
}

textarea{
resize:none;
min-height:100px;
}


.send-btn{
background:#1B61E2;
color:#fff;
border:none;
border-radius:30px;
padding:12px;
cursor:pointer;
font-weight:600;
transition:.25s;
}

.send-btn:hover{
transform:scale(1.05);
box-shadow:0 8px 25px #DBC900;
}

.toast{
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%) translateY(100px);
  background:var(--card);
  color:var(--muted);
  padding:12px 20px;
  border-radius:30px;
  font-size:13px;
  opacity:0;
  transition:.3s;
  z-index:99999;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}