:root {
  --brand-primary: #0f172a;       /* Sophisticated Deep Slate */
  --brand-accent: #2563eb;        /* Trustworthy Royal Blue */
  --brand-accent-hover: #1d4ed8;  /* Deep Indigo Blue */
  --brand-accent-light: #f8fafc;  /* Soft Slate-Tinted White Background */
  --text-dark: #334155;           /* Clear Readable Charcoal */
  --text-light: #64748b;
  --card-bg: #ffffff;
}

body {
  background-color: #f1f5f9;
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* BRAND LOGO DESIGN (HTML/CSS) */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.logo-icon {
  background: var(--brand-accent);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
}
.logo-text {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--brand-primary);
	letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--brand-accent);
  text-transform: capitalize;
}

.advertorial-badge {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-light);
  background: #e2e8f0;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
}

.main-card {
  background: var(--card-bg);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 80px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  color: var(--brand-primary);
  font-size: 2.4rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--brand-accent);
  margin-top: 10px;
  border-radius: 2px;
}

p {
  line-height: 1.75;
  font-size: 1.05rem;
}

.vorteil-box {
  background-color: var(--brand-accent-light);
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 16px;
  margin: 35px 0;
}

.vorteil-liste {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.vorteil-liste li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  color: var(--brand-primary);
}

.vorteil-liste li:last-child {
  margin-bottom: 0;
}

.vorteil-liste li span {
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--brand-accent);
}

.age-button {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: var(--brand-primary);
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 12px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.age-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.age-button img {
  max-width: 55px;
  margin-bottom: 14px;
}

.age-button span {
  font-weight: 700;
  font-size: 1.15rem;
}

footer {
  background-color: var(--brand-primary);
  color: #94a3b8;
  padding: 60px 0;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s;
  font-size: 0.9rem;
}

footer a:hover {
  color: #fff;
}

.top-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  -webkit-backdrop-filter: blur(12px);
}

/* COOKIE POPUP COMPONENT DESIGN */
#cookieConsent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 680px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  z-index: 1060;
  font-size: 0.9rem;
  color: var(--text-dark);
}

#cookieConsent p {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 0.9rem;
}

#cookieConsent p:first-child {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
}

#cookieConsent a {
  color: var(--brand-accent);
  text-decoration: underline;
}

#cookieConsent a:hover {
  color: var(--brand-accent-hover);
}

.btn-container {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 14px;
}

.cookieButton {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cookieButton.accept {
  background-color: var(--brand-primary);
  color: white;
}

.cookieButton.accept:hover {
  background-color: #1e293b;
}

.cookieButton.reject {
  background-color: #f1f5f9;
  color: #475569;
}

.cookieButton.reject:hover {
  background-color: #e2e8f0;
}

.cookie-legal {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cookie-legal a {
  color: var(--text-light) !important;
  text-decoration: none !important;
}

.cookie-legal a:hover {
  text-decoration: underline !important;
}
	
