
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0c151b;
}



.hero-container {
    width: 60%;
    margin: 0 auto;
    padding: 20px 0;
    margin-bottom: 100px;
}

/* Header Styles */
header {
    background-color: #0c151b;
    color: #fff;
    padding: 20px 0;
    top: 0;
    left: 0;
    width: 100%;
}

.divider {
    width: 100%;
    height: 20px;
    margin: 20px 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), #060b0e);
    box-shadow: 0 1px 3px rgba(20, 42, 53, 0.1);
}


nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}


/* Hero Section Styles */
.hero {
    background-color: #0c151b;
    text-align: center;
    padding: 170px 0;
}

.hero-image img {
    width: 500%;
    border-radius: 15%;
    opacity: 1;
    animation: fadeInUp 3s forwards, 3s logoAnimation infinite alternate;
    width: 160%;
    border-radius: 15%;
    transform: translateX(100%);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes logoAnimation {
    0% {
        transform: scale(1);

        box-shadow: 0 0 10px #54bee4;

    }

    0% {
        transform: scale(1);

        box-shadow: 0 0 25px #54bee4;

    }

    50% {
        transform: scale(1.1);

        box-shadow: 0 0 50px #54bee4;

    }

    100% {
        transform: scale(1);

        box-shadow: 0 0 10px #54bee4;

    }
}

.hero h2 {
    color: #54bee4;
    font-size: 55px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    line-height: 70px; 
    transform: scale(0.5) skew(-15deg, -15deg);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.hero h2.animate {
    transform: scale(1) skew(0, 0);
    opacity: 1;
}

.hero p {
    font-size: 22px;
    color: #b8b7b7;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    text-align: left;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #54bee4;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 30px;
    opacity: 0;
    animation: fadeInUp 1s forwards 5s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, transform 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn::before,
.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background-color: #213a3f;
    transition: width 0.7s ease; /* Aumentato il tempo di transizione */
    z-index: -1;
}

.btn::before {
    left: 0;
}

.btn::after {
    right: 0;
}

.btn:hover::before,
.btn:hover::after {
    width: 100%;
}

.btn:hover {
    color: #54bee4;
    transform: scale(0.9);
}

.btn-add {
    color: #1d1c1c;
    font-weight: 500;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
    background-size: 300% 100%;
    margin-left: -2px;
}

.btn-features {
    color: #54bee4;
    background-color: #0c151b;
    border: 2px solid #54bee4;
    margin: 20px;
    height: 55px;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}

.btn-add:hover {
    background-color: #192a2e;
    color: #fff;
}

.btn-features:hover {
    background-color: #192a2e;
    color: #fff;
    border-color: #1e3338;
}

.btn-animate {
    opacity: 0;
    animation: fadeInUp 1s forwards, slideFromLeft 1s;
    animation-delay: 0.8s;
}

.btn-animate-2 {
    opacity: 0;
    animation: fadeInUp 1s forwards, slideFromRight 1s;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.btn-header {
    display: inline-block;
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.7s;
    z-index: 1;
}

.btn-header::before,
.btn-header::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background-color: #213a3f;
    transition: width 0.7s ease; /* Aumentato il tempo di transizione */
    z-index: -1;
}

.btn-header::before {
    left: 0;
}

.btn-header::after {
    right: 0;
}

.btn-header:hover::before,
.btn-header:hover::after {
    width: 100%;
}

.btn-header:hover {
    color: #54bee4;
    transform: scale(0.9);
}


@keyframes slideFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes slideFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.features {
    background-color: #0c151b;
    padding: 50px 0;
    overflow: hidden;

}

.features h3 {
    font-size: 48px;

    font-weight: bold;

    margin-bottom: 10px;
}

.features .container .feature p {
    font-size: 16px;
    color: #868383;
    margin-bottom: 50px;

    font-family: "Poppins" sans-serif;
}

.features .feature h3 {
    font-size: 100px;

    font-weight: bold;

    margin-bottom: 10px;

}

.description1 {
    color: rgb(199, 199, 199);

}


.features {
    background-color: #0c151b;
    padding: 50px 0;
}

.features .feature img[alt="Ticket icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);
    transition: transform 0.5s ease;
    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.features .feature img[alt="Automod icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="Giveaway icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="Verification icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="AutoRoles icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="Welcome icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="Leveling icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img[alt="Partner icon"] {
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.85);

    transition: transform 0.5s ease;

    margin-bottom: 5%;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .feature img:hover {
    transform: scale(1.1);

}

.features .feature {
    background-color: #0c151b;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 200px;
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.features .feature:nth-child(even) .feature-content {
    order: 2; /* Inverte l'ordine per le feature pari */
}

.features .feature:nth-child(even) .feature-image {
    order: 1; /* Inverte l'ordine per le feature pari */
}

.features .feature .feature-content {
    flex: 1;
    margin-right: 20px;
    text-align: left; /* Assicurati che il testo sia allineato a sinistra */
}

.features .feature .feature-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features .container {
    width: 70%;
    margin: 0 auto;
}

.features .feature .feature-title {
    font-size: 50px !important;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(255, 253, 253);
    text-align: center;

}

.features p {
    font-size: 20px !important;
    color: #666;
}

.features h2 {
    color: rgb(255, 255, 255);
    font-size: 70px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 680px;
}

.features .feature .btn {
    display: block;
    background-color: #54bee4;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: fit-content;

    margin: 0 auto;

    margin-top: 20px;
    /
}

.highlight {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    background-color: #747474;

    color: #fff;

    padding: 2px 3px;

    border-radius: 2px;

}

.features .feature p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;

}

.features .feature h3 {
    font-size: 32px;

    font-weight: bold;

    margin-bottom: 20px;

    text-align: auto;
}

.features .feature h3 {
    font-size: 32px;

    font-weight: bold;

    margin-bottom: 10px;

}

.add-bot-button {
    display: inline-flex;
    align-items: center;
    background-color: #54bee4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 193px;
    display: block;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 1.16em;
}

.add-bot-button:hover {
    transform: scale(1.1);

    background-color: #192a2e;

}


.trusted-servers {
    text-align: center;
    padding: 50px 0;
    background-color: #0c151b;
    overflow: hidden;

    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
}

.section-title.visible {
    opacity: 1;
}

.animate-server {
    animation: slideInFromBottom 1s ease-in-out forwards;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 20px;

}

a[href="https://discord.gg/flexinghub"] .server-name {
    margin-right: 57px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/flexinghub"] .user-count {
    margin-right: 15px;
}

a[href="https://discord.gg/scheggiacloud"] .server-name {
    margin-right: 40px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/scheggiacloud"] .user-count {
    margin-right: 25px;
}

a[href="https://discord.gg/qXZgeJNaQA"] .server-name {
    margin-right: 85px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/qXZgeJNaQA"] .user-count {
    margin-right: 25px;
}

a[href="https://discord.gg/thunder-network-831267653929795604"] .server-name {
    margin-right: 30px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/thunder-network-831267653929795604"] .user-count {
    margin-right: 25px;
}

a[href="https://discord.gg/games-hub-859193722369474620"] .server-name {
    margin-right: 65px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/games-hub-859193722369474620"] .user-count {
    margin-right: 25px;
}

a[href="https://discord.gg/fmlpvp"] .server-name {
    margin-right: 100px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/fmlpvp"] .user-count {
    margin-right: 25px;
}

a[href="https://discord.gg/TX2vdbUYfq"] .server-name {
    margin-right: 95px;
    margin-bottom: 5px;
}

a[href="https://discord.gg/TX2vdbUYfq"] .user-count {
    margin-right: 25px;
}

.row {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.server {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 15px;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    background-color: #11272e;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 265px;
    height: 95px;
    overflow: hidden;
}

.server-link {
    text-decoration: none;
    color: inherit;
}

.server:hover {
    background-color: #14242e;
}

.server img.server-logo {
    position: absolute;
    top: 23px;

    left: 10px;

    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.server-info {
    margin-top: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-left: 35px;
}

.server-name {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 12.5px;
    margin-top: 20px;
    margin-right: 10px;
}

.user-count {
    margin: 0;
    font-size: 15px;
    color: #868383;
    padding-right: 87px;
}


.space {
    background-color: #0c151b;
    padding: 60px 120px;
}

footer {
    background-color: #0c151b;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
}

.containerfooter {
    background-color: #0f2329;
    padding: 20px 20px !important;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    flex: 1; /* Allow sections to take equal space */
    margin: 10px; /* Add some margin for spacing */
}

.section.main {
    margin-top: 45px;
}

.section.center.logo-container {
    text-align: center;
    order: 0; /* Place at the top in flex layout */
    width: 100%;
}

.section.center {
    order: 1; /* Place in the middle */
}

.section.left, .section.right {
    order: 2; /* Place left and right sections below the logo */
    flex: 1; /* Allow sections to take equal space */
}


img.footer-logo {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.section.left p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.section.center p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.section.right p {
    color: #f0f8ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-heading {
    font-weight: bold;
    margin-top: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    border-bottom: none;
}

.footer-menu li a:hover {
    color: #fff;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-link {
    color: #585858;
    transition: color 0.3s;
    text-decoration: none;
    border-bottom: 1px solid #585858;
}

.footer-link:hover {
    color: #54bee4;
}

.section.center .footer-menu,
.section.left .footer-menu,
.section.right .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes featureAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);

    }

    50% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);

    }
}


@keyframes countAnimation {
    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }
}


.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0c151b;
    padding-bottom: 300px;
}

