@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


:root {
    --primary-color: #FFA500; /* Orange */
    --secondary-color: #FFD700; /* Gold */
    --background-color: #121212; /* Dark Gray */
    --surface-color: #1E1E1E; /* Slightly Lighter Dark Gray */
    --text-color: #E0E0E0; /* Light Gray */
    --header-footer-bg: #1E1E1E;
}

.payment-methods {
    text-align: center;
    padding: 20px 0;
}

.payment-methods h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-image: url('../images/blue-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-image: url('../images/blue-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--surface-color);
}

header .logo .text {
    color: var(--text-color);
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4A148C; /* Darker Purple */
}

h1, h2, h3 {
    color: var(--text-color);
}

section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--surface-color);
}

.main-banner {
    text-align: center;
}

.popular-games h2, .info h2, .promotionsSwiper h2, .advantage h2, .banner h2, .support h2 {
    text-align: center;
    margin-bottom: 2rem;
}

footer {
    background-color: var(--header-footer-bg);
    padding: 2rem 0;
    text-align: center;
}

.list-social li a img {
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 1.5rem 0;
    }

    .info .row {
        flex-direction: column;
    }

    .info .col-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 8px 16px;
    }

    .advantage .row {
        flex-direction: column;
    }

    .advantage .col-6 {
        width: 100%;
    }

    .support .row {
        flex-direction: column;
    }

    .support .col-6 {
        width: 100%;
        margin-bottom: 1rem;
    }

    footer {
        padding: 1.5rem 0;
    }
}

/* Falling Money Animation */
#money-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.money-symbol {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('../images/money.webp');
    background-size: contain;
    background-repeat: no-repeat;
    top: -40px;
    animation: fall 20s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0);
    }
    100% {
        transform: translateY(105vh) rotate(720deg);
    }
}

.popular-games .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.popular-games .swiper-item:hover img {
  transform: scale(1.1);
}

.popular-games .swiper-item:active img {
  animation: click-animation 0.5s;
}

@keyframes click-animation {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}

.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

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

.top-ad {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    animation: gradient-animation 5s ease infinite;
    padding: 5px 15px;
    text-align: center;
}

.top-ad p {
    margin: 0;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color);
    animation: text-glow 1.5s ease-in-out infinite alternate;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes text-glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color);
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary-color), 0 0 40px var(--primary-color);
  }
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}

.platform-descriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.platform {
    margin-bottom: 30px;
}

.platform h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.platform p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}


.btn-special {
    background-color: var(--primary-color);
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-special:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

.whatsapp-button img:hover {
    transform: scale(1.1);
}
.promotionsSwiper .blue-theme {
    background-color: var(--primary-color) !important;
}

.prizeSwiper .swiper-item img {
  transition: transform 0.3s ease-in-out;
}

.prizeSwiper .swiper-item:hover img {
  transform: scale(1.1);
}

.prizeSwiper .swiper-item:active img {
  animation: click-animation 0.5s;
}

.platform-descriptions {
    display: none;
    padding: 40px 0;
}