@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

body{
  direction: ltr;
  font-family: 'Asap Condensed', sans-serif !important;
  line-height: 1.3;
  background-color: var(--bcg-2);
  margin: 0px;
  padding: 0px;  
  box-sizing: border-box;
  overflow-x: hidden;
}



:root{
--green: #04ef14;
--red: #f00d0d;
--yellow: #fff200;
--orange: #ff5e00; 
--blue: #00d0ff;
--white: #ffffff;
--violet: #8800ff;
--pink: #fc4ee4;


--bcg-1: #170089;
--bcg-2: #021f11;
--bcg-3: #1d0035; 



}

a {
white-space: normal;
text-decoration: none;
}
ul {
padding-left: 0;
padding-right: 0;
}
li {
margin: 0 25px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.margin-fantasy {
  padding: 0;
  margin: 0 auto;
  }
.padding-fantasy {
padding:  90px 6px;
}

.fantasy-header-section {
  background: url('mediamansion/bg/bg-light-069146bfd7137f.jpg') center/cover no-repeat;
  position: relative;
  border-radius: 0% 100% 0% 100% / 85% 0% 100% 15%;
  box-shadow: 0 0 30px 10px rgba(0, 191, 255, 0.8);
}

.fantasy-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(122deg, rgb(0 191 255), rgb(255 0 255 / 83%), rgb(255 255 0));
  border-radius: 0% 100% 0% 100% / 85% 0% 100% 15%;
  opacity: 0.8;
  z-index: 1;
}

.header-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 23px;
}

.logo-title-wrap a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.header-logo img {
  width: 45px;
  height: auto;
  margin: 15px;
}

.header-logo h1 {
  font-size: 34px;
  color: #00ffff; 

  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.header-logo{
  display: flex;
  align-items: center;
}
.header-title p {
  font-size: 45px;
  text-align: center;
  font-weight: 700;
  color: #04045d;
  text-shadow: 0 0 10px #91ff00, 0 0 20px #a6ff00;
}

.header-menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.header-menu a {
  font-size:22px;
  color: #ffff00; 
  text-decoration: none;
  text-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header-menu a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

.fantasy-benefit-section {
  background: linear-gradient(to top, black, #f4f4f400);
  color: white;
}

.benefit-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.fantasy-title {
  position: relative;
  text-align: center;
  margin-bottom: 23px;
}

.fantasy-title h2 {
  font-size: 34px;
  letter-spacing: 10px;
  color: white;
  text-transform: inherit;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.fantasy-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 282px;
  height: 282px;
  background: radial-gradient(circle, rgb(208 61 193 / 70%), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: pulse 2s infinite alternate;
  z-index: 0;
}

.fantasy-title .magic-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.fantasy-title .magic-dots span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--yellow);
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) translateX(-10px);
    opacity: 0.6;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}


.benefit-card-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  position: relative;
}

.benefit-img{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.benefit-img::before {
  content: "";
  position: absolute;
  width: 282px;
  height: 282px;
  background: radial-gradient(circle, rgb(255, 179, 0), transparent);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
}

.benefit-img img {
  max-width: 282px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.benefit-img img:hover {
  transform: scale(1.1);
}

.benefit-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  max-width: 360px;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fantasy-games-section {
  background: black;
  color: white;
}

.games-wrapper {
  display: flex;
  flex-direction: column;
   gap: 25px;
}

.game-cards{
  display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.game-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 282px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.img-game {
  position: relative;
  height:360px;
  background-size: cover;
  background-position: center;
}

.img-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), black);
}

.text-game {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.title-game {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 15px;
  border-top: 2px solid var(--yellow);
    padding: 16px 0;
}

.content-game {
  font-size:  18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--yellow);
}

.fantasy-table-section {
  background: url('mediamansion/bg/bg-dark-069146bfd713c5.jpg') center/cover no-repeat fixed;
  color: white;
  position: relative;
}

.fantasy-table-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.table-wrapper {
  position: relative;
  z-index: 1;
}

.table-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
   gap: 25px;
}

.table-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 10px;
  width: 282px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.table-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--yellow);
}

