/* ======================================================= */
/* GENERAL STYLES */
/* ======================================================= */

:root {
    --primary-color: #000000; /* Nero (sfondo primario) */
    --secondary-color: #ff0000; /* Rosso Dragone (accento) */
    --text-color: #ffffff; /* Testo Bianco */
    --tech-emphasis: #00ffff; /* Ciano/Turchese (enfasi tecnologica) */
    --spacing-unit: 400px; /* Unità di spaziatura per la roadmap */
    --dot-size: 35px; /* Dimensione base dei dot nella roadmap */
    --roadmap-height: 350px; /* Altezza del contenitore roadmap */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================================================= */
/* TYPOGRAPHY AND FLOW TEXT */
/* ======================================================= */

.flow-text {
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    letter-spacing: 2px;
    margin-bottom: 40px;
}

h1.flow-text {
    font-size: 4em;
}

h2.flow-text {
    font-size: 3em;
}

.flow-text-small {
    font-size: 2em;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
    letter-spacing: 1px;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 800;
    text-shadow: 0 0 5px var(--secondary-color);
}

.tech-emphasis {
    color: var(--tech-emphasis);
    font-weight: 800;
    text-shadow: 0 0 5px var(--tech-emphasis);
}

.highlight-bracket {
    color: var(--tech-emphasis);
    font-weight: 600;
}
.highlight-bracket::before {
    content: '[';
    color: var(--secondary-color);
}
.highlight-bracket::after {
    content: ']';
    color: var(--secondary-color);
}

a {
    color: var(--tech-emphasis);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* ======================================================= */
/* HEADER AND NAVIGATION */
/* ======================================================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5em;
    font-weight: 900;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
}

/* Nasconde il menu a tendina su desktop */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

#mobile-menu-dropdown {
    display: none; /* Inizialmente nascosto su desktop */
}

/* Stili specifici per il menu mobile (visibili solo via JS su mobile) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    z-index: 1;
    right: 0;
    border: 1px solid var(--secondary-color);
    border-top: none;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
    background-color: rgba(255, 0, 0, 0.2);
    color: var(--tech-emphasis);
}

#dropdown-toggle {
    display: block;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#dropdown-toggle:hover {
    background-color: #cc0000;
}

/* ======================================================= */
/* MAIN SECTIONS */
/* ======================================================= */

.section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 0 10px var(--secondary-color);
}

.section-title-icon {
    height: 0.8em;
    width: 0.8em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.section p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1em;
    font-weight: 400;
}

/* ======================================================= */
/* HERO SECTION */
/* ======================================================= */

#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dragon-capital-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

/* Floating Logos (Solana & Token) */
.solana-scroller {
    position: absolute;
    width: 70px;
    height: 70px;
    opacity: 0.2;
    z-index: 10;
}

.solana-logo-scroller {
    animation: scrollRight linear infinite;
}

.token-logo-scroller {
    animation: scrollLeft linear infinite;
}

@keyframes scrollRight {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes scrollLeft {
    0% { transform: translateX(calc(100vw + 100px)); }
    100% { transform: translateX(-100px); }
}

/* ======================================================= */
/* TOKENOMICS SECTION */
/* ======================================================= */

.tokenomics-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--tech-emphasis);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    z-index: 150;
    text-align: left;
}

.tokenomics-container ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tokenomics-container li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.tokenomics-container li:last-child {
    border-bottom: none;
}

.tokenomics-item-name {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.tokenomics-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.pepe-tokenomics-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

/* ======================================================= */
/* HOW TO INVEST SECTION */
/* ======================================================= */

.investment-container {
    margin-top: 40px;
}

.pump-fun-link-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--tech-emphasis);
    border-radius: 10px;
    max-width: 650px;
    margin: 30px auto;
}

.pump-fun-icon {
    width: 40px;
    height: 40px;
}

.pump-fun-text {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--secondary-color);
}

.pump-fun-link {
    font-size: 1.3em;
    font-weight: 600;
    text-decoration: underline;
    word-break: break-all;
}

/* ======================================================= */
/* PROJECT, TEAM, CAPITAL, AI SECTIONS ICONS */
/* ======================================================= */

.pepe-yellow-project-core-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.dragon-team-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.cat-investment-icon {
    position: absolute;
    width: 120px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.dragon-ai-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}


/* ======================================================= */
/* ROADMAP SECTION */
/* ======================================================= */

