body,html{margin:0;padding:0;font-family:'Montserrat',sans-serif;color:#fff}body{background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url('assets/background.avif');background-attachment:fixed;background-size:cover;background-position:center;background-repeat:no-repeat}header{position:fixed;top:0;width:100%;background-color:#2b2b2b;padding:10px 0;z-index:1000;border-bottom:1px solid rgba(255,255,255,.1)}nav{display:flex;justify-content:space-between;align-items:center;width:95%;max-width:1800px;margin:0 auto;position:relative}.nav-left{flex:1;display:flex;justify-content:flex-start}.logo-img{height:50px;width:auto}.nav-center{position:absolute;left:50%;transform:translateX(-50%);display:flex;justify-content:center;align-items:center;gap:0;padding:0;margin:0;width:60%;height:60px}.nav-center li{list-style:none;flex:1;text-align:center;transition:all .5s cubic-bezier(.25,1,.5,1);display:flex;justify-content:center;align-items:center;cursor:pointer;white-space:nowrap}
.nav-center a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
}
.nav-center:hover li {
    flex: 1;
    opacity: 1;
    filter: none;
}
.nav-center li:hover {
    flex: 1;
    opacity: 1;
    filter: none;
}
.nav-center li:hover a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    animation: none;
}
#contatti {
    text-align: center;
    padding: 20px 20px 40px 20px;
    background-color: #2b2b2b;
    color: #fff;
    position: relative;
    z-index: 10;
    backdrop-filter: none;
    font-size: 1.5rem;
}
#contatti .contact-link,
#contatti .phone-number,
#contatti .privacy-link {
    color: #fff;
}
#contatti .contact-link::after {
    color: rgba(255,255,255,0.35);
}
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
}
.contact-form-container {
    flex: 1;
    min-width: 300px;
}
.form-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 25px;
    border-left: 4px solid #e50914; 
    padding-left: 15px;
    flex-wrap: wrap;
    gap: 20px;
}
.form-header-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: none; 
    border-left: none; 
    padding-left: 0;
}
.quick-contacts {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}
.contact-link, .phone-number {
    display: inline-block;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    transition: color 0.3s;
}
.contact-link:hover {
    color: #e50914;
}
.contact-link::after {
    content: '|';
    margin-left: 15px;
    color: #ccc;
}
.quick-contacts i {
    color: #e50914;
    margin-right: 5px;
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.contact-info h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0px;
    border-left: 4px solid #e50914; 
    padding-left: 15px;
}
.address-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin-bottom: 0px;
}
.privacy-link {
    display: inline-block;
    margin-top: 0px;
    color: #666;
    font-size: 0.85rem;
    text-decoration: underline;
    font-family: 'Montserrat', sans-serif;
}
.privacy-link:hover {
    color: #e50914;
}
.map-container {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #fff;
}
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box; 
}
form input:focus, form textarea:focus {
    border-color: #e50914;
    outline: none;
}
.input-group {
    display: flex;
    gap: 15px;
}
.cta-button-dark {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.cta-button-dark:hover {
    background: #e50914;
    transform: translateY(-3px);
}
footer {
    background-color: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-highlights {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 10px 18px;
    text-align: left;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.highlight-item i {
    font-size: 1rem;
    color: #e50914;
    margin-top: 2px;
}
.highlight-text h4 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.highlight-text p {
    margin: 0;
    font-size: 0.78rem;
    color: #d7d7d7;
    line-height: 1.2;
}
.footer-copy {
    width: 100%;
    text-align: center;
    margin: 6px 0 0;
}
@media (max-width: 900px) {
    .footer-highlights {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}
@media (max-width: 520px) {
    .footer-highlights {
        grid-template-columns: 1fr;
    }
}
.social-icon {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 20px;
    transition: transform 0.3s, color 0.3s;
}
.social-icon:hover {
    color: #e50914;
    transform: scale(1.2);
}
nav a { 
    text-decoration: none; 
    color: #fff; 
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    display: inline-block; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav a:hover {
    color: #e50914;
    transform: scale(1.2); 
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.6); 
}
#hero {
    height: 100vh; 
    width: 100%;  
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    text-align: center;
    background: transparent;
    padding-top: 80px;
    box-sizing: border-box;
}
#hero::after {
    content: '';
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%;
    height: 40px; 
    background-image: radial-gradient(ellipse 150% 100% at 50% 0%, transparent 50%, #f8f9fa 50.5%);
    z-index: 5;
    pointer-events: none;
}
#hero::after { display: none; }
.hero-divider-line {
    display: block;
    width: 100%;
    height: 40px;
    margin-top: -1px;
    background-color: #2b2b2b;
}
.partner-divider {
    display: block;
    width: 100%;
    height: 260px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.partner-divider path {
    fill: #2b2b2b; 
    opacity: 1; 
}
#hero h1 { 
    font-size: 6rem; 
    font-weight: 900; 
    margin-bottom: 0px; 
    text-transform: none; 
    letter-spacing: -3px; 
    line-height: 1;
    color: #fff; 
    width: 100%;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
#hero h1 sup {
    font-size: 2rem; 
    vertical-align: super; 
    position: relative;
    top: -0.5em; 
    opacity: 0.8; 
    margin-left: 0px;
    line-height: 0; 
}
#hero p { 
    font-size: 1.4rem; 
    margin-top: -15px;
    margin-bottom: 45px; 
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    position: relative; 
    left: -40px; 
}
/* =========== */
/* NUOVI BOTTONI HERO (EMAIL & WHATSAPP) */
/* =========== */
.hero-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;          
    margin-top: 30px;
    width: 100%;
    flex-wrap: wrap;    
}
#hero-contacts {
    background-color: transparent !important;
    padding: 0 !important;
    scroll-margin-top: 100px;
}
.hero-btn {
    background: #fff;
    color: #111;        
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.0rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid #fff; 
}
.hero-btn i {
    font-size: 1.4rem;
    transition: color 0.3s ease;
}
.email-btn i { color: #EA4335; } 
.email-btn:hover {
    background-color: #EA4335;  
    color: #fff;                
    border-color: #EA4335;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(234, 67, 53, 0.4); 
}
.email-btn:hover i { color: #fff; }
.whatsapp-btn i { color: #25D366; }
.whatsapp-btn:hover {
    background-color: #25D366; 
    color: #fff;               
    border-color: #25D366;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); 
}
.whatsapp-btn:hover i { color: #fff; }
#partner {
    padding: 20px 20px 60px 20px; 
    background-color: #2b2b2b; 
    text-align: center;
    color: #fff; 
    position: relative;
    z-index: 10;
}
#partner h2 {
    font-size: 2.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    color: #fff; 
    margin-bottom: 80px; 
    position: relative;
}
#partner h2::after {
    content: '';
    display: block;
    width: 60px; 
    height: 4px; 
    background-color: #e50914; 
    margin: 20px auto 0; 
    border-radius: 2px;
}
#partner img {
    max-width: 90%;
    height: auto; 
    filter: grayscale(0%); 
    opacity: 0.9; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
#partner img:hover {
    opacity: 1;  
    transform: scale(1.15); 
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}
/* ========== */
/* CERTIFICAZIONI (FUSIONE TOTALE PER LA HOME) */
/* ========== */
#certificazioni {
    padding: 40px 20px 80px 20px;
    background-color: rgba(245, 245, 245, 0.95);
    text-align: center;
    color: #333;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
    border-top: none;
    margin-top: -1px;
}
#certificazioni h3 {
    margin-bottom: 30px; 
}

