/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #000000; /* evita aloni bianchi ai bordi della pagina */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #000000; /* evita linee bianche ai margini */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-brand span {
    color: #ff0000;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000 !important;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

/* Hero background slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 0;
    transform: translateX(0);
    transition: transform 0.6s ease;
}

.hero-bg-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.85) saturate(1.05);
    transform: scale(1.08);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff0000;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
}
.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: -0.4rem 0 0.8rem;
}
.hero-keywords {
    font-size: 0.95rem;
    color: #c9c9c9;
    margin-top: 0.5rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: #ff0000;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
    background: linear-gradient(45deg, #ff4444, #ff6666);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
}

.btn-outline:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
    font-weight: 700;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #000000 !important;
}

.features .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff0000 !important;
}

.features .section-header p {
    font-size: 1.2rem;
    color: #ffffff !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1a1a1a !important;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
    border-color: #ff4444;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff0000 !important;
}

.feature-card p {
    color: #ffffff !important;
    line-height: 1.6;
}

/* Lists and links inside feature cards (guide articles) */
.feature-card ul,
.feature-card ol {
    text-align: center;
    list-style-position: inside;
    margin: 0 0 1rem 0;
    padding: 0;
    color: #ffffff !important;
}

.feature-card li {
    color: #ffffff !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.feature-card a {
    color: #ff0000;
    text-decoration: underline;
}

.feature-card a:hover {
    color: #ff4444;
}

/* Pricing Section - Updated */
.pricing {
    padding: 6rem 0;
    background: #000000 !important;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #1a1a1a !important;
    border: 3px solid #ff0000 !important;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
    border-color: #ff4444;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #ff0000;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-duration {
    color: #ff0000;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #ff0000 !important;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.one-time {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fdac08;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.savings {
    background: #e8f5e8;
    color: #28a745;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.pricing-features i {
    color: #ff0000;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #000000 !important;
}

.faq .section-header h2,
.faq .section-header p {
    color: #ffffff !important;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a !important;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff !important;
}

.faq-question i {
    color: #ffffff !important;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #ffffff !important;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #000000 !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 2rem;
    color: #ff0000;
    width: 50px;
}

.contact-method h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #ccc;
    margin: 0;
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #000000 !important;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: #ff0000;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ff0000;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff0000;
}

.footer-bottom {
    border-top: 0; /* rimuove la linea sopra il footer */
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: #fff;
}

/* Telegram Floating Button */
.telegram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.telegram-float i {
    font-size: 1.8rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .telegram-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .telegram-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4444;
}
/* Sports Section */
.sports {
    padding: 80px 0;
    background: #0b0b0b;
}

.sports .section-header h2 {
    color: #fff;
}

.sports .section-header p {
    color: #ccc;
}

/* Brand Carousel */
.brand-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #1e1e1e; /* più chiaro per contrasto */
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    padding: 16px 48px; /* spazio per le frecce */
}

.carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.carousel-slide {
    position: relative;
    flex: 0 0 220px; /* larghezza card */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222; /* più chiaro per immagini scure */
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18), rgba(255,255,255,0) 70%);
    pointer-events: none;
    border-radius: inherit;
}

.carousel-slide img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.15);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

@media (max-width: 1024px) {
    .carousel-slide { flex: 0 0 200px; height: 110px; }
}

@media (max-width: 768px) {
    .brand-carousel { padding: 12px 44px; }
    .carousel-slide { flex: 0 0 160px; height: 100px; }
}

@media (max-width: 480px) {
    .brand-carousel { padding: 10px 40px; }
    .carousel-slide { flex: 0 0 140px; height: 90px; }
}

/* fine carosello */

/* Exit Intent Modal */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.exit-intent-modal.show {
    opacity: 1;
    visibility: visible;
}

.exit-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ff0000;
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-intent-modal.show .exit-modal-content {
    transform: scale(1) translateY(0);
}

.exit-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.exit-modal-close:hover {
    color: #ff0000;
}

.exit-modal-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.exit-modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.exit-modal-subtitle {
    font-size: 1.3rem;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exit-modal-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.exit-modal-discount {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    }
}

.exit-modal-code {
    background: #333;
    color: #ff0000;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 1.1rem;
    border: 2px dashed #ff0000;
    letter-spacing: 1px;
}

.exit-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.exit-modal-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exit-modal-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.exit-modal-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #128c7e, #25d366);
}

.exit-modal-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #005999);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.exit-modal-btn.telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.6);
    background: linear-gradient(45deg, #005999, #0088cc);
}

.exit-modal-btn i {
    font-size: 1.5rem;
}

.exit-modal-timer {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

.exit-modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.exit-modal-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.exit-modal-feature i {
    color: #ff0000;
    font-size: 1.1rem;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .exit-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .exit-modal-title {
        font-size: 2rem;
    }
    
    .exit-modal-discount {
        font-size: 2.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .exit-modal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .exit-modal-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    animation: pulse 2s infinite;
}

.chat-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.chat-trigger i {
    color: white;
    font-size: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
}

.chat-popup.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px;
    position: relative;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.chat-status {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message .emoji {
    font-size: 18px;
    margin-right: 8px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-weight: 500;
}

.chat-option:hover {
    background: #e9ecef;
    border-color: #25D366;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

.chat-option.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.chat-option.telegram:hover {
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
}

.chat-option i {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
}

.chat-option.whatsapp i {
    color: #25D366;
}

.chat-option.telegram i {
    color: #0088cc;
}

.chat-option-text {
    flex: 1;
}

.chat-option-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-option-desc {
    font-size: 12px;
    color: #666;
}

/* Mobile Responsive per Chat Widget */
@media (max-width: 768px) {
    .chat-popup {
        width: 280px;
        bottom: 70px;
        right: 10px;
    }
    
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-trigger {
        width: 55px;
        height: 55px;
    }
    
    .chat-trigger i {
        font-size: 22px;
    }
}