#roadmap {
    position: relative;
    overflow: hidden; /* Nasconde ciò che esce dai bordi */
}

.dragon-roadmap-icon {
    position: absolute;
    width: 150px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.roadmap-swipe-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-top: -30px;
    margin-bottom: 20px;
}

.roadmap-border-wrapper {
    width: 90%;
    max-width: 1200px;
    height: var(--roadmap-height);
    margin: 50px auto;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    overflow-x: auto; /* Permette lo scroll orizzontale */
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
    cursor: grab;
}

.roadmap-border-wrapper:active {
    cursor: grabbing;
}

.roadmap-placeholder-box {
    width: calc(12 * var(--spacing-unit)); /* Larghezza totale della linea temporale */
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 0 50px;
}

.roadmap-inner-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tech-emphasis);
    box-shadow: 0 0 10px var(--tech-emphasis);
    transform: translateY(-50%);
}

.roadmap-dot {
    --dot-size: 35px; 
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 15px var(--secondary-color), inset 0 0 5px var(--text-color);
    z-index: 120;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-dot img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.roadmap-dot-red-glow {
    box-shadow: 0 0 15px var(--secondary-color), 0 0 30px var(--secondary-color), inset 0 0 5px var(--text-color);
}

.roadmap-text-container {
    position: absolute;
    left: var(--left-pos); /* Variabile definita in linea per ogni punto */
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-color);
    font-weight: 800;
    width: 180px;
    max-width: 180px;
    z-index: 130;
    pointer-events: none;
    white-space: normal;
}

.roadmap-text-container .top-text {
    position: absolute;
    bottom: calc(var(--dot-size) / 2 + 15px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 1em;
    line-height: 1.2;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

.roadmap-text-container .bottom-text {
    position: absolute;
    top: calc(var(--dot-size) / 2 + 15px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--tech-emphasis);
    font-size: 1.2em;
    line-height: 1.2;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

.roadmap-text-container .main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    line-height: 1.2;
    color: var(--tech-emphasis);
    text-shadow: 0 0 5px var(--tech-emphasis);
    white-space: nowrap;
}


/* Posizionamento specifico dei dot e testi */

.roadmap-start-dot { left: calc(0.5 * var(--spacing-unit)); }

.roadmap-pre-sale-group { left: calc(1 * var(--spacing-unit)); }
.roadmap-pre-sale-dot { left: calc(1 * var(--spacing-unit)); }

.roadmap-500-private-owners-group { left: calc(2 * var(--spacing-unit)); }
.roadmap-500-owners-dot { left: calc(2 * var(--spacing-unit)); }

.roadmap-la-office-group { left: calc(3 * var(--spacing-unit)); }
.roadmap-la-office-dot { left: calc(3 * var(--spacing-unit)); }

.roadmap-moscow-meeting-group { left: calc(4 * var(--spacing-unit)); }
.roadmap-moscow-meeting-dot { left: calc(4 * var(--spacing-unit)); }

/* Sezioni intermedie senza dot */
.roadmap-a-few-moments-later-group { 
    left: calc(5 * var(--spacing-unit)); 
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    max-width: 250px;
}

.roadmap-genesis-protocol-group { 
    left: calc(6 * var(--spacing-unit)); 
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    max-width: 250px;
}


.roadmap-public-launch-group { left: calc(7 * var(--spacing-unit)); }
.roadmap-public-launch-dot { left: calc(7 * var(--spacing-unit)); }

.roadmap-2000-public-owners-group { left: calc(8 * var(--spacing-unit)); }
.roadmap-2000-public-owners-dot { left: calc(8 * var(--spacing-unit)); }

.roadmap-dz-podcast-group { left: calc(9 * var(--spacing-unit)); }
.roadmap-dz-podcast-dot { left: calc(9 * var(--spacing-unit)); }

.roadmap-staking-concept-group { left: calc(10 * var(--spacing-unit)); }
.roadmap-staking-concept-dot { left: calc(10 * var(--spacing-unit)); }

/* Testi storici (Satoshi) */
.roadmap-2009-ac-text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translate(-50%, calc(-100% - 15px));
    font-size: 1.2em;
    font-weight: 900;
    color: var(--tech-emphasis);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    border-radius: 5px;
}

.roadmap-satoshi-nakamoto-group {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translate(-50%, calc(0% + 15px));
    text-align: center;
    font-weight: 800;
    line-height: 1.1;
}

.roadmap-satoshi-nakamoto-group span {
    display: block;
    font-size: 1.5em;
    color: var(--secondary-color);
}

.roadmap-soon-at-end {
    position: absolute;
    left: calc(11 * var(--spacing-unit));
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}

/* Stelle e Meteore */
.roadmap-star {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.2;
    pointer-events: none;
    animation: shootingStar linear infinite;
}

.small-star { width: 50px; height: 50px; opacity: 0.1; }
.medium-star { width: 65px; height: 65px; opacity: 0.15; }

@keyframes shootingStar {
    0% { transform: scale(0.5) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1) rotate(15deg); opacity: 0.5; }
    100% { transform: scale(0.5) rotate(0deg); opacity: 0.2; }
}

