@import url("https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h2 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-grey);
  line-height: 1.6;
}

svg {
  font-family: "Rubik Mono One", sans-serif;
  width: 117%;
  height: 100%;
}

svg text {
  font-family: "Rubik Mono One", sans-serif;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  stroke: #512be1;
  font-size: 100px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-grey);
  line-height: 1.6;
}

.entertainment-badge {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.entertainment-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

.entertainment-creator {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--light-grey);
  font-size: 0.9rem;
}

.entertainment-creator span {
  color: var(--secondary);
  font-weight: 500;
  margin-left: 0.3rem;
}

.entertainment-description {
  color: var(--light-grey);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.website-btn,
.discord-btn {
  text-decoration: none;
  font-weight: 600;
}

.discord-display {
  color: #5865f2;
  font-weight: 500;
}

.feed-date {
  font-size: 0.85rem;
  color: var(--light-grey);
  margin-bottom: 0.5rem;
}

.feed-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feed-excerpt {
  color: var(--light-grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.partner-logo {
  max-width: 80%;
  max-height: 80%;
  position: relative;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(95%) sepia(12%) saturate(1122%) hue-rotate(76deg) brightness(92%) contrast(85%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.discord-server-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.discord-server-status {
  font-size: 0.8rem;
  opacity: 0.8;
}

.member-name {
  font-weight: 500;
}

.member-status {
  font-size: 0.8rem;
  color: var(--light-grey);
}

.discord-join-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-grey);
  font-size: 0.9rem;
}