:root {
  --yellow: #fdcf0b;
  --green: #34b44a;
  --green-l1: #8cde99;
  --green-l2: #71ff8a;
}

/* Gradient border */
.gradient-border {
  background: #fff;
  border-radius: 10px;
  position: relative;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.gradient-border::after,
.gradient-border::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(
    from var(--angle),
    #ff4545,
    #00ff99,
    #006aff,
    #ff0095,
    #ff4545
  );
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 6px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
.gradient-border::before {
  filter: blur(1.5rem);
  opacity: 0.8;
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.esi-footer {
  background-color: var(--yellow); /* Тот самый желтый из хедера */
  color: #333;
  padding: 40px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  border-top: 4px solid var(--green); /* Зеленая полоса сверху для акцента */
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Made in BANJO */
.made-in-logo {
  background-color: black;
  border-radius: 10px;
}

.made-in-logo {
  display: inline-block;
  --logo-bg: #000;
  color: #fff;
}

.made-in-logo:hover {
  --logo-bg: #fff;
  color: #000;
  background-color: white;
}

.footer-title {
  color: #1e8334; /* Темно-зеленый из логотипа STREAM */
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #1e8334;
  text-decoration: underline;
}

.footer-logo {
  max-width: 260px;
}

.disclaimer {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

.social-icons span {
  margin-right: 15px;
  font-weight: bold;
  cursor: pointer;
}

.footer-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
}

/* Adaptiv */
@media screen and (max-width: 1200px) {
  .footer-container {
    max-width: 100%;
  }
}
