:root {
  --dark-bg: #0b0f17;
  --card-bg: #161b26;
  --neon-accent: #00f2fe;
  --neon-green: #39ff14;
  --vs-purple: #5c2d91;
  --amazon-orange: #ff9900;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  color: #1a1d20;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #fafbfc;
}

body {
  color: #1a1d20;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #fafbfc;
}

.cilogo {
	height: 50px;
}

/* NAVIGATION */
.navbar {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem 0;
  z-index: 1050;
}
.navbar.scrolled {
  background-color: rgba(11, 15, 23, 0.9) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
}

/* HERO SECTION WITH CANVAS BACKGROUND */
.hero-fullscreen {
  height: 100vh;
  height: 100dvh;
  background-color: var(--dark-bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: all;
}

.hero-fullscreen::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content { 
  position: relative; 
  z-index: 10; 
  pointer-events: none;
}

.hero-content a, .hero-content span {
  pointer-events: all;
}

.text-gradient-neon {
  background: linear-gradient(135deg, #fff 30%, var(--neon-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BENTO GRID BASE */
.bento-card {
  background: white;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 242, 254, 0.06);
}
.bento-card-dark {
  background: var(--card-bg);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}
.bento-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
}

.bento-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 1.25rem;
}
.bento-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.bento-card:hover .bento-img-wrapper img, 
.bento-card-dark:hover .bento-img-wrapper img {
  transform: scale(1.04);
}

.vs-badge { background-color: var(--vs-purple); color: white; }
.amazon-badge { background-color: var(--amazon-orange); color: black; font-weight: bold; }
.google-badge { background-color: #4285f4; color: white; }

.btn-neon {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #000;
  font-weight: 700;
  border: none;
  transition: transform 0.3s;
}
.btn-amazon {
  background: linear-gradient(135deg, #f90, #ffb336);
  color: #000;
  font-weight: 700;
  border: none;
  transition: transform 0.3s;
}

.btn-neon:hover {
  transform: scale(1.03);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-arrow {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.75rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
  pointer-events: all;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* HIGH-END CREATIVE FAT FOOTER */
.footer-creative {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-creative h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}
.footer-creative a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-creative .link-list a:hover {
  color: var(--neon-accent);
  padding-left: 4px;
}
.footer-creative .footer-link-list .list-inline-item:not(:last-child)::after {
  content: "·"; margin-left: 0.6rem; margin-right: 0.6rem; color: rgba(255, 255, 255, 0.2);
}
.footer-creative .form-control-newsletter {
  background-color: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff; border-radius: 50px; padding: 0.65rem 1.2rem; font-size: 0.85rem;
}
.footer-creative .form-control-newsletter:focus { 
  background-color: rgba(255, 255, 255, 0.08); border-color: var(--neon-accent); box-shadow: none; color: #fff; 
}
.footer-creative .btn-newsletter {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; border-radius: 50px; 
  padding: 0.65rem 1.2rem; font-size: 0.85rem; transition: all 0.3s; font-weight: 600;
}
.footer-creative .btn-newsletter:hover { background-color: #fff; color: #000; }

.badge-partner {
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.01);
  padding: 0.5rem 0.85rem; border-radius: 8px; display: inline-block; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.7);
}
.contact-info-item i {
  color: var(--neon-accent);
  font-size: 1.1rem;
}

/* ==========================================
   HELLER UNTERSEITEN-STIL & KONTRASTE
   ========================================== */

/* Helle Bento-Karten */
.bento-card h3, 
.bento-card h4 {
  color: #0b0f17 !important;
  font-weight: 700;
}
.bento-card p, 
.bento-card ul, 
.bento-card li {
  color: #4a5568 !important;
}

/* Dunkle Bento-Karten innerhalb des hellen Layouts */
.bento-card-dark h3, 
.bento-card-dark h4,
.bento-card-dark .display-6 {
  color: #ffffff !important;
}
.bento-card-dark p {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bento-card-dark li {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Globale Textfarben für helle Inhaltsbereiche */
.creative-performance-page h2 {
  color: #0b0f17 !important;
  font-weight: 800;
}
.creative-performance-page p.text-muted {
  color: #4a5568 !important;
}

.creative-boxes {
	background: linear-gradient(135deg, #00f2fe, #4facfe);
}

@media (max-width: 765px) {
.navbar-collapse {
  background: #414141;
  padding: 15px;
  border-radius: var(--bs-border-radius-lg) !important;
}

.mobile-margin-home {
	margin-top: 70px;
}
}

/* Placeholder-Farbe für das Newsletter-Feld anpassen */
#newsletter-email::placeholder {
    color: #cccccc !important;
    opacity: 1 !important; /* Sehr wichtig für Firefox, da dieser die Deckkraft von Placeholdern standardmäßig reduziert */
}

/* Fallbacks für ältere Browser */
#newsletter-email::-webkit-input-placeholder { color: #cccccc !important; }
#newsletter-email::-moz-placeholder { color: #cccccc !important; opacity: 1 !important; }
#newsletter-email:-ms-input-placeholder { color: #cccccc !important; }

/* Textfarbe beim Tippen und Feld-Optik für den Dark-Mode */
#newsletter-email {
    color: #ffffff !important; /* Weißer Text beim Tippen */
    background-color: rgba(255, 255, 255, 0.05); /* Sehr dunkler, leicht durchsichtiger Hintergrund */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Zarter heller Rahmen */
}

/* Verhalten beim Anklicken des Feldes (Fokus) */
#newsletter-email:focus {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-accent, #00f2fe); /* Greift deine Neon-Akzentfarbe auf */
    box-shadow: 0 0 0 0.25rem rgba(0, 242, 254, 0.25); /* Neon-Glow um das Feld */
    outline: none;
}

