/* === Уникальный тёмный футер WinWave === */
.custom-footer {
  background: linear-gradient(120deg, #10151e 70%, #0a2327 100%);
  color: #f3f6fa;
  margin-top: 56px;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 -4px 32px rgba(15, 118, 110, 0.10);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
  background-color: rgb(17 24 39 );
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 32px 40px;
  position: relative;
}
.footer-col {
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #181e2a;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.04);
  padding: 18px 18px 12px 18px;
  transition: box-shadow 0.2s;
}
.footer-col:hover {
  box-shadow: 0 6px 24px rgba(255,215,0,0.10);
}
.footer-col h4 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 16px 0 12px 0;
  letter-spacing: 0.5px;
  color: #ffd700;
  text-shadow: 0 2px 8px #0f766e22;
  border-left: 4px solid #ffd700;
  padding-left: 10px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: #e6faff;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
  font-weight: 500;
  border-bottom: 1.5px dotted #ffd70033;
  padding-bottom: 1px;
}
.footer-col a:hover {
  color: #ffd700;
  text-shadow: 0 2px 8px #ffd70055;
  border-bottom: 2px solid #ffd700;
}
.footer-col p {
  color: #b0e6e6;
  margin-bottom: 12px;
  font-size: 1.01rem;
  line-height: 1.7;
}
.footer-age-warning {
  color: #fc6d6d !important;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.footer-partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
.footer-partners li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-partners img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #191010;
  border-radius: 10px;
  padding: 5px 10px;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #ffd70033;
}
.footer-partners img:hover {
  transform: scale(1.10) rotate(-2deg);
  box-shadow: 0 6px 24px #ffd70055;
  border: 2px solid #ffd700;
}
.footer-bottom {
  border-top: 2px solid #ffd70044;
  padding: 22px 32px 16px 32px;
  background: #10151e;
  position: relative;
  z-index: 1;
}
.footer-bottom-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #b0e6e6;
  font-size: 1.07rem;
  gap: 16px;
}
.footer-bottom-content span {
  display: block;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 10px 12px 10px;
  }
  .footer-col {
    min-width: 0;
    align-items: flex-start;
    padding: 12px 8px 8px 8px;
  }
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 12px 2px 6px 2px;
    gap: 12px;
  }
  .footer-bottom {
    padding: 8px 2px 6px 2px;
    font-size: 0.97rem;
  }
  .footer-col h4 {
    font-size: 1.01rem;
    padding-left: 6px;
  }
  .footer-partners img {
    height: 32px;
    padding: 2px 4px;
  }
} 