:root {
  --bg: #f9f9f9;
  --text: #222;
  --title: #6B1F73;
  --accent: #C6A961;
  --white: #fff;
  --transition: 0.3s ease;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --font: 'Roboto', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

h1, h2, h3 {
  color: var(--title);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.3rem;
}

strong {
  color: var(--text);
  font-weight: 600;
}

em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2c3e50;
  color: #fff;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  font-size: 0.95rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  animation: slideInUp var(--transition);
}

@keyframes slideInUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cookie-btn:hover {
  transform: scale(1.05);
}

.cookie-accept {
  background-color: #4CAF50;
}

.cookie-decline {
  background-color: #E53935;
}

.cookie-customize {
  background-color: #F39C12;
}

/* --- Floating Button --- */
#cookie-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--title);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: var(--shadow-soft);
  transition: background-color var(--transition), transform var(--transition);
}

#cookie-toggle:hover {
  transform: scale(1.08);
  background-color: #501353;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
