/* ==========
   Base
========== */
:root{
  --bg:#0b0b0b;        /* Schwarz */
  --fg:#e5e7eb;        /* hellgrau für Text */
  --muted:#9ca3af;     /* gedämpft */
  --accent:#facc15;    /* Gelb */
  --accent-2:#fde047;  /* helleres Gelb */
  --card:#111213;      /* Kartenhintergrund */
  --border:#1f2937;    /* Rahmen */
  --maxw:1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: Verdana, Geneva, Tahoma, Arial, Helvetica sans-serif;
  line-height:1.6;
}

h1,h2,h3{
  font-family: "Raleway", Verdana, Geneva, Tahoma, sans-serif;
  line-height:1.2;
  margin:0 0 .6rem;
}
h1{ font-size: clamp(2rem, 4vw, 3rem); font-weight:800; }
h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight:800; }
h3{ font-size: 1.25rem; font-weight:700; }

p{ margin:.4rem 0 1rem; color:var(--fg); }
.lead{ color:#f3f4f6; font-size:1.1rem; }

.container{
  width:min(100% - 2rem, var(--maxw));
  margin-inline:auto;
}

/* ==========
   Header
========== */
.site-header{
  position:fixed; inset:0 0 auto 0;
  background: rgba(11,11,11,.85);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--border);
  z-index:50;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:.75rem 0;
}
.logo{
  display:flex; align-items:center; gap:.5rem;
  text-decoration:none; color:var(--fg);
  font-weight:800; letter-spacing:.2px;
}
.logo-emoji{ filter: drop-shadow(0 0 8px rgba(250,204,21,.4)); }
.logo-text{ font-family:"Raleway", sans-serif; }