/* Icone Meme nella Roadmap (Sfondo) */
.roadmap-meme-icon {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 105;
}

.roadmap-meme-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roadmap-pepe-icon { 
    width: 150px; 
    height: 150px; 
    bottom: 50px; 
    left: 400px; 
    transform: rotate(-10deg);
} 
.roadmap-chillguy-icon { 
    width: 100px; 
    height: 100px; 
    bottom: 70px; 
    left: 2800px; 
    transform: rotate(5deg);
} 
.roadmap-doge-icon { 
    width: 120px; 
    height: 120px; 
    bottom: 60px; 
    left: 4800px; 
    transform: rotate(-15deg);
} 


/* ======================================================= */
/* CALL TO ACTION (CTA) SECTION */
/* ======================================================= */

.cta-section {
    padding: 80px 5%;
    background-color: rgba(255, 0, 0, 0.1);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
}

.cta-section h3 {
    font-size: 2.5em;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-button {
    background-color: var(--tech-emphasis);
    color: var(--primary-color);
    padding: 18px 30px;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--tech-emphasis);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button i {
    font-size: 1.2em;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--tech-emphasis);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--tech-emphasis);
    transform: translateY(-3px);
}


/* ======================================================= */
/* FOOTER */
/* ======================================================= */

footer {
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5em;
    margin: 0 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--tech-emphasis);
    text-shadow: 0 0 8px var(--tech-emphasis);
}

/* ======================================================= */
/* MEDIA QUERIES (MOBILE OPTIMIZATION) */
/* ======================================================= */

