:root {
  --navy: #2d3142;
  --teal: #14b8a6;
  --teal-dark: #0f9488;
  --bg: #f7f8fa;
  --text: #2d3142;
  --muted: #6b7280;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.banner {
  width: 100%;
  height: 260px;
  background-image: url("/banner.jpg");
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,34,0.15) 0%, rgba(20,24,34,0.75) 100%);
}
.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 0 20px;
}
.logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  margin-bottom: 14px;
}
.banner-content h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.banner-content p {
  margin: 6px 0 0;
  font-size: 15px;
  opacity: 0.9;
}
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: -30px auto 40px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-youtube { background: #FF0000; }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-tiktok { background: #010101; }
h2 {
  color: var(--navy);
  font-size: 22px;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 8px;
  margin-top: 40px;
}
h1.page-title {
  color: var(--navy);
  font-size: 26px;
}
a { color: var(--teal-dark); }
.meta {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 30px;
}
footer {
  text-align: center;
  padding: 30px 20px 50px;
  color: var(--muted);
  font-size: 13.5px;
}
footer a { color: var(--muted); margin: 0 8px; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; }