.cert-fusion-box {
    display: inline-flex;  
    align-items: center;  
    justify-content: center;
    gap: 0px;  
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 20px;
    border-radius: 15px;
    background: transparent;
}
.cert-fusion-box:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    cursor: pointer;
}
.cert-fusion-box img {
    height: 100px;  
    width: auto;
    display: block;
    margin: 0;
    transition: none;
    transform: none !important;
    filter: none !important;
}
#team {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.85); 
    text-align: center;
    position: relative;
    z-index: 10;
    color: #fff;
    backdrop-filter: blur(5px);
}
#team h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#chi-siamo h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
    text-align: center;
}
#chi-siamo h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 6px;
    background: #e50914;
    margin: 20px auto 0;
    border-radius: 3px;
}
.team-container {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px; 
}
.member {
    position: relative;
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}
.member img {
    width: 180px; 
    height: 180px;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid #333; 
    margin-bottom: 20px;
    transition: all 0.6s ease;
}
.member h3 {
    margin: 15px 0 0 0; 
    color: #fff;
    font-weight: 700; 
    font-size: 1.3rem;
    transition: all 0.5s;
    white-space: nowrap;
    line-height: 1.2; 
}
.member p {
    margin: 3px 0 0 0;  
    color: #ccc; 
    font-size: 0.9rem; 
    font-weight: 400; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px; 
    transition: all 0.5s;
    opacity: 0.8; 
}
@keyframes neon-heartbeat {
    0% {
        text-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(229, 9, 20, 1), 0 0 40px rgba(229, 9, 20, 0.6);
        transform: scale(1.05); 
    }
    100% {
        text-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
        transform: scale(1);
    }
}
@keyframes white-pulse {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 0.5);
        transform: scale(1.05); 
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}
.team-description {
    max-width: 900px;
    margin: 30px auto 0; 
    text-align: center;
    padding: 0 20px; 
}
.team-description p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #ccc; 
    opacity: 0.8;  
    margin-bottom: 25px;
    font-weight: 400;
}
.team-description .main-statement {
    font-size: 1.25rem; 
    font-weight: 500;
    color: #ccc; 
    opacity: 0.8;
}
.team-description .closing-statement {
    margin-bottom: 0;
}
#servizi {
    padding-top: 60px; 
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #2b2b2b; 
    text-align: center;
    color: #fff;
    margin-top: 0; 
    position: relative;
    z-index: 8; 
}
.container-servizi {
    max-width: 1200px;
    margin: 0 auto;
}
#servizi h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
}
.red-divider {
    width: 70px;
    height: 5px;
    background: #e50914;
    margin: 0 auto 30px;
    border-radius: 2px;
}
.intro-servizi {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#servizi .intro-servizi {
    color: #d0d0d0;
}
#noleggio .intro-servizi {
    color: #1a1a1a;
}
.grid-servizi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
    text-align: left; 
    border-bottom: 3px solid transparent; 
}
.service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
    border-bottom: 3px solid #e50914; 
}
.img-wrapper {
    height: 220px;
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.service-card:hover img {
    transform: scale(1.1); 
}
.text-wrapper {
    padding: 25px;
}
.text-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
}
.text-wrapper p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    font-family: 'Arial', sans-serif; 
}
/* ===== */
/* SEZIONE NOLEGGIO (GRID STYLE) */
/* ===== */
#noleggio {
    padding: 80px 20px;
    background-color: #FFED00; 
    text-align: center;
    color: #111; 
}
#noleggio h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: 2px;
}
.rental-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 992px) {
    .rental-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 576px) {
    .rental-grid {
        grid-template-columns: 1fr; 
    }
}
.rental-item {
    text-align: center;
    transition: transform 0.3s ease;
}
.rental-item:hover {
    transform: translateY(-5px); 
}
.rental-img-box {
    width: 100%;
    height: 250px; 
    background: #f9f9f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    margin-bottom: 15px;
}
.rental-img-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain; 
}
.rental-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    margin: 0;
}
.rental-btn {
    display: inline-block;
    background-color: #111; 
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px; 
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.rental-btn:hover {
    background-color: #e50914; 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.4);
}
.rental-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; 
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.rental-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.rental-list li {
    font-weight: 600;
    color: #333;
}
.rental-list i {
    color: #e50914; 
    margin-right: 8px;
}
/* ====== */
/* 📱 MOBILE FIX - IL SALVAVITA PER TELEFONI */
/* ===== */
html, body {
    overflow-x: hidden; 
    width: 100%;
}
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    nav {
        flex-direction: column; 
        gap: 15px;
    }
    .nav-center {
        display: grid; 
        grid-template-columns: repeat(6, 1fr); 
        width: 100%;
        padding: 0 10px;
        margin-top: 5px;
        gap: 10px 0; 
        position: relative;
        left: auto;
        transform: none;
    }
    .nav-center li {
        margin: 0 !important;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-center li:nth-child(1), 
    .nav-center li:nth-child(2), 
    .nav-center li:nth-child(3)  
    {
        grid-column: span 2; 
    }
    .nav-center li:nth-child(4), 
    .nav-center li:nth-child(5)  
    {
        grid-column: span 3; 
    }
    .nav-center a {
        font-size: 0.85rem; 
        font-weight: 700;
        padding: 5px;
    }
}
@media (max-width: 768px) {
    #hero {
        padding-top: 140px !important; 
        padding-bottom: 60px;
        height: auto; 
        min-height: 100vh;
    }
    #hero h1 {
        font-size: 2.8rem; 
        line-height: 1.1;
        padding: 0 10px;
        margin-bottom: 25px !important;
    }
    #hero h1 sup {
        font-size: 1rem;
        top: -0.3em;
        line-height: 0;
    }
    #hero p {
        font-size: 1rem;
        left: 0; 
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .hero-buttons-container {
        flex-direction: column; 
        gap: 15px;
    }
    .hero-btn {
        width: 80%; 
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}
@media (max-width: 992px) {
    .team-container {
        flex-wrap: wrap; 
        gap: 40px;
        padding: 0 20px;
    }
    .member {
        flex: 1 1 100%; 
        min-width: 250px;
    }
    .member img {
        width: 150px; 
        height: 150px;
    }
}
@media (max-width: 768px) {
    #servizi, #noleggio, #partner, #chi-siamo, #certificazioni {
        padding: 40px 15px; 
    }
    #servizi h2, #noleggio h2, #chi-siamo h2, #partner h2 {
        font-size: 1.8rem; 
    }
    .intro-servizi, .rental-description, .team-description p {
        font-size: 0.95rem; 
        padding: 0 10px;
    }
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .form-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .quick-contacts {
        flex-direction: column; 
        align-items: flex-start;
        gap: 10px;
    }
    .contact-link::after {
        content: ''; 
        margin: 0;
    }
}
@media (max-width: 768px) {
    .cert-fusion-box {
        flex-direction: column; 
        gap: 20px;
    }
    .cert-fusion-box img {
        height: 60px; 
    }
    #partner img {
        max-width: 80%; 
        height: auto; 
    }
}
.trust-section {
    padding: 30px 0;
    background-color: #2b2b2b; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}
.griglia-loghi-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    gap: 30px; 
}
.semantic-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
/* =======
   COOKIE BANNER MINIMALISTA (GLASSMORPHISM)
   ======= */
.cookie-banner-minimal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.80); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 90%;
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.08); 
}
.cookie-banner-minimal p {
    font-size: 0.75rem; 
    margin: 0;
    color: #cccccc;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}
.cookie-banner-minimal p a {
    color: #e50914;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.cookie-banner-minimal p a:hover {
    color: #ffffff;
}
.cookie-banner-minimal .cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-banner-minimal button {
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
.cookie-banner-minimal .btn-accetta {
    background: #e50914;
    color: #ffffff;
}
.cookie-banner-minimal .btn-accetta:hover {
    background: #b80710;
    transform: translateY(-2px);
}
.cookie-banner-minimal .btn-rifiuta {
    background: transparent;
    color: #888888;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-banner-minimal .btn-rifiuta:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
@media (max-width: 768px) {
    .cookie-banner-minimal {
        flex-direction: column;
        border-radius: 16px; 
        bottom: 15px;
        padding: 15px;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner-minimal .cookie-buttons {
        width: 100%;
    }
    .cookie-banner-minimal button {
        flex: 1; 
        padding: 10px;
    }
}