.main-nav ul{
  display:flex; gap:1rem; list-style:none; margin:0; padding:0;
}
.main-nav a{
  color:var(--fg); text-decoration:none; padding:.4rem .6rem; border-radius:999px;
}
.main-nav a:hover{ background: #131417; }
.btn-nav{ background: var(--accent); color:#111; font-weight:700; }
.btn-nav:hover{ background: var(--accent-2); }

/* Mobile nav */
.nav-toggle{ display:none; background:none; border:1px solid var(--border); color:var(--fg); padding:.4rem .6rem; border-radius:8px; }
#nav-list.open{ display:flex; }

.header-spacer{ height:64px; }

/* ==========
   Sections
========== */
.section{ padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt{ background:#0f1113; }

.hero{
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(250,204,21,.1), transparent 60%),
              radial-gradient(1000px 600px at 90% -20%, rgba(250,204,21,.07), transparent 60%);
  text-align:center;
}
.hero .hero-actions{
  margin-top:1.2rem; display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap;
}

/* Grid helpers */
.grid-2{
  display:grid; gap:1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px){
  .grid-2{ grid-template-columns: 1.1fr .9fr; align-items:start; }
}

/* Cards */
.cards{
  display:grid; gap:1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card{
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.card h3{ margin-top:0; }

/* About card */
.about-card{
  background:linear-gradient(180deg, rgba(250,204,21,.08), rgba(250,204,21,0));
  border:1px solid var(--border); border-radius:16px; padding:1rem 1.2rem;
}
.about-card blockquote{ margin:0; font-style:italic; color:#f9fafb; }

/* Lists */
.checklist{ list-style:none; padding:0; margin:0 0 1rem; }
.checklist li{ padding-left:1.5rem; position:relative; margin:.35rem 0; }
.checklist li::before{
  content:"✓"; position:absolute; left:0; color:var(--accent); font-weight:700;
}
.bullets{ margin:.4rem 0 0 1rem; }

/* Links */
.links{ padding-left:1rem; }
.links a{ color:var(--accent); }
.links a:hover{ text-decoration:underline; }
.disclaimer{ color:var(--muted); }

/* Pricing */
.pricing .price{
  font-size:1.2rem; font-weight:800; color:var(--accent);
}

/* CTA */
.cta{
  background: radial-gradient(800px 400px at 50% -20%, rgba(250,204,21,.18), transparent 60%),
              linear-gradient(180deg, rgba(250,204,21,.06), transparent 60%);
  text-align:center;
}
.cta-inner{ display:grid; gap:.6rem; justify-items:center; }

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:1.2rem 0; background:#0b0b0b;
}
.footer-inner{
  display:flex; gap:.8rem; justify-content:space-between; flex-wrap:wrap; align-items:center;
}
.legal{ color:var(--muted); }

/* ==========
   Buttons
========== */
.btn{
  display:inline-block; border-radius:999px;
  padding:.7rem 1rem; text-decoration:none; font-weight:700;
  transition: transform .06s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background:var(--accent); color:#111;
  box-shadow: 0 8px 20px rgba(250,204,21,.25);
}
.btn-primary:hover{ background:var(--accent-2); }

.btn-ghost{
  color:var(--fg); border:1px solid var(--border); background:transparent;
}
.btn-ghost:hover{ border-color:#303644; background:#121417; }

.btn-invert{
  background:#111; color:var(--accent); border:1px solid #2b2f3a;
}
.btn-invert:hover{ background:#0d0f14; }

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}


/* ==========
   FAQ details
========== */
details{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:12px;
  padding:.8rem 1rem;
  margin:.6rem 0;
}
details summary{
  cursor:pointer; font-weight:700; list-style:none;
}
details[open]{ border-color:#2b2f3a; }

/* ==========
   Responsive Nav
========== */
@media (max-width: 860px){
  .main-nav ul{ display:none; position:absolute; right:1rem; top:60px; background:#0e0f12;
    border:1px solid var(--border); border-radius:12px; padding:.6rem; flex-direction:column; min-width:220px; }
  .main-nav a{ display:block; padding:.6rem .8rem; }
  .nav-toggle{ display:block; }
}

/* ==========
   Logo Glow & Header Polish
========== */
.logo-emoji{
  font-size:1.4rem;
  filter: drop-shadow(0 0 8px rgba(250,204,21,.5))
          drop-shadow(0 0 15px rgba(250,204,21,.2));
  transition: transform .2s ease, filter .3s ease;
}
.logo-emoji:hover{
  transform: rotate(10deg) scale(1.15);
  filter: drop-shadow(0 0 12px rgba(250,204,21,.7))
          drop-shadow(0 0 20px rgba(250,204,21,.4));
}

.logo-text {
  font-weight: 800;
  /* Fallback für Browser ohne background-clip:text */
  color: var(--accent);

  /* Gradient-Text */
  background-image: linear-gradient(90deg, var(--accent), var(--accent-2));
  background-clip: text;               /* Standard */
  -webkit-background-clip: text;       /* Safari/WebKit */
  -webkit-text-fill-color: transparent; /* Safari/WebKit */
}


/* ==========
   Extra Button Polish
========== */
.btn-primary{
  background:var(--accent);
  color:#111;
  box-shadow: 0 8px 22px rgba(250,204,21,.25);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary:hover{
  background:var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(250,204,21,.35);
}

/* ==========
   Section Spacing Fine-Tune
========== */
.section{
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.section h2{
  margin-bottom: 1.4rem;
  text-align:center;
  position:relative;
}
.section h2::after{
  content:"";
  display:block;
  width:60px; height:3px;
  background:var(--accent);
  margin: .6rem auto 0;
  border-radius:2px;
}

/* ==========
   Pricing Button Center
========== */
.pricing .card{
  display: flex;
  flex-direction: column;
  align-items: center;   /* Zentriert den Inhalt horizontal */
  text-align: center;    /* Überschriften + Text auch mittig */
}

.pricing .card .btn{
  margin-top: 1rem;
}

/* Pricing Card Hover Effekt */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border-color: var(--accent);
}

/* =========================
   Empfehlungen (Bücher & Tools)
========================= */
#recommendations h3{
  margin-top: 1.2rem;
  margin-bottom: .4rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}

#recommendations ul.links{
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

#recommendations ul.links li + li{
  margin-top: .45rem;
}

#recommendations ul.links a{
  color: var(--accent);
  text-decoration: none;
}

#recommendations ul.links a:hover{
  text-decoration: underline;
}

/* ================== Kontaktformular ================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto; /* zentriert */
  padding: 2rem;
  background: #332f2f;        /* Dunkelgrau */ /*#fff;*/
  color: #FFD700; /* Gelb */
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
  border: 2px solid #ddd;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.15);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px; /* komplett rund */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.contact-form button:active {
  transform: translateY(0);
}

/* ================== Footer ================== */
.site-footer {
  background: var(--dark, #111);
  color: #eee;
  padding: 3rem 1.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}

.footer-brand .logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  display: block;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.3rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-nav a,
.footer-legal a {
  color: #eee;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 1.3rem;
}

.footer-social a {
  color: #eee;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
}

/* Footer Links (Impressum, Datenschutz) */
footer a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff; /* Weiß beim Hover */
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--accent); /* dein Goldton */
  font-size: 1.4rem;
  margin: 0 0.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #ffeb7a; /* helleres Gold beim Hover */
  transform: translateY(-3px);
}


/* Responsive: mehrere Spalten ab Tablet */
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    align-items: start;
  }
  .footer-legal {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: flex-end;
  }
}

