:root {
    --primary-color: #C1AE83;
    --secondary-color: #D4C59B;
    --payoff-color: #E5E4E2;
    --background-color: #24272d;
    --text-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Decorative elements */
.decorative-circle-1, .decorative-circle-2 {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.decorative-circle-1 {
    background: var(--primary-color);
    width: 300px;
    height: 300px;
    top: -10%;
    left: -5%;
    animation: floatCircle 15s ease-in-out infinite alternate;
}

.decorative-circle-2 {
    background: var(--secondary-color);
    width: 400px;
    height: 400px;
    bottom: -15%;
    right: -5%;
    animation: floatCircle 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

/* Aggiungi questa regola per prevenire lo scroll orizzontale */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 0; /* Ridotto a 0 per spingere il selettore più a destra */
}

.language-selector {
    background-color: rgba(247, 231, 206, 0.15);
    border-radius: 25px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid rgba(247, 231, 206, 0.3);
    position: relative;
    margin-left: auto;
    margin-right: 0; /* Ridotto a 0 per spingerlo completamente a destra */
}

.language-selector i {
    margin-right: 8px;
    color: var(--primary-color);
}

.language-selector span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background-color: #333940;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 10px 0;
    margin-top: 5px;
    display: none;
    z-index: 10;
}

.language-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.language-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: left;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.language-option:hover {
    background-color: rgba(193, 174, 131, 0.2);
}

.language-option .flag {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.logo-container {
    margin-bottom: 2rem;
    animation: pulseLogo 2.6s ease-in-out infinite alternate;
}

@keyframes pulseLogo {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.logo {
    width: 120px;
    height: auto;
}

.brand-name {
    font-family: 'Baskervville', serif;
    font-size: 3.5rem;
    font-weight: normal; /* Modificato da bold a normal */
    color: var(--primary-color);
    letter-spacing: 6px; /* Aumentato da 4px a 6px */
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-variant: small-caps; /* Opzionale: aggiunge un tocco di eleganza */
}

.payoff-container {
    height: 30px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.payoff {
    font-family: 'Baskervville', serif;
    font-size: 1.2rem;
    color: var(--payoff-color);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.payoff.active {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Platforms */
.platforms-container {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Baskervville', serif;
    font-size: 1.5rem;
    font-weight: normal; /* Cambiato da bold/semibold a normal */
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 3px; /* Aggiunto per maggiore eleganza */
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Aggiorna gli stili per la sezione Platforms */
.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    width: 120px; /* Ridotto da 150px */
    transition: all 0.3s ease;
    border: none; /* Rimuove il bordo */
    background: transparent; /* Rimuove lo sfondo */
    position: relative;
}

.platform:hover {
    transform: translateY(-5px);
    box-shadow: none; /* Rimuove l'ombra */
    border-color: transparent; /* Rimuove il colore del bordo */
}

.platform::before {
    display: none; /* Rimuove l'effetto di sfondo al passaggio del mouse */
}

.platform-icon-container {
    width: 60px; /* Ridotto da 70px */
    height: 60px; /* Ridotto da 70px */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(193, 174, 131, 0.15), rgba(212, 197, 155, 0.05));
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.platform:hover .platform-icon-container {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(193, 174, 131, 0.3), rgba(212, 197, 155, 0.2));
}

.platform-icon-container i {
    font-size: 28px; /* Ridotto da 32px */
    color: var(--primary-color);
}

.platform-name {
    font-weight: 400; /* Ridotto da 500 */
    color: var(--text-color);
    font-size: 1rem; /* Ridotto da 1.1rem */
    letter-spacing: 0.5px;
}

/* Aggiustamenti per il responsive */
@media (max-width: 480px) {
    .platform {
        width: 100px; /* Ridotto per schermi piccoli */
        padding: 10px 5px;
    }
    
    .platform-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .platform-icon-container i {
        font-size: 24px;
    }
}

/* Account Types */
.account-types-container {
    margin-bottom: 4rem;
}

.account-types {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.account-type {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: 320px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid rgba(193, 174, 131, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.account-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(193, 174, 131, 0.1);
}

.account-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(193, 174, 131, 0.2), rgba(212, 197, 155, 0.1));
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.account-type:hover .account-icon-container {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(193, 174, 131, 0.4), rgba(212, 197, 155, 0.3));
}

.account-icon-container i {
    font-size: 24px;
    color: var(--primary-color);
}

.account-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Baskervville', serif;
    font-weight: normal; /* Cambiato da bold/semibold a normal */
    letter-spacing: 1px; /* Leggermente aumentato */
    margin: 0;
}

.account-content {
    padding: 20px;
    flex: 1;
}

.account-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.account-type:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(193, 174, 131, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.account-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.account-type:hover::after {
    transform: scaleX(1);
}

.subscribe-container {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.subscribe-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-input:focus {
    border-color: var(--primary-color);
}

.subscribe-button {
    padding: 0 25px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #4A4A4A;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 174, 131, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.3rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #4A4A4A;
    transform: translateY(-3px);
}

.footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    text-align: center;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: rgba(36, 39, 45, 0.95);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(193, 174, 131, 0.3);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 8px 16px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.9rem;
}

.accept-all {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #4A4A4A;
}

.accept-necessary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-settings {
    color: var(--primary-color);
    margin-left: 15px;
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .account-type {
        width: calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .payoff {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .platforms {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .platform {
        width: 100%;
    }
    
    .account-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .account-type {
        width: 100%;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-button {
        width: 100%;
        padding: 15px;
    }

    

    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    
    
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 15px;
    }
    
    .cookie-consent.show {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-button {
        width: 100%;
        padding: 12px;
        margin: 0;
    }

    /* Questo assicura che la notifica scompaia quando viene rimossa la classe 'show' */
    .cookie-consent:not(.show) {
        display: none;
    }
}

@media (max-width: 480px) {
    .platforms {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .platform {
        padding: 15px 10px;
    }
    
    .platform-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .platform-icon-container i {
        font-size: 24px;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
}    

/* Luxury Experiences Section */
.luxury-experiences-container {
    margin: 5rem auto 4rem;
    max-width: 1000px;
    position: relative;
}

.luxury-section-title {
    font-family: 'Baskervville', serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 3px;
    position: relative;
}

.luxury-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.luxury-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
}

.luxury-slide {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    width: 300px;
    display: flex;
    padding: 25px;
    align-items: flex-start;
    transition: all 0.4s ease;
    border: 1px solid rgba(193, 174, 131, 0.1);
    position: relative;
}

.luxury-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(193, 174, 131, 0.3);
}

.slide-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background: linear-gradient(135deg, rgba(193, 174, 131, 0.15), rgba(212, 197, 155, 0.05));
    flex-shrink: 0;
}

.slide-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.slide-content {
    flex: 1;
}

.slide-title {
    font-size: 1.1rem;
    color: var(--payoff-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.slide-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.slider-dots {
    display: none; /* Nascosto su desktop */
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(193, 174, 131, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
}

/* Preview Access Container */
.preview-access-container {
    max-width: 500px;
    margin: 2rem auto 4rem;
    text-align: center;
    position: relative;
    padding: 15px;
}

.preview-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--background-color);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.preview-title {
    font-family: 'Baskervville', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 300; /* Aggiunta questa proprietà per renderla più sottile */
}

.preview-description {
    color: var(--payoff-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.preview-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    position: relative;
    border: 1px solid rgba(193, 174, 131, 0.3);
    border-radius: 30px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.preview-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
}

.preview-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.preview-button {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
    border: none;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 30px;
    margin: 3px;
}

.preview-button:hover {
    box-shadow: 0 0 15px rgba(193, 174, 131, 0.4);
}

/* Per schermi mobili */
@media (max-width: 768px) {
    .luxury-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
        gap: 15px;
        padding: 10px 5px;
        margin: 0 -15px;
    }
    
    .luxury-slider::-webkit-scrollbar {
        display: none;
    }
    
    .luxury-slide {
        scroll-snap-align: center;
        min-width: 85%;
        width: 85%;
    }
    
    .slider-dots {
        display: flex;
    }
    
    .preview-access-container {
        padding: 0;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .preview-input {
        border-radius: 15px;
        padding: 15px;
    }
    
    .preview-button {
        border-radius: 15px;
        width: 100%;
        margin: 0;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .luxury-slide {
        min-width: 95%;
        width: 95%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .slide-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .preview-title {
        font-size: 1.5rem;
    }
    
    .preview-description {
        font-size: 0.9rem;
    }
}