@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  /* height: 100dvh; */
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

body {
  position: relative;
  margin-top: 64px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-optical-sizing: auto;
  background: #ffffff;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body h1 {
  font-size: 2.5rem;
  /* 2.5 * 16px = 40px */
}
body h2 {
  font-size: 2rem;
  /* 2 * 16px = 32px */
}
body h3 {
  font-size: 1.75rem;
  /* 1.75 * 16px = 28px */
}
body h4 {
  font-size: 1.5rem;
  /* 1.5 * 16px = 24px */
}
body h5 {
  font-size: 1.25rem;
  /* 1.25 * 16px = 20px */
}
body h6 {
  font-size: 1rem;
  /* 1 * 16px = 16px */
}

section {
  padding: 32px 16px 48px 16px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 8px 8px 24px 0 rgba(0, 0, 0, 0.1);
}
header .promotion {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 8px;
  gap: 4px 8px;
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  header .promotion {
    flex-direction: column;
  }
}
header .promotion .promotion-especial {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #000000;
}
header .promotion a {
  box-shadow: none;
  color: red;
  text-decoration: none;
}
header .navbar {
  padding: 0 16px;
  background: #ffffff;
}
header .navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  column-gap: 48px;
  row-gap: 16px;
}
header .navbar .container .logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
header .navbar .container .logo img {
  height: 40px;
}
header .navbar .container .logo h5 {
  font-size: 1.5rem;
  color: #1483DE;
}
header .navbar .container .logo p {
  font-weight: bold;
  font-size: 0.75rem;
  background: linear-gradient(90deg, #1483DE 0%, #6a0dad 50%, #db4cee 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: max-content;
}
header .navbar .container nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  background: #ffffff;
  width: 100%;
  max-width: 650px;
}
header .navbar .container nav a {
  min-width: fit-content;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
header .navbar .container nav a:hover {
  color: #6a0dad;
}
@media (max-width: 768px) {
  header .navbar .container nav a {
    font-size: 1.25rem;
  }
}
@media (max-width: 868px) {
  header .navbar .container nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 16px 16px 32px 16px;
    box-shadow: 8px 8px 24px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
}
header .navbar .container .nav-tools {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
header .navbar .container .nav-tools .language-switcher {
  position: relative;
  display: inline-block;
  min-width: max-content;
}
header .navbar .container .nav-tools .language-switcher.active .chevron {
  transform: rotate(180deg);
}
header .navbar .container .nav-tools .language-switcher .language-button {
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: #C48CF4;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease;
}
header .navbar .container .nav-tools .language-switcher .language-button:hover {
  background-color: rgba(196, 140, 244, 0.5);
}
header .navbar .container .nav-tools .language-switcher .language-button .chevron {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}
header .navbar .container .nav-tools .language-switcher .dropdown {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%, -16px);
  background: white;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  min-width: 200px;
}
header .navbar .container .nav-tools .language-switcher .dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translate(50%, 0);
}
header .navbar .container .nav-tools .language-switcher .dropdown .dropdown-item {
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
  margin: 4px;
}
header .navbar .container .nav-tools .language-switcher .dropdown .dropdown-item:hover {
  background: rgba(102, 126, 234, 0.1);
}
header .navbar .container .nav-tools .language-switcher .dropdown .dropdown-item.active {
  background: rgba(102, 126, 234, 0.15);
  color: #a44cee;
}
header .navbar .container .nav-tools .language-switcher .dropdown .dropdown-item .language-name {
  flex: 1;
}
header .navbar .container .nav-tools .language-switcher .dropdown .dropdown-item .language-code {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}
header .navbar .container .nav-tools #hamburger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 868px) {
  header .navbar .container .nav-tools #hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: #6a0dad;
  }
}
header .navbar .container .nav-tools #hamburger .open {
  display: block;
  height: 38px;
  aspect-ratio: 1/1;
}
header .navbar .container .nav-tools #hamburger .close {
  display: none;
  height: 38px;
  aspect-ratio: 1/1;
}
@media (max-width: 868px) {
  header .navbar.expanded nav {
    transform: translateX(0) translateY(100%);
    opacity: 1;
    transition: all 0.2s ease-in-out;
    align-items: start;
  }
  header .navbar.expanded #hamburger .open {
    display: none;
  }
  header .navbar.expanded #hamburger .close {
    display: block;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 64px);
  max-height: 800px;
  padding: 16px;
  padding-top: 32px;
}
@media (max-width: 992px) {
  .hero {
    height: fit-content;
    max-height: none;
    gap: 32px;
  }
}
.hero .container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: calc(100% - 60px);
  gap: 32px;
}
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
}
.hero .container .hero-text {
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 32px;
}
@media (max-width: 992px) {
  .hero .container .hero-text {
    align-items: center;
    gap: 16px;
  }
}
.hero .container .hero-text h1 {
  font-weight: 700;
  background: linear-gradient(90deg, #501e9c 0%, #8169f1 40%, #a44cee 75%, #ff847f 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .container .hero-text p {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
}
.hero .container .hero-text .cta {
  width: 100%;
}
.hero .container .hero-text .cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 4px;
}
@media (max-width: 992px) {
  .hero .container .hero-text .cta .cta-buttons {
    justify-content: center;
  }
}
.hero .container .hero-text .cta .cta-buttons .btn {
  min-width: 170px;
  white-space: nowrap;
  padding: 12px 20px;
  border: 2px solid #a44cee;
  background: #a44cee;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 992px) {
  .hero .container .hero-text .cta .cta-buttons .btn {
    flex: 1;
  }
}
.hero .container .hero-text .cta .cta-buttons .btn:hover {
  background: #C48CF4;
}
.hero .container .hero-text .cta .cta-buttons .btn.btn-secondaire {
  background: #ffffff;
  color: #6a0dad;
}
.hero .container .hero-text .cta .cta-buttons .btn.btn-secondaire:hover {
  background: lightgray;
}
.hero .container .hero-text .cta .guarantee {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 4px;
  color: #a44cee;
  font-size: 0.875rem;
  line-height: normal;
}
.hero .container .hero-image {
  height: 100%;
}
.hero .container .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .container .watermark {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
  width: 100%;
  height: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.hero .container .watermark p {
  font-size: 8rem;
  line-height: 1.7;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  user-select: none;
}
.hero .platforms {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  height: 60px;
  gap: 16px;
  list-style: none;
}
.hero .platforms li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  text-align: center;
}
.hero .platforms li img {
  height: 40px;
}
.hero .hero-bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: grid;
  place-items: center;
  height: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.hero .hero-bubbles img {
  animation: bubbleAnim 120s infinite forwards linear;
  pointer-events: none;
  user-select: none;
}
@keyframes bubbleAnim {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 768px) {
  .hero .hero-bubbles img {
    width: 1108.5px;
    height: 398.25px;
  }
}
@media screen and (min-width: 992px) {
  .hero .hero-bubbles img {
    width: 1478px;
    height: 531px;
  }
}

