* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at center, #1a1c3d, #0A0B1D 70%);
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    background: radial-gradient(circle at center, #1a1c3d, #0A0B1D 70%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}


.navbar .logo-container {
    position: absolute;
    left: 10px;
    display: flex;
    justify-content: flex-start;
}

.navbar .logo {
    width: 80px;
    height: auto;
}


.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu .options-background {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 20px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    font-weight: 500;
    font-size: 0.9em;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #7289FC;
}

.discord-button {
    position: absolute;
    right: 10px;
    background-color: #7289FC;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .discord-button {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 29, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 2em;
}

.menu-icon {
    display: none;
    font-size: 1.8em;
    color: #ffffff;
    cursor: pointer;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 10px;
        justify-content: space-between;
    }

    .navbar .logo-container {
        margin-left: 10px;
    }

    .navbar .logo {
        width: 60px;
    }

    .nav-menu {
        display: none;
    }

    .menu-icon {
        display: block;
        margin-left: auto;
        margin-right: 10px;
    }

    .mobile-menu.active {
        display: flex;
    }
}

.sponsor-section {
    margin-top: 40px;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: center; /* Centra il testo all'interno del contenitore */
}

.sponsor-title {
    font-weight: 600;
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.sponsor-logos {
    display: flex; /* Usa Flexbox per il contenitore delle immagini */
    justify-content: center; /* Centra orizzontalmente le immagini */
    gap: 20px; /* Spazio tra le immagini */
    flex-wrap: wrap; /* Permette alle immagini di andare a capo se necessario */
}

.sponsor-logo {
    width: 200px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    border: none;
    margin: 0;
    padding: 0;
}


.sponsor-logo:hover {
    filter: grayscale(0%); /* Rimuove il filtro in scala di grigi */
}





.hero {
    background: radial-gradient(circle at center, #1a1c3d, #0A0B1D 70%);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.hero .content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero .content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.hero .content h1 .blue-highlight {
    color: #5066F1;
}

.hero .content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #B0B3D6;
}

.hero .primary-button {
    padding: 15px 40px;
    background-color: #5066F1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 102, 241, 0.4);
}

.hero .primary-button:hover {
    background-color: #7289FC;
    transform: scale(1.05);
}

.cards-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    background: rgba(10, 11, 29, 0.85);
    padding: 20px;
    border-radius: 15px;
    width: 450px;
    min-height: 250px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon-container {
    width: 60px;
    height: 60px;
    background-color: #1E1E2E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.card .icon-container i {
    color: #7289FC;
    font-size: 1.7em;
}

.card h3 {
    color: #7289FC;
    margin-bottom: 15px;
    font-size: 1.6em;
    font-weight: bold;
}

.card p {
    color: #B0B3D6;
    font-size: 1.2em;
    line-height: 1.6em;
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        margin-bottom: 20px;
    }
}

.world-section {
    position: relative;
    background: radial-gradient(circle at center, #1a1c3d, #0A0B1D 70%);
    padding: 60px 20px;
    margin-top: -60px;
    overflow: hidden;
    transition: 0.5s;
}


.world-section:hover {
    box-shadow: 0 -25px 25px #7289fc31;
    transition: 0.5s;
    border-radius: 20% 20% 0 0;
}

.world-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.2), rgba(10, 11, 29, 0.8));
    z-index: -1;
}

.world-map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.world-map {
    width: 100%;
    max-width: 800px;
}

.location-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #008cff;
    animation: pulse 1.5s infinite;
}

.italy-dot {
    top: 48%;
    left: 50%;
}

.germany-dot {
    top: 44%;
    left: 51%;
}

.york-dot {
    top: 48%;
    left: 27%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}