.neo-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  background: #081A2D;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neo-cookie-text {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.neo-cookie-link {
  color: #CCF407;
  text-decoration: underline;
}

.neo-cookie-link:hover,
.neo-cookie-link:focus {
  color: #ffffff;
  outline: none;
}

.neo-cookie-actions {
  display: flex;
  gap: 12px;
}

.neo-cookie-btn {
  flex: 1 1 0;
  min-height: 44px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.neo-cookie-btn-accept {
  background: #CCF407;
  color: #081A2D;
  border-color: #CCF407;
}

.neo-cookie-btn-accept:hover,
.neo-cookie-btn-accept:focus {
  background: #ffffff;
  border-color: #ffffff;
  outline: none;
}

.neo-cookie-btn-deny {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.neo-cookie-btn-deny:hover,
.neo-cookie-btn-deny:focus {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

@media (min-width: 700px) {
  .neo-cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    gap: 24px;
  }
  .neo-cookie-text {
    flex: 1 1 auto;
  }
  .neo-cookie-actions {
    flex: 0 0 auto;
  }
  .neo-cookie-btn {
    flex: 0 0 auto;
    min-width: 140px;
  }
}
