/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #1F1F1F;
    --secondary-bg: #303030;
    --neon-green: #06B32E;
    --neon-green-glow: rgba(6, 179, 46, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #999999;
    --card-bg: rgba(48, 48, 48, 0.8);
    --border-glow: rgba(6, 179, 46, 0.5);
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* HERO Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--neon-green-glow) 0%, transparent 70%);
    opacity: 0.3;
}

/* .logo {

    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
} */

.logo-img {
    display: flex;
    align-items: center;
    margin: 0;
    height: 150px; /* Ajuste conforme necessário */
    width: auto;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-primary), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--neon-green-glow);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trader Info Section */
.trader-info-section {
    padding: 20px 0;
    background: var(--primary-bg);
}

.trader-card {
    background: var(--card-bg);
    border-radius: 20px;
    /* overflow: hidden; */
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 850px; /* Max width for the card */
    margin: 0 auto;
    box-shadow: 0 0 30px var(--neon-green-glow);
    border: 2px solid var(--border-glow);
    position: relative;
}

.trader-image-container {
    width: 100%;
    height: 70%s; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.trader-img {
   width: 100%;
    height: 100%;
    /* object-fit: contain; Alterado para 'contain' para mostrar a imagem inteira */
    /* object-position: center; Centraliza a imagem */
}

.trader-text-content {
    padding: 30px 7px 30px 7px ;
    max-width: 60%;
    text-align:center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-button-container {
    text-align: center;
    margin-top: 40px;
}

/* Botões CTA */
.cta-button {
    background: linear-gradient(45deg, var(--neon-green), #08D934);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-green-glow), 0 0 50px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--neon-green-glow), 0 0 80px rgba(255, 255, 255, 0.4);
}

.cta-button.large {
    padding: 15px 20px; /* Adjusted padding for smaller screens */
        font-size: 1rem; /* Adjusted font size for smaller screens */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Seções */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

/* Oportunidade Section */
.opportunity-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex; /* Added for better alignment */
    flex-direction: column; /* Added for better alignment */
    justify-content: center; /* Added for better alignment */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-green), transparent, var(--neon-green));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--neon-green-glow);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Como funciona Section */
.how-it-works-section {
    background: var(--primary-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin: 30px 0 20px;
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
}

.bonus-section {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.bonus-section p {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Video Section */
.video-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.video-container {
    max-width: 300px; /* Ajustado para vídeo vertical 1080x1920 */
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px var(--neon-green-glow);
    border: 3px solid var(--border-glow);
    aspect-ratio: 9/16; /* Proporção vertical 1080x1920 */
}

.realbet-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Garante que o vídeo preencha o container */
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.video-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.video-controls button:hover {
    color: var(--neon-green);
}

/* Tabela de Ganhos */
.earnings-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.earnings-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px var(--neon-green-glow);
    border: 2px solid var(--border-glow);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--neon-green);
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(6, 179, 46, 0.1);
}

.table-cell {
    text-align: center;
    font-size: 1.1rem;
}

.table-cell.highlight {
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 5px var(--neon-green-glow);
}

/* Rede Section - Conteúdo removido */
.network-section {
    padding: 0; /* Remove padding if section is empty */
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px var(--neon-green-glow);
    transform: translateY(-5px);
}

.dashboard-screenshot {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--neon-green);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.balance {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.dashboard-stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.social-proof {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-content h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 10px;
}

.time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--primary-bg);
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 179, 46, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--neon-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--text-primary), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.urgency-timer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 15px;
    display: inline-block;
}

.urgency-timer p {
    color: #ff4444;
    font-weight: 700;
    font-size: 1.1rem;
}

#timer {
    color: var(--neon-green);
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--neon-green-glow);
}

/* Popup Notification */
.notification-popup {
    position: fixed;
    bottom: 110px; /* Desktop */
    right: -350px; /* Start completely off-screen to the right (more than its width) */
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 25px var(--neon-green-glow);
    z-index: 1001; /* Ensure it's above both WhatsApp and visitor card */
    transition: right 0.5s ease, opacity 0.5s ease; /* Transition for right and opacity */
    backdrop-filter: blur(10px);
    width: 280px; /* Fixed width for desktop */
    opacity: 0; /* Hidden by default */
    pointer-events: none; /* Not clickable when hidden */
}

.notification-popup.show {
    right: 130px; /* Show at 130px from right (30px whatsapp + 70px whatsapp width + 30px margin) */
    opacity: 1; /* Fully visible */
    pointer-events: auto; /* Clickable when visible */
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-icon {
    font-size: 1.5rem;
}

.popup-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.popup-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Proof Carousel Section */
.social-proof-carousel-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 80px 0;
}

