/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  cursor: url('https://raw.githubusercontent.com/KDE/breeze-cursors/master/cursors/left_ptr.png'), auto; /* Breeze cursor */
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s, color 0.2s;
}

/* Light & Dark theme variables */
body.dark-mode {
  --bg-color: #1e1e2e;
  --card-bg: #2c2c3c;
  --text-color: #f0f0f0;
  --primary-color: #009ee0;
  --footer-bg: #26263f;
}

body.light-mode {
  --bg-color: #f0f0f0;
  --card-bg: #ffffff;
  --text-color: #1e1e2e;
  --primary-color: #009ee0;
  --footer-bg: #e0e0e0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Theme switcher */
.theme-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
}

.theme-switcher button {
  background-color: var(--card-bg);
  color: var(--primary-color);
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
}

/* Cards */
.specs-card, .links-card {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid #444;
}

.specs-card h2, .links-card h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

/* Links */
.spec-link, .back-link {
  display: block;
  padding: 0.7rem 1rem;
  margin: 0.5rem 0;
  background-color: var(--card-bg);
  color: var(--primary-color);
  text-align: center;
  border-radius: 8px;
  border: 1px solid #888;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  background-color: var(--footer-bg);
  color: var(--text-color);
  font-size: 0.9rem;
}
