
body{
            font-family: system-ui, Arial, sans-serif;
            background: var(--page-bg);
            margin: 18px;
        }



/* ==== HEADER (rounded gradient card) ==== */
header {
  margin: 12px auto;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(90deg, #a2d5f2, #fcbad3);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Inner white section */
.header-inner {
  background-color: #fff;
  border-radius: 18px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left side (logo + menu together) */
.left-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  width: 250px;
  height: auto;
  display: block;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Menu colors based on logo */
nav a.news {
  background-color: #b26bff; /* "The" color */
  color: #fff;
}
nav a.campaigns {
  background-color: #1f7acb; /* "Influencer" color */
  color: #fff;
}
nav a.lists {
  background-color: #c6ff00; /* "Sync" color */
  color: #222;
}

nav a:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* CTA Button (right side) */
.ctc-btn button {
  background-color: #8a2be2;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  padding: 12px 30px;
  border-radius: 34px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.18s ease;
}

.ctc-btn button:hover {
  background-color: #6c1fbf;
  transform: translateY(-3px) scale(1.03);
}

/* ==== FOOTER ==== */
footer {
  margin: 30px auto 18px;
  border-radius: 22px;
  background: linear-gradient(90deg, #fcbad3, #a2d5f2);
  padding: 16px;
  text-align: center;
  color: #000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

footer p {
  margin: 5px 0;
}


/* MOBILE: stack everything and make stats auto-width & centered */
        @media (max-width: 600px) {
            
          .header-inner {
    flex-direction: column;
    text-align: center;
    padding: 14px 8px 20px;
  }

  .left-section {
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    width: 200px;
  }

  nav {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin: 6px 0;
  }

  .ctc-btn {
    width: 100%;
    margin-top: 10px;
  }

  .ctc-btn button {
    width: 90%;
    font-size: 1rem;
    padding: 12px 20px;
  }
       
            
        }