﻿@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@600;700;800;900&family=Slackey&family=M+PLUS+Rounded+1c:wght@400;700&display=swap");

/* Font helpers */
.font-rubik {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.font-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.slackey-regular {
  font-family: "Slackey", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* sponsor Blocks */
.sponsor-block1,
.sponsor-block2 {
  width: 100%;
  min-height: 100px;
  text-align: center;
  margin: 40px 0;
}

/* Bottom Links */
.bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 60px auto 80px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: #239ab1;
  color: #fafafa;
  border: 2px solid #005596;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 220px;
  letter-spacing: 0.05em;
}

.link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #005596;
  color: #005596;
  background: #fff;
}

.link-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* Footer (shared) */
.site-footer {
  background: #fafafa;
  color: #121212;
  padding: 20px 0 16px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  align-self: stretch;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: center;
  padding: 12px 0;
}

.footer-banner {
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-hero-title {
  position: relative;
  display: inline-block;
  font-size: 56px;
  font-weight: 900;
  color: #fafafa;
  -webkit-text-stroke: 2px #121212;
  letter-spacing: 0.08em;
  padding: 0;
  line-height: 1;
  isolation: isolate;
  z-index: 1;
}

.footer-hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  transform: translate(3px, 3px);
  background: repeating-linear-gradient(45deg, #121212 0 4px, #fafafa 4px 8px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px #121212;
  color: transparent;
  z-index: -1;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer-link {
  color: #121212;
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  margin-top: 0.5rem;
}