@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:wght@400;600&display=swap");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 576px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.header {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 1rem 0;
  font-family: "Poppins", sans-serif;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease-in-out;
}
.header__logo {
  font-family: "Luckiest Guy", cursive;
  font-size: 2rem;
  color: #ffd700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.header__logo:hover {
  color: #ffdf33;
}
.header__nav {
  display: flex;
}
@media (max-width: 768px) {
  .header__nav {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }
}
.header__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.header__menu-item {
  position: relative;
}
.header__menu-item::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s;
  width: 0%;
  margin-top: 4px;
}
.header__menu-item:hover::after {
  width: 100%;
}
.header__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.header__menu-link:hover {
  color: #ffd700;
}
.header__auth {
  display: flex;
  gap: 1rem;
}
.header__auth-link {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.header__auth-link:hover {
  color: #ff4d4d;
}
.header__auth-link i {
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 4rem 0;
}
.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.hero__left {
  flex: 1;
}
.hero__right {
  flex: 1;
  text-align: center;
}
.hero__right .hero__img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.hero__label {
  background-color: #ffd700;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__form {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .hero__form {
    padding: 1.25rem;
  }
}
.hero__form-tab {
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero__form-tab:hover {
  background-color: #152860;
}
.hero__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero__form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.hero__form-icon-wrapper {
  background-color: #ffd700;
  color: #1e293b;
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.hero__form-select {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
}
.hero__form-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero__form-btn:hover {
  background-color: #ff1a1a;
}
@media (max-width: 576px) {
  .hero__form-btn {
    align-self: center;
  }
}
.hero__text {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero__text {
    margin: 0 auto;
  }
}

.winners {
  background-color: #274cb4;
  padding: 4rem 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.winners__head {
  margin-bottom: 3rem;
}
.winners__head .winners__label {
  display: block;
  font-size: 1rem;
  color: #ffe766;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.winners__head .winners__title {
  font-size: 2.5rem;
  color: #ffd700;
  font-weight: 700;
  margin: 0;
}
.winners__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}
.winners__list-item {
  background-color: #ffffff;
  color: #1e3a8a;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.winners__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.winners__item-avatar-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin-right: 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffd700;
}
.winners__item-avatar-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.winners__item-info {
  text-align: left;
}
.winners__item-info .winners__item-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #1e3a8a;
}
.winners__item-info .winners__item-prize {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff4d4d;
  margin: 0;
}

.services {
  background-color: #ffffff;
  padding: 4rem 0;
  font-family: "Poppins", sans-serif;
}
.services__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .services__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.services__left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.services__left .services__img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.services__right {
  flex: 1.2;
  max-width: 700px;
}
.services__head {
  text-align: left;
}
.services__head .services__label {
  display: inline-block;
  font-size: 0.95rem;
  color: #ff4d4d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.services__head .services__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .services__head .services__title {
    font-size: 1.6rem;
  }
}
.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__list-item {
  margin-bottom: 2rem;
}
.services__list-item .services__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.services__list-item .services__item-text {
  font-size: 1rem;
  color: #152860;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.services__list-item .services__item-divider {
  height: 2px;
  background-color: #e1e7f9;
  width: 100%;
  margin-top: 1rem;
}

.results {
  background-color: #ffffff;
  padding: 4rem 0;
  color: #1e3a8a;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.results__head {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.results__head .results__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #ff4d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.results__head .results__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.4;
  margin: 0;
}
.results__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}
.results__list-item {
  background-color: #a3b5eb;
  border-left: 6px solid #ffd700;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results__list-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.results__item-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #152860;
  line-height: 1.5;
  white-space: pre-line;
}
.results__item-date {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.3rem;
}
.results__item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #1e3a8a;
  margin: 0;
}

.footer {
  background-color: #10204b;
  color: #ffffff;
  padding: 3rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}
.footer a {
  color: #ffdf33;
  text-decoration: underline;
}
.footer a:hover {
  color: #ff4d4d;
}
.footer__responsible {
  margin-bottom: 2rem;
}
.footer__responsible-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.footer__responsible-text strong {
  font-weight: 600;
}
.footer__responsible-text--danger {
  color: #ff4d4d;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .footer__responsible-text {
    font-size: 0.9rem;
  }
}
.footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  padding: 0;
  list-style: none;
}
.footer__list-item a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s;
}
.footer__list-item a:hover {
  color: #ffd700;
}
.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}
.footer__logos-item {
  display: flex;
  align-items: center;
}
.footer__logos-item .footer__item-logo {
  max-height: 40px;
  max-width: 120px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer__logos-item .footer__item-logo:hover {
  opacity: 1;
}
.footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}
@media (max-width: 576px) {
  .footer__copy {
    font-size: 0.8rem;
  }
}