/* =========================
   Galerie (komplette Bilder sichtbar, sauberer Abschluss)
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-grid figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden; /* sorgt dafür, dass Bilder exakt die Rundung übernehmen */
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
}

.gallery-grid figure:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border-color: var(--accent);
}

.gallery-grid img {
  width: 100%;
  height: 250px;       /* feste Höhe für Einheitlichkeit */
  object-fit: contain; /* zeigt das ganze Bild */
  display: block;
  background: #000;    /* schwarze Balken, falls Seiten nicht gefüllt */
}


@media (max-width: 768px) {
  .gallery-grid img {
    height: auto;      /* auf kleinen Bildschirmen volle Höhe */
    object-fit: contain;
  }
}


.gallery-grid figcaption {
  padding: 0.8rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}


/* =========================
   Hero mit Video + Mobile-Optimierung
========================= */
.hero-video {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 0;
}

.hero-video .hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;  /* zeigt das ganze Video, nichts abgeschnitten */
  background: #000;     /* schwarze Balken falls nötig */
  z-index: -2;
}

.hero-video .hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: -2;
  position: absolute;
  top: 0; left: 0;
}

/* Abdunkelung für Lesbarkeit */
.hero-video .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

.hero-video .hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 900px;
}

/* Desktop/Mobile Sichtbarkeit */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}


/* =========================
   Mobile Optimierung
   - nur Bild, kein Video
========================= */
@media (max-width: 768px) {
  .hero-video .hero-bg {
    display: none; /* Video auf Mobile ausschalten */
  }
  .hero-video .hero-fallback {
    display: block; /* Bild bleibt sichtbar */
  }
}

/* =========================
   Über mich
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 544px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.contact-photo {
  text-align: center; /* sorgt für Zentrierung */
  margin-top: 2rem;
}

.contact-photo img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: inline-block; /* bleibt zentriert */
}

/* Kontaktbereich zentrieren + gelb */
#contact {
  text-align: center;
}

#contact h2,
#contact a,
#contact p {
  color: #FFD700; /* Gelb */
}

/*Video-Seite*/
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-card h3 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  text-align: center;
}

/* aktive Nav-Link-Farbe */
.nav-list a.active {
  color: #FFD700; /* gelb */
}

/* optional: etwas Abstand für große Navs */
.nav-list { gap: 1.1rem; }

/* Bei Bedarf: kleinere Schrift auf Mobile */
@media (max-width: 480px) {
  .nav-list a { font-size: 0.95rem; }
}

/* Links im Impressum, Datenschutz & Danke (außer Zurück-Button) */
.impressum a:not(.btn),
.datenschutz a:not(.btn),
.danke a:not(.btn) {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum a:not(.btn):hover,
.datenschutz a:not(.btn):hover,
.danke a:not(.btn):hover {
  color: #ffffff; /* Weiß beim Hover */
}

/* =========================
   Empfehlungen – Card Galerie
========================= */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.recommend-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
}

.recommend-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border-color: var(--accent);
}

.recommend-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;   /* Bilder bleiben vollständig sichtbar */
  background: #111;      /* dunkler Hintergrund, falls freier Rand */
}

.recommend-card h3 {
  margin: 0.8rem 0 0.3rem;
  font-size: 1rem;
  color: var(--text);
}

.recommend-card p {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0 1rem 0.5rem;
}

.recommend-card a {
  display: inline-block;
  margin: 0.8rem 0 1.2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.25s ease;
}

.recommend-card a:hover {
  background: #ffda4d;
}

.affiliate-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.affiliate-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.affiliate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
  border-color: var(--accent);
}

.affiliate-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: var(--accent);
}

.affiliate-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.affiliate-card a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background .3s;
}

.affiliate-card a:hover {
  background: #ffd95a;
}

.affiliate-subtitle {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--accent);   /* dein Gold */
  font-weight: bold;
  /*border-bottom: 2px solid var(--accent);*/
  display: inline-block;
  padding-bottom: 0.2rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent); /* dein Gold */
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);   /* ein dezentes Grau, das du schon nutzt */
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.fp-widerruf-box {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
}

.fp-widerruf-box p {
    margin: 0.6rem 0;
}

/* Affiliate Section */
.affiliate-section {
  padding: 60px 0;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.affiliate-card {
  background: #111;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(250, 197, 21, 0.05);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.affiliate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(250, 197, 21, 0.15);
}

.aff-img-wrap img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.aff-title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #fff;
}

.aff-desc {
  font-size: .95rem;
  color: #ccc;
  margin-bottom: 20px;
}

.aff-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #facc15;
  color: #000;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease;
}

.aff-btn:hover {
  background: #ffe580;
}