.faq-answer-box {
    display: none;
    width: 600px;
    margin: -10px 10px 10px 10px;
    padding: 10px;
    background-color: #11272e;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 5px;
}

.faq-box {
    width: 600px;
    margin: 10px;
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #11272e;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 1px;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.faq-box.animate {
    transform: translateX(0);
    opacity: 1;
}

.faq-box h2 {
    color: rgba(255, 255, 255, 0.785);
    font-size: 20px;
    font-weight: normal;
}

.section-title-faq {
    color: rgb(255, 255, 255);
    font-size: 50px;
    padding-bottom: 50px;
    opacity: 0;
}

.section-title-faq.visible {
    opacity: 1;
}

.faq-answer {
    margin-top: 24px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.785);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.faq-answer a {
    color: #54bee4;
}

.faq-box:hover {
    background-color: #14242e;
    position: relative;
}

.toggle-icon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* Stili per la barra di scorrimento */
::-webkit-scrollbar {
    width: 12px; /* larghezza della barra di scorrimento */
  }
  
  /* Stile del cursore */
  ::-webkit-scrollbar-thumb {
    background-color: #111e27;
    border-radius: 6px; /* bordi arrotondati */
  }
  
  /* Stile del track */
  ::-webkit-scrollbar-track {
    background-color: #0c151b;
  }

  .statistics {
    text-align: center;
    padding: 50px 0;
    background-color: #0c151b;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}


@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-title {
    color: #ffffff;
    font-size: 60px;
    font-weight: bold;
}
.stats-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 20px;

}