@media (max-width: 768px) {
    .section { padding: 80px 4% 50px; height: auto; }
    #hero { min-height: 80vh; } 
    
    .section p { font-size: 1em; max-width: 95%; }
    .section h1.flow-text { font-size: 2.5em; margin-bottom: 20px; } 
    .section h2.flow-text { font-size: 2em; margin-bottom: 20px; } 
    
    /* >>> MODIFICA RICHIESTA: INGRANDIMENTO ICONA TITOLO SEZIONE <<< */
    .section-title-icon { 
        height: 1.2em; /* Ingrandisce l'altezza */
        width: 1.2em;  /* Ingrandisce la larghezza */
        margin-right: 0.2em; 
    }
    
    header { padding: 15px 4%; }
    .logo { font-size: 1em; }
    .logo img { height: 30px; width: 30px; margin-right: 10px; }
    nav ul { display: block; }
    #mobile-menu-dropdown { display: block; } /* Mostra il menu a tendina */
    
    .dropdown-content { 
        min-width: 200px; 
        right: 4%; 
        left: auto;
    }
    .dropdown-content a { font-size: 0.85em; padding: 10px 15px; }

    /* RIDIMENSIONAMENTO E POSIZIONAMENTO ICONE (MOBILE) */
    .dragon-capital-icon, .dragon-team-icon { width: 100px; top: 10px; left: auto; right: 5%; } 
    .dragon-roadmap-icon, .dragon-ai-icon { width: 100px; top: 10px; left: 5%; } 
    .cat-investment-icon { 
        width: 70px; 
        top: 10px; 
        left: auto; 
        right: 5%; 
    } 
    .pepe-tokenomics-icon { width: 100px; top: -10px; right: 10px; left: auto; z-index: 149; } 
    .pepe-yellow-project-core-icon { width: 100px; top: 10px; left: 5%; right: auto; } 
    
    /* Regolazione animazioni per mobile */
    .solana-scroller, .token-logo-scroller { width: 50px; height: 50px; opacity: 0.5; }
    .token-logo-scroller { top: 70%; right: 5%; left: auto; } 
    .solana-scroller { top: 20%; left: 5%; } 
    
    /* Definisce animazioni più corte per mobile */
    @keyframes scrollRight {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(100vw - 50px - 8%)); } 
    }

    @keyframes scrollLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(50px + 8% - 100vw)); }
    }
    
    /* ************************************************************ */
    /* MODIFICHE SPECIFICHE PER TOKENOMICS E HOW TO INVEST (MOBILE) */
    /* ************************************************************ */
    
    .investment-container .pump-fun-link-group {
        padding: 10px; 
        gap: 5px; 
    }

    /* Allineamento al centro verticale per icona, testo e link pump.fun */
    .investment-container a.pump-fun-link {
        display: flex; 
        align-items: center; 
        white-space: nowrap; 
        font-size: 1.2em; 
    }

    .pump-fun-text {
        font-size: 1.2em; 
    }
    
    .pump-fun-icon {
        width: 30px; 
        height: 30px;
        margin: 0; 
    }
    /* ************************************************************ */
    /* FINE MODIFICHE SPECIFICHE PER TOKENOMICS E HOW TO INVEST (MOBILE) */
    /* ************************************************************ */

    /* Adattamento testi Roadmap per mobile */
    .roadmap-swipe-text { font-size: 0.9em; }
    .roadmap-border-wrapper { height: 280px; } 
    
    .roadmap-text-container { width: 150px; max-width: 150px; } 

    .roadmap-text-container .top-text,
    .roadmap-text-container .bottom-text {
        font-size: 0.8em !important; 
        white-space: normal; 
        max-width: 100%; 
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Regolazione posizionamento testi roadmap per mobile */
    .roadmap-dot { width: 30px; height: 30px; }
    .roadmap-text-container .top-text { bottom: calc(var(--dot-size) / 2 + 5px); } 
    .roadmap-text-container .bottom-text { top: calc(var(--dot-size) / 2 + 5px); } 
    
    /* Regolazione testi speciali (MOBILE) */
    .roadmap-2009-ac-text { 
        font-size: 0.9em !important;
        transform: translate(-50%, calc(-100% - 10px)); 
        left: 40px; 
    }
    .roadmap-satoshi-nakamoto-group { 
        font-size: 0.8em !important;
        transform: translate(-50%, calc(0% + 10px)); 
        left: 40px; 
    }
    .roadmap-satoshi-nakamoto-group span { font-size: 0.8em !important; }

    /* ************************************************************ */
    /* MODIFICHE ICONE MEME ROADMAP MOBILE */
    /* ************************************************************ */
    .roadmap-pepe-icon { 
        width: 120px; 
        height: 120px; 
        bottom: 110px; 
        left: 300px; 
    } 
    .roadmap-chillguy-icon { 
        width: 80px; 
        height: 80px; 
        bottom: 135px; 
        left: 2600px; 
    } 
    .roadmap-doge-icon { 
        width: 100px; 
        height: 100px; 
        bottom: 120px; 
        left: 4600px; 
    } 

    .roadmap-a-few-moments-later-group { 
        width: 180px; 
        max-width: 180px; 
        left: calc(5 * var(--spacing-unit)); /* Regolato da 6 a 5 per rientrare */
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .roadmap-a-few-moments-later-group .main-text { 
        font-size: 1.2em !important; 
        white-space: normal;
    }

    .roadmap-genesis-protocol-group {
        left: calc(6 * var(--spacing-unit)); /* Regolato da 7 a 6 per rientrare */
        top: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        max-width: 150px;
    }
    .roadmap-genesis-protocol-group .main-text { 
        font-size: 1.1em !important; 
        top: -30px; 
        white-space: normal; 
    }

    .roadmap-soon-at-end { 
        font-size: 1.8em; 
        top: 40%; 
        left: calc(12 * var(--spacing-unit) - 50px); 
        white-space: normal; 
    } 
    /* ************************************************************ */
    /* FINE MODIFICHE ROADMAP MOBILE */
    /* ************************************************************ */

    .cta-section { padding: 50px 4%; margin: 30px auto; }
    .cta-section h3 { font-size: 1.8em; margin-bottom: 20px; }
    .cta-buttons-container { flex-direction: column; gap: 15px; }
    .cta-button { padding: 15px 25px; font-size: 0.9em; }
    .cta-button i { font-size: 1em; }
    
    footer { padding: 30px 4%; }
    .social-links a { font-size: 1.2em; margin: 0 10px; }
}