/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Weazel News Farben */
  --yellow: #F5C518;
  --yellow-dark: #d4a800;
  --yellow-light: #ffd84d;
  --dark: #0f0f0f;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --dark-4: #2a2a2a;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: rgba(245, 197, 24, 0.15);
  --border-subtle: rgba(255,255,255,0.07);
  --radius: 8px;
  --radius-lg: 14px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-light); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-dark { background: var(--dark-2); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.06em; color: var(--text);
}
.section-desc { margin-top: 14px; color: var(--text-muted); max-width: 580px; margin-left: auto; margin-right: auto; font-size: 0.95rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  cursor: pointer; border: none; transition: all var(--transition);
  text-transform: uppercase; font-family: var(--font-body);
}
.btn-primary { background: var(--yellow); color: var(--dark); }
.btn-primary:hover { background: var(--yellow-light); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-outline:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(15,15,15,0.97); backdrop-filter: blur(14px);
  padding: 12px 40px; border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.4rem;
  letter-spacing: 0.1em; color: var(--text);
}
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; align-items: center; gap: 8px; }
.nav-logo-text span { color: var(--yellow); }
.wz-icon { width: 32px; height: 32px; }

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); }
.nav-links a:hover { color: var(--yellow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}

/* Radial glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(245,197,24,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridPan 30s linear infinite;
  pointer-events: none;
}
@keyframes gridPan { 0% { transform: translateY(0); } 100% { transform: translateY(56px); } }

.hero-overlay { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 24px 40px; display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.hero-logo { margin-bottom: 8px; }
.hero-logo-img { height: 120px; width: auto; object-fit: contain; filter: drop-shadow(0 0 40px rgba(245,197,24,0.4)); }
.hero-logo-svg { width: 120px; height: 120px; filter: drop-shadow(0 0 40px rgba(245,197,24,0.4)); }

.hero-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  letter-spacing: 0.04em; line-height: 0.88;
  color: var(--text);
}
.hero-content h1 span { color: var(--yellow); }

.hero-sub { font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--text-muted); font-weight: 300; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Breaking news ticker */
.hero-ticker {
  position: relative; z-index: 2; width: 100%;
  background: var(--yellow); color: var(--dark);
  display: flex; align-items: center;
  overflow: hidden; height: 40px;
}
.ticker-label {
  background: var(--dark); color: var(--yellow);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0 20px; height: 100%; display: flex; align-items: center;
  flex-shrink: 0; white-space: nowrap;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span { font-size: 0.8rem; font-weight: 600; padding: 0 16px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ÜBER UNS ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.about-text strong { color: var(--text); }

.about-discord h3 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; color: var(--text); }
.discord-sections { display: flex; flex-direction: column; gap: 12px; }
.ds-section {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 20px 22px;
  transition: border-color var(--transition);
}
.ds-section:hover { border-color: var(--border); }
.ds-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ds-emoji { font-size: 1.2rem; }
.ds-header strong { font-size: 0.95rem; color: var(--text); }
.ds-section > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.ds-channels { display: flex; flex-wrap: wrap; gap: 6px; }
.ds-channels span {
  font-size: 0.73rem; padding: 3px 10px; border-radius: 4px;
  background: var(--dark-4); color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }

.pricing-card {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: var(--border); transform: translateY(-4px); }
.pricing-card-soon { opacity: 0.7; }

.pricing-header { display: flex; flex-direction: column; gap: 6px; }
.pricing-icon { font-size: 2rem; }
.pricing-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.pricing-sub { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.soon-badge {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: rgba(245,197,24,0.1); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.08em; width: fit-content;
}

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; }
.pricing-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
  gap: 12px;
}
.pricing-list li:last-child { border-bottom: none; }
.pl-highlight { background: rgba(245,197,24,0.05); margin: 0 -12px; padding: 14px 12px !important; border-radius: var(--radius); border-bottom: none !important; }

.pl-info { display: flex; align-items: center; gap: 8px; }
.pl-name { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.pl-badge {
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: var(--yellow); color: var(--dark); text-transform: uppercase; letter-spacing: 0.06em;
}
.pl-price { font-size: 0.9rem; font-weight: 700; color: var(--yellow); white-space: nowrap; }

/* Extra pricing row */
.pricing-extra {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; margin-bottom: 20px;
}
.pe-left { display: flex; align-items: flex-start; gap: 20px; }
.pe-icon { font-size: 2rem; flex-shrink: 0; }
.pe-left h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.pe-left p { font-size: 0.85rem; color: var(--text-muted); }
.pe-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.pe-price { font-size: 1rem; font-weight: 700; color: var(--yellow); white-space: nowrap; }

.pricing-note {
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
  background: rgba(245,197,24,0.06); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px;
}
.pricing-note strong { color: var(--yellow); }

/* ===== LEISTUNGEN ===== */
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.l-card {
  background: var(--dark-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.l-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(245,197,24,0.06); }
.l-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.l-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.l-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ===== AKKREDITIERUNG ===== */
.akk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.akk-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted);
  padding: 12px 16px; background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2); border-radius: var(--radius);
  margin-bottom: 24px;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
.status-dot.active { background: #4ade80; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); } }
.akk-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }

.akk-list { list-style: none; display: flex; flex-direction: column; }
.akk-list li { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-subtle); }
.akk-list li:last-child { border-bottom: none; }
.akk-icon { font-size: 1.3rem; width: 32px; text-align: center; flex-shrink: 0; }
.akk-list strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 3px; }
.akk-list p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; }
.akk-note { margin-top: 24px; background: rgba(245,197,24,0.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }
.akk-note strong { color: var(--yellow); }

.akk-form { background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.akk-form h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.73rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark-4); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  padding: 11px 14px; outline: none; resize: vertical;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.08); }
.form-group select { cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-note { font-size: 0.73rem; color: var(--text-muted); text-align: center; }
.form-note strong { color: var(--yellow); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-options { display: flex; flex-direction: column; gap: 0; }
.contact-opt { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border-subtle); }
.contact-opt:last-child { border-bottom: none; }
.co-icon { font-size: 1.4rem; width: 36px; text-align: center; flex-shrink: 0; padding-top: 2px; }
.contact-opt strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.contact-opt p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.contact-opt p strong { color: var(--yellow); }
.co-link { display: inline-block; margin-top: 8px; font-size: 0.82rem; font-weight: 600; color: var(--yellow); }

.contact-form { background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-form h3 { font-size: 1rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); border-top: 1px solid var(--border-subtle); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.08em; color: var(--text); display: block; margin-bottom: 12px; }
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }
.footer-brand a { display: inline-block; margin-top: 10px; font-size: 0.82rem; color: var(--yellow); }
.footer-links h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding: 22px 0; text-align: center; }
.footer-bottom p { font-size: 0.77rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .akk-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-extra { flex-direction: column; }
  .pe-right { align-items: flex-start; }
}
/* ===== LIGHT PUBLIC SECTIONS ===== */
.section { background: #f8f7f5; }
.section-dark { background: #edecea; }

/* Hero hell */
.hero { background: #fff; }
.hero::before { background: radial-gradient(ellipse at 50% 40%, rgba(245,197,24,0.10) 0%, transparent 60%); }
.hero::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}
.hero-content h1 { color: #111; }
.hero-content h1 span { color: var(--yellow-dark); }
.hero-sub { color: #555; }
.hero-logo-img { filter: none; }
.hero-logo-svg { filter: none; }
.ticker-label { background: #111; color: var(--yellow); }

/* Navbar hell */
#navbar { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.07); }
#navbar.scrolled { background: rgba(255,255,255,0.97); }
.nav-links a { color: #444; }
.nav-links a:hover { color: var(--yellow-dark); }

/* Boxen / Karten hell */
.ds-section { background: #fff; border-color: rgba(0,0,0,0.1); }
.ds-header strong { color: #111; }
.ds-section > p { color: #555; }
.ds-channels span { background: #f0f0ee; border-color: rgba(0,0,0,0.1); color: #444; }

.pricing-card { background: #fff; border-color: rgba(0,0,0,0.1); }
.pricing-card:hover { border-color: var(--yellow-dark); }
.pricing-header h3 { color: #111; }
.pl-name { color: #111; }
.pricing-list li { border-color: rgba(0,0,0,0.08); }

.pricing-extra { background: #fff; border-color: rgba(0,0,0,0.1); }
.pe-left h3 { color: #111; }
.pe-left p { color: #555; }

.l-card { background: #fff; border-color: rgba(0,0,0,0.1); }
.l-card:hover { border-color: var(--yellow-dark); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.l-card h3 { color: #111; }
.l-card p { color: #555; }

.contact-opt { border-color: rgba(0,0,0,0.08); }

/* Footer hell */
.footer { background: #f0eeeb; border-color: rgba(0,0,0,0.08); }
.footer-logo { color: #111; }
.footer-brand p { color: #555; }
.footer-links h4 { color: #111; }
.footer-links a { color: #666; }
.footer-links a:hover { color: var(--yellow-dark); }
.footer-bottom { border-color: rgba(0,0,0,0.08); }
.footer-bottom p { color: #888; }

.section .section-header h2,
.section-dark .section-header h2 { color: #111; }
.section .section-desc,
.section-dark .section-desc { color: #555; }

.about-text p { color: #444; }
.about-text strong { color: #111; }
.about-discord h3 { color: #111; }

.akk-info h3 { color: #111; }
.akk-list strong { color: #111; }
.akk-list p { color: #555; }
.akk-note { background: rgba(245,197,24,0.12); color: #444; }
.akk-note strong { color: var(--yellow-dark); }

.contact-opt strong { color: #111; }
.contact-opt p { color: #555; }
.contact-opt p strong { color: var(--yellow-dark); }

.akk-form, .contact-form { background: #fff; border-color: rgba(0,0,0,0.1); }
.akk-form h3, .contact-form h3 { color: #111; }

.section .form-group label,
.section-dark .form-group label { color: #555; }
.section .form-group input,
.section .form-group select,
.section .form-group textarea,
.section-dark .form-group input,
.section-dark .form-group select,
.section-dark .form-group textarea {
  background: #f5f5f5; border-color: #ddd; color: #111;
}
.section .form-group input::placeholder,
.section .form-group textarea::placeholder,
.section-dark .form-group input::placeholder,
.section-dark .form-group textarea::placeholder { color: #999; opacity: 1; }

.pricing-note { color: #444; }

/* ===== FOOTER LOGO ===== */
.footer-brand-img { height: 52px; width: auto; object-fit: contain; display: block; margin-bottom: 10px; }

/* ===== NEWS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.news-card-img {
  width: 100%; height: 140px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 2px);
  margin-bottom: 2px;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.news-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s;
}
.news-card:hover { border-color: var(--yellow); }
.news-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-muted);
}
.news-label {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}
.news-author { font-size: .8rem; color: #666; }
.news-card:hover { border-color: var(--yellow-dark); }
.news-btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  #navbar { padding: 14px 20px; }
  #navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); align-items: center; justify-content: center; gap: 28px; z-index: 99; }
  .nav-links.open a { font-size: 1.4rem; color: var(--text); }
  .pricing-grid { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.07);
  color: #333; cursor: pointer;
  flex-shrink: 0; transition: all 0.2s;
  margin-left: 6px;
}
.theme-btn:hover { border-color: var(--yellow-dark); color: var(--yellow-dark); background: rgba(0,0,0,0.12); }
.theme-icon { display: none; pointer-events: none; }
/* Light mode: show moon */
.theme-moon { display: block; }
/* Dark mode: show sun */
html.dark-mode .theme-sun  { display: block; }
html.dark-mode .theme-moon { display: none; }
html.dark-mode .theme-btn  { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); color: var(--text); }
html.dark-mode .theme-btn:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,255,255,0.12); }

/* ===== DARK MODE OVERRIDES ===== */
html.dark-mode .hero { background: var(--dark); }
html.dark-mode .hero::before { background: radial-gradient(ellipse at 50% 40%, rgba(245,197,24,0.08) 0%, transparent 60%); }
html.dark-mode .hero::after {
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
}
html.dark-mode .hero-content h1 { color: var(--text); }
html.dark-mode .hero-content h1 span { color: var(--yellow); }
html.dark-mode .hero-sub { color: var(--text-muted); }
html.dark-mode .hero-logo-img { filter: drop-shadow(0 0 40px rgba(245,197,24,0.4)); }
html.dark-mode .hero-logo-svg { filter: drop-shadow(0 0 40px rgba(245,197,24,0.4)); }
html.dark-mode .ticker-label { background: var(--dark); color: var(--yellow); }

html.dark-mode #navbar { background: transparent; border-color: transparent; backdrop-filter: none; }
html.dark-mode #navbar.scrolled { background: rgba(15,15,15,0.97); backdrop-filter: blur(14px); border-color: transparent; }
html.dark-mode .nav-links a { color: var(--text-muted); }
html.dark-mode .nav-links a:hover { color: var(--yellow); }

html.dark-mode .section { background: var(--dark-2); }
html.dark-mode .section-dark { background: var(--dark-2); }
html.dark-mode .section .section-header h2,
html.dark-mode .section-dark .section-header h2 { color: var(--text); }
html.dark-mode .section .section-desc,
html.dark-mode .section-dark .section-desc { color: var(--text-muted); }

html.dark-mode .about-text p { color: var(--text-muted); }
html.dark-mode .about-text strong { color: var(--text); }
html.dark-mode .about-discord h3 { color: var(--text); }
html.dark-mode .ds-section { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .ds-header strong { color: var(--text); }
html.dark-mode .ds-section > p { color: var(--text-muted); }
html.dark-mode .ds-channels span { background: var(--dark-4); border-color: var(--border-subtle); color: var(--text-muted); }

html.dark-mode .pricing-card { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .pricing-card:hover { border-color: var(--yellow); }
html.dark-mode .pricing-header h3 { color: var(--text); }
html.dark-mode .pl-name { color: var(--text); }
html.dark-mode .pricing-list li { border-color: var(--border-subtle); }
html.dark-mode .pricing-extra { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .pe-left h3 { color: var(--text); }
html.dark-mode .pe-left p { color: var(--text-muted); }

html.dark-mode .l-card { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .l-card:hover { border-color: var(--yellow); box-shadow: none; }
html.dark-mode .l-card h3 { color: var(--text); }
html.dark-mode .l-card p { color: var(--text-muted); }

html.dark-mode .contact-opt { border-color: var(--border-subtle); }
html.dark-mode .contact-opt strong { color: var(--text); }
html.dark-mode .contact-opt p { color: var(--text-muted); }
html.dark-mode .contact-opt p strong { color: var(--yellow); }

html.dark-mode .akk-info h3 { color: var(--text); }
html.dark-mode .akk-list strong { color: var(--text); }
html.dark-mode .akk-list p { color: var(--text-muted); }
html.dark-mode .akk-note { background: rgba(245,197,24,0.08); color: var(--text-muted); }
html.dark-mode .akk-note strong { color: var(--yellow); }

html.dark-mode .akk-form,
html.dark-mode .contact-form { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .akk-form h3,
html.dark-mode .contact-form h3 { color: var(--text); }
html.dark-mode .section .form-group label,
html.dark-mode .section-dark .form-group label { color: var(--text-muted); }
html.dark-mode .section .form-group input,
html.dark-mode .section .form-group select,
html.dark-mode .section .form-group textarea,
html.dark-mode .section-dark .form-group input,
html.dark-mode .section-dark .form-group select,
html.dark-mode .section-dark .form-group textarea { background: var(--dark-4); border-color: var(--border); color: var(--text); }
html.dark-mode .section .form-group input::placeholder,
html.dark-mode .section .form-group textarea::placeholder,
html.dark-mode .section-dark .form-group input::placeholder,
html.dark-mode .section-dark .form-group textarea::placeholder { color: var(--text-muted); opacity: 1; }
html.dark-mode .pricing-note { color: var(--text-muted); }

html.dark-mode .footer { background: var(--dark-2); border-color: var(--border-subtle); }
html.dark-mode .footer-logo { color: var(--text); }
html.dark-mode .footer-brand p { color: var(--text-muted); }
html.dark-mode .footer-links h4 { color: var(--text); }
html.dark-mode .footer-links a { color: var(--text-muted); }
html.dark-mode .footer-links a:hover { color: var(--yellow); }
html.dark-mode .footer-bottom { border-color: var(--border-subtle); }
html.dark-mode .footer-bottom p { color: var(--text-muted); }

html.dark-mode .news-card { background: var(--dark-3); border-color: var(--border-subtle); }
html.dark-mode .news-card:hover { border-color: var(--yellow); }
html.dark-mode .news-card h3 { color: var(--text); }
html.dark-mode .news-author { color: var(--text-muted); }
