:root {
  --bg-gradient: linear-gradient(135deg, #1e293b, #0f172a);
  --text-primary: #ffffff;
  --text-subtitle: #8bb4e1;
  --text-secondary: #64748b;
  --accent-color: #3b82f6;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-gradient);
  color: var(--text-primary);
  font-family: var(--font-family);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 600px;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.4rem;
  color: var(--text-subtitle);
  font-weight: 400;
  margin-bottom: 2rem;
}

.divider {
  width: 70px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.message {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-primary);
  opacity: 0.9;
  margin-bottom: 4rem;
  font-weight: 400;
}

.message p {
  margin-bottom: 0.2rem;
}

footer {
  position: absolute;
  bottom: 14rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: -250px; 
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(30, 41, 59, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.cookie-banner.show {
  bottom: 2rem; /* Shown when JS adds 'show' class */
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  text-align: left;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-accept {
  background-color: var(--accent-color);
  color: white;
}

.btn-accept:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

.btn-decline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  h1 { font-size: 3.5rem; }
  .subtitle { font-size: 1.5rem; margin-bottom: 2rem; }
  .divider { margin-bottom: 2.5rem; }
  .message { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .subtitle { font-size: 1.2rem; }
  .message { font-size: 1.1rem; }
}