.about {
  background: linear-gradient(to bottom, #C48CF4 50%, transparent 25%);
}
.about .container {
  position: relative;
  overflow: hidden;
  background: black;
  color: white;
}
.about .container .about-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .container .shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.2));
}
.about .container .about-text {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 32px;
  gap: 16px;
}
.about .container .about-text .section-title {
  margin: 0;
  color: white;
}
.about .container .about-text .section-title .highlight {
  color: #a44cee;
}
.about .container .about-text P {
  max-width: 50%;
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .about .container .about-text P {
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .about .container .about-text P {
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .about .container .about-text P {
    max-width: 80%;
    font-size: 1.25rem;
  }
}
.about .container .about-text P .highlight {
  color: #C48CF4;
}

.section-title {
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.section-title .highlight {
  color: #6a0dad;
  /* Purple color for the highlight */
}

.stats {
  position: relative;
  z-index: 1000;
  background-color: #C48CF4;
  color: white;
  text-align: center;
}
.stats .section-title {
  color: white;
}
.stats .stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 8px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .stats .stats-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats .stats-list .stat {
  flex: 1;
  border-right: 3px solid white;
  text-align: center;
}
@media (max-width: 768px) {
  .stats .stats-list .stat:nth-of-type(2n) {
    border: none;
  }
}
.stats .stats-list .stat:last-child {
  border: none;
}

.devices {
  text-align: center;
}
.devices .devices-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.devices .devices-list img {
  width: min(140px, 100%);
  aspect-ratio: 1/1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* Standard syntax */
  /* Safari */
  /* Firefox */
  /* Internet Explorer/Edge */
}

.channels {
  padding-bottom: 0;
}
.channels .container {
  height: fit-content;
  overflow: hidden;
}
.channels .container .carousel-cell {
  counter-increment: gallery-cell;
}
.channels .container .carousel-cell img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 992px) {
  .channels .container .carousel-cell img {
    width: 150px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .channels .container .carousel-cell img {
    width: 100px;
    height: 60px;
  }
}

.movies .container {
  overflow: hidden;
}
.movies .container .carousel-cell {
  counter-increment: gallery-cell;
}
.movies .container img {
  width: 250px;
  height: 370px;
  border: 1px solid #000000;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 992px) {
  .movies .container img {
    width: 120px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .movies .container img {
    width: 150px;
    height: 225px;
  }
}

.sports .container {
  overflow: hidden;
}
.sports .container .carousel-cell {
  counter-increment: gallery-cell;
}
.sports .container img {
  width: 250px;
  height: 370px;
  border: 1px solid #000000;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 992px) {
  .sports .container img {
    width: 120px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .sports .container img {
    width: 150px;
    height: 225px;
  }
}

.features {
  margin: 0;
}
.features .features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .features .features-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features .features-list .feature {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #a44cee;
  color: white;
  text-align: center;
}
.features .features-list .feature .icon {
  margin-left: auto;
  margin-right: auto;
}
.features .features-list .feature .icon svg {
  height: 32px;
  fill: white;
}
.features .features-list .feature h3 {
  margin-bottom: auto;
  padding-bottom: 8px;
}
.features .features-list .feature p {
  font-size: 1rem;
}

.pricing {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
.pricing .pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 8px;
  gap: 16px;
}
@media (max-width: 1200px) {
  .pricing .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .pricing .pricing-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.pricing .pricing-card {
  max-width: 380px;
  padding: 24px;
  border-radius: 4px;
  background: #f3f3f3;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}
.pricing .pricing-card:first-child {
  background-color: #a44cee;
  color: #ffffff;
}
.pricing .pricing-card:first-child h2 {
  color: #ffffff;
}
.pricing .pricing-card:first-child .price {
  animation: animatePulse 1s linear infinite alternate;
}
.pricing .pricing-card:first-child .btn {
  background-color: #ffffff;
  color: #6a0dad;
}
.pricing .pricing-card:first-child .btn:hover {
  background-color: lightgray;
}
.pricing .pricing-card h2 {
  color: #a44cee;
  font-weight: 400;
}
.pricing .pricing-card .price {
  font-size: 4rem;
  font-weight: 200;
}
.pricing .pricing-card ul {
  padding: 0;
  padding-top: 12px;
  list-style-type: none;
  text-align: left;
}
.pricing .pricing-card ul li {
  position: relative;
  margin-block: 16px;
  padding-left: 24px;
  /* Space for the emoji */
}
.pricing .pricing-card ul li::before {
  content: "●";
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 0.5rem;
  font-weight: bolder;
}
.pricing .pricing-card .btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #a44cee;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  /* Rounded corners */
  /* Button takes full width of the card */
}
.pricing .pricing-card .btn:hover {
  background-color: #6a0dad;
}
.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.pricing .pricing-note {
  margin-top: 16px;
  color: #a44cee;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.map {
  text-align: center;
}
.map img {
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

.faq {
  margin: 0;
}
.faq .faq-title {
  margin-bottom: 20px;
  color: #6a0dad;
  text-align: center;
}
.faq .faq-card {
  margin: 10px 0;
  border: 1px solid #C48CF4;
  background-color: rgba(196, 140, 244, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq .faq-card .faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.faq .faq-card .faq-question h5 {
  text-align: left;
  margin: 0;
  color: #333;
}
.faq .faq-card .faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: #6a6a6a;
  user-select: none;
}
.faq .faq-card .faq-answer {
  display: none;
  padding: 16px;
  border-top: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.5);
  color: #666;
}
.faq .faq-card .faq-answer ul {
  margin-left: 16px;
}
.faq .faq-card:hover h5 {
  color: #6a0dad;
  transition: color 0.3s ease;
}
.faq .faq-card.active .faq-answer {
  display: block;
}
.faq .faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.contact {
  background: linear-gradient(to bottom, transparent 66%, #333 0%);
}
.contact .container {
  width: 100%;
  background-color: #C48CF4;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 8px;
}
.contact .container .section-title {
  color: white;
}
.contact .container p {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
.contact .container .whatsapp-link {
  background-color: white;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #C48CF4;
  font-size: 1.25rem;
  font-weight: 600;
  min-width: min(340px, 100%);
}
.contact .container .whatsapp-link svg {
  fill: #C48CF4;
}

footer {
  padding: 16px;
  background-color: #333;
  color: #ffffff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 20px;
  gap: 40px;
}
footer .footer-section {
  flex: 1 1 auto;
}
footer .footer-title {
  margin-bottom: 10px;
  font-weight: bold;
}
footer .footer-description {
  color: #bbb;
}
footer .footer-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
footer .footer-links ul {
  padding: 0;
  list-style-type: none;
}
footer .footer-links ul li {
  margin: 8px 0;
}
footer .footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-links ul li a:hover {
  color: #a44cee;
}
footer .social-icons {
  display: flex;
  gap: 20px;
}
footer .social-icons .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444;
  transition: transform 0.3s ease;
}
footer .social-icons .social-icon:hover {
  transform: scale(1.1);
  background-color: #a44cee;
}
footer .social-icons .social-icon img {
  width: 20px;
  height: 20px;
  pointer-events: none;
  user-select: none;
}
footer .footer-bottom {
  margin-top: 40px;
  color: #bbb;
  font-size: 1rem;
  text-align: center;
}

.whatsapp-button {
  position: fixed;
  height: 4rem;
  width: 4rem;
  bottom: 8px;
  left: 8px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  z-index: 10000;
  display: none;
  width: 100%;
  padding: 16px;
  background: #a44cee;
  color: white;
  font-size: 1.125rem;
  text-align: center;
}
#cookie-banner button {
  min-width: 160px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 2px solid white;
  background: white;
  color: #a44cee;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
#cookie-banner button.deny-btn {
  background: #a44cee;
  color: white;
}
#cookie-banner button.deny-btn:hover {
  background: #C48CF4;
}
#cookie-banner button:hover {
  background: lightgray;
}

/*# sourceMappingURL=styles.css.map */
