:root {
  --bg:#020812; --panel:#071523; --panel2:#0b1d30;
  --cyan:#00d4ff; --cyan2:#5ee7ff;
  --green:#34c759; --red:#ff3b30; --orange:#ff9500; --yellow:#ffcc00;
  --txt:#eaf4ff; --muted:#9db7d4;
}

* { box-sizing: border-box; }

body.mascotte-theme {
  margin:0;
  min-height:100vh;
  font-family:'Inter',Arial,Helvetica,sans-serif;
  color:var(--txt);
  background:
    radial-gradient(circle at 15% 0%, rgba(0,212,255,.22), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(255,59,48,.10), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(0,122,255,.12), transparent 38%),
    linear-gradient(135deg, #02060d, #071320 52%, #02060c);
  overflow-x:hidden;
  position:relative;
}

body.mascotte-theme::before {
  content:"";
  position:fixed; inset:0;
  background-image:
    linear-gradient(rgba(0,220,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,220,255,.035) 1px, transparent 1px);
  background-size:44px 44px;
  pointer-events:none;
  z-index:-2;
}

body.mascotte-theme::after {
  content:"";
  position:fixed; inset:0;
  background:linear-gradient(180deg, transparent, rgba(0,212,255,.035), transparent);
  animation:mascotteScan 6s linear infinite;
  pointer-events:none;
  z-index:-1;
}

@keyframes mascotteScan {
  0% { transform:translateY(-100%); }
  100% { transform:translateY(100%); }
}

.mascotte-shell {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.mascotte-panel {
  background:linear-gradient(145deg, rgba(9,22,38,.96), rgba(4,13,24,.98));
  border:1px solid rgba(0,216,255,.20);
  border-radius:22px;
  box-shadow:0 22px 44px rgba(0,0,0,.35), inset 0 0 24px rgba(0,212,255,.035);
  backdrop-filter:blur(7px);
  padding:36px;
}

.mascotte-eyebrow {
  color:var(--cyan2);
  letter-spacing:3px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:6px;
}

.mascotte-title {
  font-size:28px;
  font-weight:800;
  margin:0 0 6px 0;
  text-shadow:0 0 22px rgba(0,212,255,.40);
}

.mascotte-subtitle {
  color:var(--muted);
  font-size:14px;
  margin:0 0 24px 0;
  line-height:1.5;
}

label.mascotte-label {
  display:block;
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.5px;
  margin:14px 0 6px 0;
  font-weight:700;
}

input.mascotte-input, select.mascotte-input {
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(0,216,255,.20);
  background:rgba(2,8,18,.75);
  color:var(--txt);
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:.2s;
}
input.mascotte-input:focus, select.mascotte-input:focus {
  border-color:var(--cyan);
  box-shadow:0 0 0 3px rgba(0,212,255,.15);
}
input.mascotte-input::placeholder { color:rgba(157,183,212,.5); }

.mascotte-btn {
  border:0;
  border-radius:12px;
  color:white;
  cursor:pointer;
  font-weight:800;
  font-family:inherit;
  font-size:14px;
  padding:13px 18px;
  background:linear-gradient(135deg,#007aff,#00d4ff);
  box-shadow:0 0 18px rgba(0,180,255,.25);
  transition:.2s;
  width:100%;
  margin-top:18px;
}
.mascotte-btn:hover { transform:translateY(-2px) scale(1.01); box-shadow:0 0 26px rgba(0,212,255,.55); }
.mascotte-btn:active { transform:translateY(0) scale(.99); }

.mascotte-btn-danger { background:linear-gradient(135deg,#ff3b30,#ff9500); }
.mascotte-btn-success { background:linear-gradient(135deg,#00b894,#34c759); }

.mascotte-link { color:var(--cyan2); text-decoration:none; border-bottom:1px solid rgba(94,231,255,.35); }
.mascotte-link:hover { border-bottom-color:var(--cyan2); }

.mascotte-feedback { margin-top:14px; font-size:13px; min-height:1.4em; line-height:1.5; }
.mascotte-feedback.error { color:var(--red); }
.mascotte-feedback.success { color:var(--green); }

.mascotte-badge {
  display:inline-block;
  padding:4px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:11px;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.mascotte-badge-critical { background:rgba(255,59,48,.18); color:var(--red); border:1px solid rgba(255,59,48,.45); }
.mascotte-badge-warning { background:rgba(255,149,0,.18); color:var(--orange); border:1px solid rgba(255,149,0,.45); }
.mascotte-badge-ok { background:rgba(52,199,89,.18); color:var(--green); border:1px solid rgba(52,199,89,.45); }
.mascotte-badge-info { background:rgba(0,212,255,.15); color:var(--cyan2); border:1px solid rgba(0,212,255,.35); }

.mascotte-theme ::-webkit-scrollbar { width:10px; }
.mascotte-theme ::-webkit-scrollbar-track { background:var(--bg); }
.mascotte-theme ::-webkit-scrollbar-thumb { background:rgba(0,212,255,.25); border-radius:999px; }
