/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(
    circle at top,
    #eef2ff,
    #f8fafc 60%
  );
  color: #1f2933;
}

/* BACKGROUND KV LOGO */
.bg-logo {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30rem;
  font-weight: 900;
  letter-spacing: -0.1em;

  color: #2563eb;
  opacity: 0.06;

  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Soft circular ring */
.bg-logo::after {
  content: "";
  position: absolute;

  width: 105vmin;
  height: 105vmin;

  border-radius: 50%;
  border: 14px solid #2563eb;

  opacity: 0.22;
  filter: blur(0.4px);
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.12);
}

/* LAYOUT */
.container {
  min-height: 100vh;
  max-width: 420px;
  margin: auto;
  padding: 48px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  position: relative;
  z-index: 1;
}

/* HEADER */
h1 {
  font-size: 2.8rem;              /* visibly bigger */
  font-weight: 800;
  letter-spacing: 0.14em;         /* unmistakable */
  text-transform: uppercase;
  color: #0f172a;

  position: relative;
  display: inline-block;
}


h1::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #3b82f6;
  opacity: 0.8;
}
.subtitle {
  margin-top: 10px;
  color: #6b7280;
  font-size: 0.95rem;
}

/* YOUTUBE CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.card {
  width: 130px;
  padding: 18px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;

  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  position: relative;
  overflow: hidden;

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ff0000, #ff4d4d);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.youtube {
  font-size: 1.9rem;
  color: #ff0000;
}

.card span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* MEMES CTA */
.cta {
  margin: 32px 0 40px;
  display: flex;
  justify-content: center;
}

.memes-btn {
  padding: 14px 36px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.6px;

  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.memes-btn:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.35);
}


/* SOCIAL ICONS */
.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
}

.social {
  font-size: 1.45rem;
}

.social i {
  transition: transform 0.15s ease;
}

.social:hover i {
  transform: rotate(-6deg) scale(1.15);
}

/* BRAND COLORS */
.ig { color: #e1306c; }
.tw { color: #1da1f2; }
.rd { color: #ff4500; }
.gh { color: #181717; }

/* FOOTER */
footer {
  margin-top: 44px;
  font-size: 0.75rem;
  color: #9ca3af;
}