.carousel-wrapper {
    max-width: 80%; /* Ocupa até 80% da tela conforme solicitado */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 30px var(--neon-green-glow);
    border: 2px solid var(--border-glow);
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px; /* Largura fixa para cada item */
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item:last-child {
    margin-right: 0;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}
/* Indicadores do carrossel (opcional) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicator.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

/* Botões de navegação do carrossel (opcional) */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Animações */
@keyframes glow {
    from { text-shadow: 0 0 30px var(--neon-green-glow); }
    to { text-shadow: 0 0 40px var(--neon-green-glow), 0 0 50px var(--neon-green-glow); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
        .carousel-wrapper {
        max-width: 95%; /* Mais espaço no mobile */
    }
    
    .carousel-item {
        width: 250px; /* Menor no mobile */
        margin-right: 15px;
    }
    .carousel-nav {
        display: none; /* Esconde botões de navegação no mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .earnings-table {
        font-size: 0.9rem;
    }
    
    .network-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .network-visual {
        padding: 30px 10px;
        min-height: auto; /* Remove min-height para mobile */
    }

    .network-node {
        position: static;
        transform: none;
        margin: 10px auto; /* Centraliza e adiciona margem */
        width: fit-content;
    }

    .network-level {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .level-1, .level-2, .level-3 {
        top: auto;
        left: auto;
        right: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .notification-popup {
        right: 20px;
        bottom: 90px; /* Adjusted for mobile, above visitor card */
        left: 20px; /* Occupies full width with margins */
        width: auto; /* Remove fixed width for mobile */
        max-width: none; /* Remove max-width for mobile */
        padding: 15px;
    }

    .notification-popup.show {
        right: 20px; /* Show at 20px from right on mobile */
        left: 20px; /* Show at 20px from left on mobile */
    }

    .cta-button.large {
        width: 100%; /* Ocupa toda a largura */
        display: block; /* Garante quebra de linha */
        padding: 20px 35px; /* Ajusta padding */
        font-size: 1.2rem;
    }

    .trader-card {
        flex-direction:row
    }

    .trader-image-container {
        height: 100%; /* Adjust for mobile */
    }

    .trader-img {
        width: 150px;
        /* bottom: -15px; Adjust for mobile */
    }

    .video-controls {
        opacity: 1; /* Always visible on mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 15px 20px; /* Adjusted padding for smaller screens */
        font-size: 1rem; /* Adjusted font size for smaller screens */
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .network-visual {
        padding: 30px 10px;
    }
    
    .network-node {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .trader-image-container {
        height: 200px; /* Further adjust for smaller mobile */
    }

    .trader-img {
        bottom: -10px; /* Further adjust for smaller mobile */
    }
}

/* Botão WhatsApp Fixo */
.whatsapp-button {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 70px; 
    height: 70px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem; 
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none; 
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

/* Visitor Counter Card */
.visitor-counter-card {
    position: fixed;
    bottom: 45px; /* Adjusted to align with WhatsApp button */
    right: 180px; /* Positioned to the left of WhatsApp button, increased from 130px */
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 8px 12px; /* Smaller padding */
    box-shadow: 0 0 15px var(--neon-green-glow);
    z-index: 999; /* Below WhatsApp button */
    color: var(--text-primary);
    font-size: 0.75rem; /* Smaller font size */
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    width: 160px; /* Smaller width */
}

.visitor-counter-card .dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.visitor-counter-card .text {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 60px; 
        height: 60px; 
        font-size: 2.2rem; 
        bottom: 20px;
        right: 20px;
    }

    .visitor-counter-card {
        bottom: 20px; /* Same line as WhatsApp button */
        right: 90px; /* Positioned to the left of WhatsApp button */
        width: 150px; /* Smaller width for mobile */
        font-size: 0.7rem; /* Smaller font size for mobile */
        padding: 8px 12px; /* Smaller padding for mobile */
    }

    .notification-popup {
        bottom: 90px; /* Adjusted for mobile, above visitor card */
        right: 20px;
        left: 20px; /* Occupies full width with margins */
        width: auto; /* Remove fixed width for mobile */
        max-width: none; /* Remove max-width for mobile */
        padding: 15px;
    }

    .notification-popup.show {
        right: 20px; /* Show at 20px from right on mobile */
        left: 20px; /* Show at 20px from left on mobile */
    }
}