.row-stats {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.stats {
    position: relative;
    display: flex;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 60px;
    transform: translateY(-40px);
    transition: opacity 0.5s, transform 0.5s;
    background-color: #19292e;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 430px;
    height: 120px;
    overflow: hidden;
}

.stats.visible {
    transform: translateY(0);
    opacity: 1;
}

.stats img.stats-logoo {
    position: absolute;
    top: 23px;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.stats-logo {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 25px;
    top: 19px;
    margin-bottom: 10px;
    border-radius: 10%;
}

.stats-info {
    margin-top: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-left: 35px;
}

.stats-name-1 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 2px;
    margin-top: 20px;
    margin-right: 120px;
}

.stats-count-1 {
    margin: 0;
    font-size: 30px;
    color: #ffffff;
    padding-right: 87px;
    margin-left: 22px;
    margin-top: -12px;
}

.stats-name-2 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 2px;
    margin-top: 20px;
    margin-right: 120px;
}

.stats-count-2 {
    margin: 0;
    font-size: 30px;
    color: #ffffff;
    padding-right: 87px;
    margin-left: -44px;
    margin-top: -12px;
}

.stats-name-3 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 2px;
    margin-top: 20px;
    margin-right: 60px;
}

.stats-count-3 {
    margin: 0;
    font-size: 30px;
    color: #ffffff;
    padding-right: 87px;
    margin-left: -44px;
    margin-top: -12px;
}

.copyright {
    background-color: #090f14;
    text-align: center;
    padding: 20px 0;
}

.copyright p {
    color: #585858
}

.feature-image,
.feature-content p {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.feature-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-content p.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Ritardo per il paragrafo */
}

.section {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section.left.visible {
    transition-delay: 0.4s;
}

.section.center.visible {
    transition-delay: 0.2s;
}

.section.right.visible {
    transition-delay: 0.6s;
}

.dropdown {
    display: none;
}

.side-menu {
    display: none;
}





.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: #0c1416;
    box-shadow: #192a2e 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}





.cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #121e22 0%, #19292e 100%);
    position: relative;
    overflow: hidden;
}

.cta-text {
    font-size: 2.5em;
    margin: 0 0 20px;
    animation: colorChange 5s infinite alternate;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease
}

.cta-text.visible {
    opacity: 1;
}

.bot-name {
    font-weight: bold;
    color: #2e7079;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5em;
    background-color: #54bee4;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cta-button::before,
.cta-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background-color: #213a3f;
    transition: width 0.7s ease; /* Aumentato il tempo di transizione */
    z-index: -1;
    border-radius: 25px;
}

.cta-button::before {
    left: 0;
    border-radius: 25px;
}

.cta-button::after {
    right: 0;
    border-radius: 25px;
}

.cta-button:hover::before,
.cta-button:hover::after {
    width: 100%;
    border-radius: 25px;
}

.cta-button:hover {
    color: #54bee4;
    transform: scale(1.1);
    border-radius: 25px;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50%, 50%);
    }
}