/* ========================
   Discord-Style Theme
   ======================== */

:root {
  --bg-dark: #2f3136;
  --bg-darker: #202225;
  --bg-light: #36393f;
  --accent: #5865f2;
  --text: #dcddde;
  --text-light: #b9bbbe;
  --success: #3ba55d;
  --danger: #ed4245;
  --radius: 8px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.5;
}

/* Hero */
.hero {
  background: var(--bg-darker);
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid var(--accent);
}

.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Content */
.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  margin: 2rem 0 1rem;
  color: #fff;
  font-size: 1.5rem;
}

/* Features */
.feature {
  background: var(--bg-light);
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.feature label {
  cursor: pointer;
  width: 100%;
}

.feature input[type="checkbox"] {
  margin-right: 0.6rem;
}

/* Cart */
.cart {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.cart h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

#cart-list {
  list-style: none;
  margin-bottom: 0.5rem;
}

#cart-list li {
  padding: 0.3rem 0;
  color: var(--text-light);
}

/* Forms */
form label {
  display: block;
  margin: 1rem 0 0.3rem;
  color: var(--text-light);
}

input[type="text"],
textarea {
  width: 100%;
  padding: 0.6rem;
  background: var(--bg-dark);
  border: 1px solid #444;
  border-radius: var(--radius);
  color: var(--text);
  resize: none;
}

textarea {
  min-height: 80px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: bold;
  text-align: center;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #4752c4;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  background: var(--bg-darker);
  color: var(--text-light);
  font-size: 0.9rem;
}