.table-ava {
  width: 147px;
  height: 147px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.table-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.table-awards {
  width: 76px;
  height: auto;
}

.fantasy-fqa-section {
  background: linear-gradient(to bottom, var(--bcg-2), #000000);
}

.fqa-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.qa-wrap {
  border-bottom: 1px solid #ccc;
}

.qa-list{
  padding: 16px;
}
.q-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.q-item::after {
  content: '+';
  font-size: 27px;
  transition: transform 0.3s ease;
}

.q-item.active::after {
  content: '-';
  transform: rotate(180deg);
}

.a-iem {
  font-size:  16px;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.a-iem.show {
  max-height: 360px; 
  opacity: 1;
}

.q-item:hover {
  color: var(--blue);
}

.fantasy-form-section {
  background: url('mediamansion/bg/bg-dark-169146bfd713e1.jpg') no-repeat center center/cover fixed;
  position: relative;
}

.form-wrapper {
  max-width: 579px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 35px;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  padding: 28px 0;
  width: 90%;
  height: auto;
  background-image: linear-gradient(to bottom, black, blue);
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

.input,
.input-custom__container__element {
  margin: 15px 0;
  padding: 15px 5px;
  width: 52%;
  background-color: inherit;
  color: white;
  border: none;
  outline: none;
  border: 1px solid var(--yellow);
  transition: all 400ms;
}
.textarea,
.textarea-custom__container__element{
  margin: 15px 0;
  padding: 15px 5px;
  width: 52%; 
  height: 76px;
  background-color: inherit;
  color:white;
  border: none;
  outline: none;
  border: 1px solid var(--yellow);
  transition: all 400ms;
}
.input:hover,
.input-custom__container__element:hover,
.textarea:hover,
.textarea-custom__container__element:hover{
  border: 1px solid var(--blue);
}

 .form label{ 
  color: white;
}
::placeholder {
  color: white;
}
.check-wrap{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 30px 10px;
}
.cyberpunk-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #30cfd0;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.checkaccept,
.check-privacy{
  color: white;
}
.cyberpunk-checkbox:before {
  content: "";
  background-color: #30cfd0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
  transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

.fantasy-page-section {
  background: url('mediamansion/bg/bg-dark-169146bfd713e1.jpg') no-repeat center center/cover;
  border-radius: 0% 100% 0% 100% / 95% 6% 94% 5%;
  position: relative;
  box-shadow: 0 0 30px 10px rgba(0, 191, 255, 0.8);
}

.fantasy-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(254 129 253 / 28%);
  border-radius: 0% 100% 0% 100% / 95% 6% 94% 5%;
  z-index: 1;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap:35px;
  z-index: 2;
}
.page-wrapper2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap:35px;
  z-index: 2;
}
.page-box{
  display: flex;
  flex-direction: row-reverse;
}
.fantasy-page-title {
  flex: 1;
  max-width: 50%;
  color: #fff;
  backdrop-filter: blur(20px);
  padding: 25px;  
  margin: 15px;
  border-radius: 10px;
}
.page-img{
  flex: 1;
  text-align: center;
  margin: 15px;
}

.page-img img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.players-game{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.page-text {
  font-size: 18px;
}

.players-game p {
  font-size:  27px;
  color: var(--bcg-2);
}
.players-game span{
  font-size: 35px;
  color: var(--blue);
}
.fantasy-page-title:hover,
.page-img img:hover {
  transform: translateY(-10px);
  transition: transform 0.5s ease;
}

.fantasy-about-section,
.games-page {
  background-color: #00000075;
  border-radius: 0% 100% 0% 100% / 95% 6% 94% 5%;
}
.fantasy-about-section-i{
  background-color: #00000075;
  border-radius: 0% 100% 0% 100% / 95% 0% 100% 5%;
}
.about-wrapper {
  align-items: center;
}

.about-box > div {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-large {
  width: 100%;
  height: auto;
  display: block;
}

.videobox{
  display: flex;
  flex-direction: row;
}
.div1,
.div5 {
  width: 40%;
  height: 204px;
  object-fit: cover;
}
.div2,
.div4 {
  width: 60%;
    height: 204px;
    object-fit: cover;
}
.div3 {
  font-size: 18px;
  color: #ddd;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin: 25px 6px;
}

.fantasy-footer-section {
 padding: 40px 25px 15px;
  color: #fff;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 25px;
}



.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-menu a {
  font-size: 18px;
  color: #ffff00;
  text-decoration: none;
  margin-left:  25px;
  text-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00;
  transition: color 0.3sease, text-shadow 0.3sease;
}

.footer-menu a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

.disclaimer-wrap {
  background: rgb(255 255 255 / 32%);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.disclaimer-title {
  font-size:  27px;
  margin-bottom: 15px;
  text-align: center;
}

.gambla-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gambla-disclaimer img {
  width: 76px;
}

.gambla-disclaimer p {
  font-size: 18px;
  color: #ddd;
}

.copyright {
  text-align: center;
  padding: 25px 0 0;
  border-top: 1px solid #333;
  font-size: 16px;
  color: #888;
  display: flex;
  justify-content: space-evenly;
}

.privacy-wrapper{
  color: white;
  word-break: break-all;
}

.fantasy-contact-section {
  color: #fff;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin:  35px 0;
}

.fantasy-form-contact{
  display: flex;
  flex-direction: column-reverse;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px #ff00ff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-item svg {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  fill: var(--blue);
}

.contact-item a, .contact-item p {
  font-size: 22px;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  text-decoration: none;
  word-break: break-all; 
}

.contact-item:hover {
  animation: pulse 1s infinite;
}
.iframe-box {
  height: 100vh;
  width: 100%;
}
.iframe-box iframe {
  height: 100vh;
  width: 100%;
}


@media screen and (min-width: 320px) {
  .margin-fantasy{
    max-width: 320px;
  }
}
@media screen and (min-width: 500px) {
  .margin-fantasy{
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .margin-fantasy{
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .margin-fantasy{
    max-width: 1200px;
  }
}


@media (max-width: 1200px){
  .div1, .div5{
    display: none;
  }
  .div2, .div4{
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .fantasy-page-title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .page-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-img img {
    max-width: 80%;
  }
  .page-box{
    flex-direction: column;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .gambla-disclaimer {
    flex-direction: column;
    align-items: center;
  }
  .contact-box {
    align-items: center;
  }
}


@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .header-title p {
    font-size: 24px;
  }
  .header-menu a {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .fantasy-title h2 {
    font-size: 24px;
  }

  .benefit-card-img {
    flex-direction: column;
    align-items: center;
  }

  .benefit-img img {
    max-width: 50%;
  }
  .game-card{
    width: 100%;
  }
  .q-item {
    font-size: 16px;
  }

  .a-iem {
    font-size: 14px;
  }
  .fantasy-page-title {
    padding: 15px;
  }

  .page-text {
    font-size: 16px;
  }
  .header-logo h1 {
    font-size: 1.8rem;
  }

  .footer-menu a {
    font-size: 0.9rem;
  }

  .disclaimer-title {
    font-size: 1.3rem;
  }

  .gambla-disclaimer p {
    font-size: 0.9rem;
  }
  .contact-item {
    width: 100%;
  }

  .contact-item a, .contact-item p {
    font-size: 1rem;
  }
  .form-wrapper{
    padding: 6px;
  }
}

@media (max-width: 500px){
  .div2, .div4{
   height: auto;
  }
}


@media (max-width: 480px) {
  .fantasy-title h2{
    font-size: 20px;
  }

  .benefit-item {
    font-size: 1rem;
    padding: 10px;
  }
  .fantasy-footer-section {
    padding: 23px 15px;
  }

  .aqua-footer-logo img {
    width: 50px;
  }

  .footer-menu {
    gap: 10px;
  }
  .fantasy-contact-section {
    padding: 40px
    15px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-item svg {
    width: 30px;
    height: 30px;
  }
  .copyright{
    flex-direction: column;
  }
}

@media (max-width: 425px){
.form{
  width: 100%;
}

.input,
.input-custom__container__element,
.textarea,
.textarea-custom__container__element{
  width: 80%;
}
.fantasy-title::before{
  width: 200px;
  height: 200px;
}
}










.button-1 {
  position: relative;
  font-size: 16px;
  padding: 15px 15px;
  background-color: var(--violet);
  text-decoration: none;
  border: none;
  margin: 6px;
  border-radius: 10px;
  color: var(--white);
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
}

.button-1::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(33 33 33 / 4%) 0%, rgba(33, 33, 33, 1) 50%, #17008b 50%, var(--blue) 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.button-1:hover::before {
  width: 1.6em;
  height: 1.6em;
}

.button-1:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}



.button-2 {
  height: 55px;
  border: none;
  border-radius: 10px;
  background: #0a3139;
  padding: 16px 28px;
  font-size: 16px;
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
 }
 
 .button-2:hover {
  animation: swing 0.5s ease-in-out;
 }
 
 @keyframes shake3856 {
  0% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 
  20% {
   -webkit-transform: translate(-2px, 2px);
   transform: translate(-2px, 2px);
  }
 
  40% {
   -webkit-transform: translate(-2px, -2px);
   transform: translate(-2px, -2px);
  }
 
  60% {
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
  }
 
  80% {
   -webkit-transform: translate(2px, -2px);
   transform: translate(2px, -2px);
  }
 
  100% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 }
 

.button-3 {
  position: relative;
  width: 140px;
  background-color: #0e3b43;
  display: flex;
  align-items: center;
  color: white;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 15px;
  gap: 15px;
  border-radius: 5px;
  cursor: pointer;
}

.button-3 ::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 128px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-3::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, var(--yellow) 0%, var(--pink) 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.button-3:hover::after {
  filter: blur(30px);
}

.button-3:hover::before {
  transform: rotate(-180deg);
}

.button-3:active::before {
  scale: 0.7;
}


.button-4 {
  display: inline-block;
  padding: 15px 15px;
  margin: 15px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(to bottom right, var(--yellow), var(--orange));
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 0px var(--text-2);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.button-4:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px var(--text-2);
}

.button-4:active {
  transform: translateY(0px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, var(--yellow), var(--orange));
}

.button-4:before,
.button-4:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.button-4:before {
  top: -3px;
  left: -3px;
  border-radius: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.button-4:after {
  bottom: -3px;
  right: -3px;
  border-radius: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.button-5,
.button-5:focus {
  font-size: 16px;
  padding: 15px 25px;
  border-radius: 0.7rem;
  background-image: linear-gradient( #da965e, rgb(158, 129, 254));
  border: 2px solid rgb(50, 50, 50);
  border-bottom: 5px solid rgb(50, 50, 50);
  box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
  transform: translate(0, -3px);
  cursor: pointer;
  transition: 0.2s;
  transition-timing-function: linear;
}

.button-5:active {
  transform: translate(0, 0);
  border-bottom: 2px solid rgb(50, 50, 50);
}



.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}

