
:root {
  --bg: #ffffff;
  --card: #ffffff;

  --text: #5a5f63;
  --muted: #8b8f93;

  --accent: #c9a25d;
  --accent-soft: #e6dcc8;

  --shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.dark {
  --bg: #121212;
  --card: #1c1c1c;

  --text: #eaeaea;
  --muted: #b5b5b5;

  --accent: #c9a25d;
  --accent-soft: #3a3326;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 960px;
  padding: 60px 20px;
}

.logo {
  width: 180px;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 40px 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  border: 1px solid var(--accent-soft);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  border-color: var(--accent);
}

.card img {
  width: 90px;
  margin-bottom: 24px;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.card:hover h2 {
  color: var(--accent);
}

.card p {
  color: var(--muted);
  font-size: 1rem;
}

.dark-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--card);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.15);
  font-size: 0.95rem;
}

.cookie-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 20px;
  cursor: pointer;
}