.about {
  background-color: #ffffff;
  padding: 4rem 0;
  font-family: "Poppins", sans-serif;
  color: #1e3a8a;
}
.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .about__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.about__left {
  flex: 1;
}
.about__left .about__img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}
.about__left .about__img:hover {
  transform: scale(1.03);
}
.about__right {
  flex: 1;
}
.about__head {
  margin-bottom: 1.5rem;
}
.about__head .about__label {
  display: inline-block;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #ff4d4d;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.about__head .about__title {
  font-size: 2rem;
  color: #1e3a8a;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 576px) {
  .about__head .about__title {
    font-size: 1.6rem;
  }
}
.about__description .about__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #152860;
  margin-bottom: 1rem;
}
.about__description .about__text:last-child {
  margin-bottom: 0;
}

.contact {
  background-color: #ffffff;
  padding: 4rem 0;
  color: #1e3a8a;
  font-family: "Poppins", sans-serif;
}
.contact__title {
  font-size: 2.5rem;
  text-align: center;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact__text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #152860;
}
.contact__form {
  max-width: 800px;
  margin: 0 auto;
}
.contact__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .contact__form-wrapper {
    flex-direction: column;
  }
}
.contact__form-input {
  flex: 1 1 48%;
  padding: 0.75rem 1rem;
  border: 2px solid #6483dd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #1e3a8a;
  transition: border-color 0.3s ease;
}
.contact__form-input::-moz-placeholder {
  color: #6483dd;
}
.contact__form-input::placeholder {
  color: #6483dd;
}
.contact__form-input:focus {
  outline: none;
  border-color: #ffd700;
}
.contact__form-textarea {
  min-height: 150px;
  resize: vertical;
  flex: 1 1 100%;
}
.contact__form-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  color: #1e3a8a;
}
.contact__form-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact__form-checkbox-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #1e3a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.contact__form-checkbox-icon i {
  opacity: 0;
  color: #fff;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}
.contact__form-checkbox input:checked + .contact__form-checkbox-icon {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
}
.contact__form-checkbox input:checked + .contact__form-checkbox-icon i {
  opacity: 1;
}
.contact__form-checkbox-text {
  flex: 1;
  line-height: 1.4;
}
.contact__form-btn {
  background-color: #ffd700;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact__form-btn:hover {
  background-color: #ccac00;
  transform: translateY(-2px);
}
.contact__form-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.auth {
  background-color: white;
  padding: 4rem 0;
  font-family: "Poppins", sans-serif;
  color: #1e3a8a;
}
.auth__form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.auth__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auth__form-input {
  padding: 0.85rem 1.25rem;
  border: 2px solid #6483dd;
  border-radius: 10px;
  font-size: 1rem;
  color: #1e3a8a;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.auth__form-input::-moz-placeholder {
  color: #8ea5e6;
}
.auth__form-input::placeholder {
  color: #8ea5e6;
}
.auth__form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}
.auth__form .contact__form-checkbox {
  margin-top: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #1e3a8a;
  display: flex;
  align-items: flex-start;
}
.auth__form .contact__form-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.auth__form .contact__form-checkbox-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #1e3a8a;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  transition: background-color 0.3s ease;
}
.auth__form .contact__form-checkbox-icon i {
  opacity: 0;
  color: #fff;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}
input:checked + .auth__form .contact__form-checkbox-icon {
  background-color: #ffd700;
  border-color: #ffd700;
}
input:checked + .auth__form .contact__form-checkbox-icon i {
  opacity: 1;
}
.auth__form .contact__form-checkbox-text {
  flex: 1;
  line-height: 1.4;
}
.auth__form-btn {
  margin-top: 2rem;
  width: 100%;
  background-color: #ffd700;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 0;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.auth__form-btn:hover {
  background-color: #c2a300;
  transform: translateY(-2px);
}
.auth__form-btn:focus {
  outline: 3px solid #fff7cc;
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .auth__form {
    padding: 2rem 1.5rem;
  }
  .auth__form-input {
    font-size: 0.95rem;
  }
  .auth__form-btn {
    font-size: 1rem;
  }
}

.legal {
  background-color: white;
  padding: 4rem 0;
  font-family: "Poppins", sans-serif;
  color: #1e3a8a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.legal__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.legal__intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #152860;
  text-align: center;
}
.legal__section {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.legal__section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal__section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #1e3a8a;
}
.legal__section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}
.legal__section ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.legal__section address {
  font-style: normal;
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .legal {
    padding: 3rem 1rem;
  }
  .legal__title {
    font-size: 2rem;
  }
  .legal__intro, .legal__section {
    max-width: 100%;
    padding: 0;
  }
  .legal__section-title {
    font-size: 1.3rem;
  }
  .legal__section p, .legal__section ul li, .legal__section address {
    font-size: 0.95rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 215, 0, 0.95);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  max-width: 480px;
  width: 90%;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  animation: fadeInUp 0.5s forwards;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
  color: #fff;
}
.cookie-banner__text a.cookie-banner__link {
  color: white;
  text-decoration: underline;
}
.cookie-banner__text a.cookie-banner__link:hover, .cookie-banner__text a.cookie-banner__link:focus {
  color: #fff;
}
.cookie-banner__btn {
  background-color: #fff;
  color: #ffd700;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background-color: #e6e6e6;
  color: #998100;
}
.cookie-banner.cookie-banner--hidden {
  animation: fadeOutDown 0.5s forwards;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }
  .cookie-banner__content {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}