:root {
  --accent: #00ffaa;
  --bg: #050505;
  --card: #111112;
  --text: #ffffff;
  --secondary: #a1a1a6;
  --samia: #ffd700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-decoration: none;
  color: white;
}
.logo span {
  color: var(--accent);
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#card {
  background: var(--card);
  width: 100%;
  max-width: 580px;
  padding: clamp(25px, 5vw, 45px);
  border-radius: 32px;
  border: 1px solid #222;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.status-pill {
  background: #1a1a1e;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.opt {
  background: #18181a;
  border: 1px solid #28282a;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.opt:hover {
  border-color: var(--accent);
  background: #1e1e22;
  transform: translateX(8px);
}
.opt span {
  font-weight: 600;
  font-size: 16px;
}
.opt-icon {
  color: var(--accent);
  opacity: 0;
  transition: 0.3s;
}
.opt:hover .opt-icon {
  opacity: 1;
}

/* Results Logic Styles */
.samia-unlock {
  background: linear-gradient(90deg, #ffd700, #b8860b);
  color: #000;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.box {
  background: #18181a;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #28282a;
}
.lbl {
  font-size: 10px;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.val {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-top: 6px;
}

.btn {
  width: 100%;
  padding: 20px;
  border-radius: 18px;
  border: none;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.btn-p {
  background: var(--accent);
  color: #000;
}
.btn-p:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}
.btn-s {
  background: transparent;
  border: 1px solid #28282a;
  color: #fff;
}

/* Dev Section */
.dev-about {
  max-width: 580px;
  margin: 20px auto 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  border: 1px solid #1a1a1a;
}
.dev-flex {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.dev-avatar {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  margin-right: 15px;
}

footer {
  padding: 40px;
  text-align: center;
  font-size: 13px;
  color: #444;
  border-top: 1px solid #1a1a1a;
}
footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade {
  animation: fadeIn 0.4s forwards;
}
