* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;

  /* FADE IN */
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* =====================
   BANNER + LIGHT SWEEP
===================== */
.banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 25px;
}

.banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* light sweep */
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  animation: sweep 6s ease-in-out infinite;
}

@keyframes sweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* =====================
   TITLE / SUBTITLE
===================== */
h1 {
  font-size: 28px;
  font-weight: bold;
  color: #ffa200;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,162,0,0.4);
}

.subtitle {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

/* =====================
   BUTTONS
===================== */
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  min-width: 200px;

  transition: 
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* HOVER EFFECT (ALL) */
.btn:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* DISCORD */
.discord {
  background: #5865f2;
}
.discord:hover {
  box-shadow: 0 0 18px rgba(88,101,242,0.9);
}

/* FACEBOOK */
.facebook {
  background: #1877f2;
}
.facebook:hover {
  box-shadow: 0 0 18px rgba(24,119,242,0.9);
}

/* YOUTUBE */
.yt1, .yt2 {
  background: #ff0000;
}
.yt1:hover, .yt2:hover {
  box-shadow: 0 0 20px rgba(255,0,0,0.95);
}

/* =====================
   FOOTER
===================== */
.footer {
  margin-top: 26px;
  font-size: 11px;
  color: #777;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 600px) {
  h1 { font-size: 22px; }
  .subtitle { font-size: 13px; }
  .btn { width: 100%; }
}
