.event-footer {
  position: relative;
  overflow: hidden;
  padding: 50px 20px 24px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(240, 84, 45, 0.15),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(213, 47, 103, 0.14),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #020d1d 0%,
      #071d37 52%,
      #031326 100%
    );
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.event-footer,
.event-footer * {
  box-sizing: border-box;
}

.event-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1100px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 84, 45, 0.65),
    rgba(213, 47, 103, 0.55),
    transparent
  );
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.footer-glow-left {
  width: 340px;
  height: 340px;
  top: -170px;
  left: -140px;
  background: rgba(240, 84, 45, 0.24);
}

.footer-glow-right {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -220px;
  background: rgba(213, 47, 103, 0.2);
}

.footer-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 42px;
}

.footer-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: min(150px, 60vw);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  transform: translateY(-3px);
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(240, 84, 45, 0.15));
}

.footer-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(5, 24, 46, 0.8);
  color: #ff8a68;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    135deg,
    #f0542d,
    #d52f67
  );
  transition: opacity 0.25s ease;
}

.footer-social a svg {
  position: relative;
  z-index: 2;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-social a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social a[aria-label="Instagram"] circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-social .youtube-play {
  fill: #071d37;
}

.footer-social a:hover {
  transform: translateY(-4px);
  color: #ffffff;
  border-color: rgba(240, 84, 45, 0.55);
  background: rgba(240, 84, 45, 0.12);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(240, 84, 45, 0.18);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a:focus-visible {
  outline: 2px solid #ff7855;
  outline-offset: 4px;
}

.footer-bottom {
  min-height: 64px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: #71859d;
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-bottom-links a {
  color: #71859d;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ff7855;
}

@media (max-width: 768px) {
  .event-footer {
    padding: 50px 20px 22px;
  }

  .footer-top {
    padding-bottom: 36px;
  }

  .footer-logo {
    width: min(210px, 68vw);
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-top: 22px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-footer {
    padding: 42px 16px 20px;
  }

  .event-footer::before {
    width: calc(100% - 32px);
  }

  .footer-logo-link {
    margin-bottom: 20px;
  }

  .footer-logo {
    width: min(190px, 72vw);
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .footer-social a svg {
    width: 19px;
    height: 19px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}