            :root {
            --primary-white:#121212;
            --dark-blue: #121212;
            --light-blue: #121212;
            --accent-yellow: #121212;
            --success-green: #121212;
            --mobile-padding: clamp(12px, 4vw, 24px);
            --mobile-gap: clamp(8px, 2vw, 16px);
            --wc-color: 19,182,203; /* #FBC600 em RGB */
  --wc-bg-alpha: .16;     /* opacidade do fundo do cartão */
  --wc-bd-alpha: .55;     /* opacidade da borda */
  --wc-blur: 18px;        /* desfoque do vidro */
  --wc-aura: .28;         /* força base da aura */
  --wc-aura-hover: .42;   /* força no hover (não exagerado) */
  --wc-shadow: .35;
        }


/* Desktop – mantém */
body{
  font-family:'Inter',sans-serif;
  background:#012427 url("/img/bg-desktop.jpg") center top / cover no-repeat fixed;
  padding-bottom:60px;
}
@media (min-width:768px){
  body{ padding-bottom:0; }
}

/* Mobile – fundo fixo 100% largura, sem “expansão” ao rolar */
@media (max-width:768px){
  /* não puxa bg no body; evita grudar no scroll */
  body{
    background:none !important;
    margin:0; /* por via das dúvidas */
  }
  html{ background:#00D4E7; }

  body::before{
    content:"";
    position:fixed;
    top:0;
    left:50%;                /* trava no centro */
    width:100vw;             /* 100% da viewport sempre */
    transform:translateX(-50%);
    /* altura estável no mobile */
    height:100vh;            /* fallback */
    height:100svh;           /* área visível */
    height:100lvh;           /* altura grande qdo barra some */
    z-index:-1;
    pointer-events:none;

    background:#00D4E7 url("/img/bg-ceu-mobile.jpg") center top / cover no-repeat;

    /* remova aceleração aqui pra não “estourar” no iOS */
    will-change:auto;
  }
}







        .money {
    background-color: #091011   ;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}
.money span {
    white-space: nowrap;
}


        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image {
            height: 3.5rem;
            width: auto;
            object-fit: contain;
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .logo-image {
                height: 2rem;
            }
        }

        /* Enhanced Section Header */
        .section-header {
            position: relative;
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #FBC600, #10b981, #059669);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
    background-image: linear-gradient(90deg, #fbcd00, #fda600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            color: #e2e8f0;
            font-weight: 500;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
            }
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 3s ease-in-out infinite;
        }

        /* Bottom Navigation for Mobile */
        .bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        @media (min-width: 768px) {
            .bottom-navbar {
                display: none;
            }
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 6px 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 45px;
        }

        .nav-item:hover {
            background: rgba(114, 87, 180, 0.1);
            transform: translateY(-1px);
        }

        .nav-item.active {
            background: linear-gradient(135deg, var(--primary-white), var(--light-blue));
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(114, 87, 180, 0.3);
        }

        /* Central highlighted button */
        .nav-item.central-button {
            background: linear-gradient(135deg, #6876df, #7257b4);
            color: white;
            border-radius: 12px;
            padding: 8px 12px;
            min-width: 55px;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(104, 118, 223, 0.4);
        }

        .nav-item.central-button:hover {
            background: linear-gradient(135deg, #7257b4, #6876df);
            transform: translateY(-6px);
            box-shadow: 0 8px 25px rgba(104, 118, 223, 0.5);
        }

        .nav-item.central-button i {
            color: white;
            font-size: 18px;
        }

        .nav-item.central-button span {
            color: white;
            font-weight: 600;
        }

        .nav-item i {
            font-size: 16px;
            margin-bottom: 2px;
            color: #666;
            transition: all 0.3s ease;
        }

        .nav-item.active i {
            color: white;
        }

        .nav-item span {
            font-size: 8px;
            font-weight: 500;
            color: #666;
            transition: all 0.3s ease;
        }

        .nav-item.active span {
            color: white;
        }

        /* Desktop Navigation */
        .desktop-nav {
            background: #0000004d;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            position: relative;
            z-index: 999;
        }

        /* Mobile Top Navigation - Only show buttons on mobile */
        @media (max-width: 767px) {
            .desktop-nav {
                display: block;
                padding: 0.75rem 0;
            }
            .desktop-nav .max-w-6xl {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .desktop-nav .flex.gap-8 {
                display: none; /* Hide navigation links on mobile */
            }
            .desktop-nav .flex.gap-3 {
                display: none; /* Hide desktop buttons on mobile */
            }
            .mobile-auth-buttons {
                display: flex;
                gap: 0.5rem;
                align-items: center;
            }
            .mobile-auth-buttons button {
                font-size: 0.75rem;
                padding: 0.5rem 0.75rem;
                border-radius: 0.5rem;
                transition: all 0.3s ease;
                font-weight: 500;
            }
            .mobile-btn-login {
                color: white;
                border: 1px solid rgba(255, 255, 255, 0.8);
                background: transparent;
            }
            .mobile-btn-login:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: var(--primary-white);
            }
            .mobile-btn-register {
                    background-image: linear-gradient(90deg, #fbcd00, #fda600);;
                color: white;
                border: none;
            }
            .mobile-btn-register:hover {
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
            }
            .mobile-user-info {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                font-size: 0.75rem;
            }
            .mobile-saldo-display {
                    background-image: linear-gradient(90deg, #fbcd00, #fda600);;
                color: white;
                padding: 0.5rem 0.75rem;
                border-radius: 0.5rem;
                font-weight: 700;
                font-size: 0.75rem;
                box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
                white-space: nowrap;
            }
            .mobile-depositar-btn {
                    background-image: linear-gradient(90deg, #fbcd00, #fda600);;
                color: white;
                padding: 0.5rem 0.75rem;
                border-radius: 0.5rem;
                font-weight: 700;
                font-size: 0.75rem;
                border: none;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
                touch-action: manipulation;
                white-space: nowrap;
            }
            .mobile-depositar-btn:active {
                transform: scale(0.95);
            }
            .mobile-depositar-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
            }
        }

        @media (min-width: 768px) {
            .mobile-auth-buttons {
                display: none;
            }
            .mobile-user-info {
                display: none;
            }
        }

        /* Carousel Styles - UPDATED FOR LARGER PC SIZE WITH ROUNDED BORDERS */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100px; /* Tamanho pequeno para mobile por padrão */
            overflow: hidden;
            border-radius: 0.5rem; /* Bordas pequenas para mobile */
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .carousel-container {
                min-height: 450px; /* AINDA MAIOR para desktop - era 230px */
                max-width: 1200px;
                border-radius: 2rem; /* Bordas bem arredondadas para PC */
                /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); Sombra elegante */
            }
        }

        @media (max-width: 767px) {
            .carousel-container {
                height: 220px; /* Mantém pequeno no mobile */
                max-width: 100%;
                border-radius: 0.75rem; /* Bordas menores para mobile */
            }
        }





        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .carousel-content {
            max-width: 600px;
            padding: 0.5rem; /* Menor para mobile */
        }

        @media (min-width: 768px) {
            .carousel-content {
                padding: 2rem; /* Maior para desktop */
            }
        }

        .carousel-indicators {
            position: absolute;
            bottom: 10px; /* Pequeno para mobile */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        @media (min-width: 768px) {
            .carousel-indicators {
                bottom: 30px; /* Maior para desktop - era 20px */
                gap: 15px; /* Gap maior */
            }
        }

        .indicator {
            width: 10px; /* Pequeno para mobile */
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .indicator {
                width: 16px; /* Maior para desktop - era 12px */
                height: 16px;
            }
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-white), var(--light-blue));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-primary {
                background-image: linear-gradient(90deg, #fbcd00, #fda600);
;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px #FBC60030;
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
        }

        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(114, 87, 180, 0.3);
        }

        .stats-counter {
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes slide-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-slide-up {
            animation: slide-up 0.20s ease-out forwards;
        }

        /* NOVO: Título Destaques */
        .destaques-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding: 0 var(--mobile-padding);
        }

        .destaques-title {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 500;
            color: #0c0c0c;
            margin: 0;
            line-height: 1;
        }

        .destaques-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #B61D20;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .destaques-icon {
                width: 2rem;
                height: 2rem;
            }
        }

 /* Card raspadinha com imagem full width em cima e gradiente embaixo */
.raspadinha-card {
    background-color: #091011;
    backdrop-filter: blur(20px);
    border-radius: clamp(14px, 3vw, 20px);
    overflow: hidden;
    border: 1px solid #FBC600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    touch-action: manipulation;
    display: flex;
    flex-direction: column;
}

/* Imagem de capa */
.raspadinha-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Badge no canto superior direito */
.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0155E1; /* exemplo */
    color: #fff;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}


/* Parte inferior com gradiente */
.raspadinha-card-content {
    /* background: linear-gradient(0deg, #0155E1 0%, #0155E1 60%); */
    padding: clamp(16px, 4vw, 20px);
    color: white;
    flex: 1;
}

/* Textos e botões dentro do conteúdo */
.raspadinha-card-content .prize-text {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: clamp(16px, 4vw, 24px);
}

.raspadinha-card-content .price-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0155E1;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.raspadinha-card-content .game-description {
    color:white;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.raspadinha-card-content .play-button {
    display: inline-block;
    padding: 10px 16px;
    background-image: linear-gradient(90deg, #fbcd00, #fda600);
    color: #091011;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.6s ease;
}

.raspadinha-card-content .play-button:hover {
    background: #e6e6e6;
}

/* Hover no card */
.raspadinha-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0155E1; /* Cor fixa */
    color: #fff;      /* Texto */
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

/* Se quiser manter as classes mas com a mesma cor */
.price-badge.green,
.price-badge.orange,
.price-badge.red {
    background: #FFB258 !important;
    color: #08191E !important;
}

        .prize-text {
            color: #FEB700;
            font-weight: 400;
            font-size: clamp(0.75rem, 3.5vw, 1.3rem);
            margin-bottom: clamp(16px, 4vw, 24px);
            line-height: 1.3;
        }

        .game-description {
            color: white;
            font-size: clamp(16px, 2.5vw, 1rem);
            text-transform: capitalize;
            font-weight: 600;
            line-height: 1.4;
            opacity: 0.9;
        }

        .play-button {
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
            color: white;
            font-weight: 800;
            padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 28px);
            border-radius: clamp(16px, 4vw, 24px);
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            touch-action: manipulation;
            width: 100%;
            text-align: center;
        }

        .play-button:active {
            transform: scale(0.95);
        }

        .play-button:hover {
            transform: translateY(-3px);
        }

        .play-button.login-required {
            background: linear-gradient(135deg, #fbc9007e 0%, #fda90060 100%);
        }

        .play-button.login-required:hover {
        }

        /* Ultra Compact Modal Styles */
        .modal-compact {
            max-width: 320px;
            padding: 1rem;
        }

        .modal-compact .form-input {
            padding: 0.5rem;
            font-size: 0.8rem;
        }

        .modal-compact .form-button {
            padding: 0.6rem 0.8rem;
            font-size: 0.8rem;
        }

        .modal-compact .modal-header {
            margin-bottom: 0.75rem;
        }

        .modal-compact .modal-header h2 {
            font-size: 1.25rem;
        }

        .modal-compact .modal-header p {
            font-size: 0.75rem;
        }

        .modal-compact .modal-header .w-12 {
            width: 2.5rem;
            height: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .modal-compact .space-y-3 > * + * {
            margin-top: 0.5rem;
        }

        .modal-compact label {
            font-size: 0.7rem;
            margin-bottom: 0.25rem;
        }

        .modal-compact .text-xs {
            font-size: 0.65rem;
        }

        /* Improved Grid Layout for Mobile */
        .raspadinha-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(16px, 4vw, 24px);
            padding: 0 var(--mobile-padding);
        }

        @media (max-width: 640px) {
            .raspadinha-grid {
                grid-template-columns: 1fr;
                gap: clamp(12px, 3vw, 18px);
            }
        }

        /* LIVE WINNERS SECTION - Layout horizontal sempre */
        .live-winners-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            /* background: #0155E1; */
            padding: 12px;
            border-radius:16px;
        }
        /* 1) Deixe o brilho “vazar” verticalmente */
.live-winners-section{
  position: relative;
  overflow: visible;                 /* não corta o glow vertical */
}

/* o container do carrossel quase sempre usa overflow hidden pra mascarar a rolagem.
   Aqui mascaramos só no eixo X (continua escondendo as bordas da esteira),
   e liberamos no eixo Y (o brilho sobe/desce fora do card sem ser cortado) */
.winners-carousel-container{
  overflow-x: hidden;
  overflow-y: visible;
}

/* algumas libs usam um wrapper extra; garanta que ele também não corte o brilho vertical */
.winners-carousel{
  overflow-y: visible;
}

/* 2) garanta que o brilho fique acima do fundo da seção */
.winner-card{
  position: relative;
  z-index: 1;                        /* sobe a camada do card e dos ::before/::after */
}

/* 3) (opcional – suporte moderno) ajuda quando alguém ainda corta com overflow hidden */
.winners-carousel-container{
  overflow-clip-margin: 24px;        /* Chromium/Safari: permite “pintar” um pouco fora */
}

        .live-winners-title {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .live-winners-carousel {
            flex: 1;
            min-width: 0;
             overflow-x: hidden !important;
            overflow-y: visible !important;
            overflow-clip-margin: 24px;

            
        }

        /* WINNERS CAROUSEL - COMPLETAMENTE REFEITO PARA MOBILE */
        .winners-carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
            -webkit-mask: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
        }

        .winners-carousel {
            display: flex;
            width: max-content;
        }

        /* MOBILE: Mostra apenas 1.5 cards por vez */
        @media (max-width: 768px) {
            .winners-carousel {
                gap: 16px;
                animation: scroll-mobile-smooth 25s linear infinite;
            }
                        
            .winner-card {
                min-width: 200px;
                max-width: 200px;
                flex-shrink: 0;
            }
                        
            .winners-carousel-container {
                width: 100%;
                max-width: 320px; /* Limita para mostrar ~1.5 cards */
            }
        }

        /* DESKTOP: Mostra múltiplos cards */
        @media (min-width: 769px) {
            .winners-carousel {
                gap: 12px;
                animation: scroll-desktop-smooth 30s linear infinite;
                
            }
                        
            .winner-card {
                min-width: 180px;
                max-width: 180px;
                flex-shrink: 0;
            }
                        
            .winners-carousel-container {
                width: 100%;
            }
        }

        /* Animações otimizadas */
        @keyframes scroll-mobile-smooth {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-216px * 7)); /* 200px + 16px gap = 216px por card */
            }
        }

        @keyframes scroll-desktop-smooth {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-192px * 7)); /* 180px + 12px gap = 192px por card */
            }
        }

        /* WINNER CARD - Melhorado para mobile */
        /* .winner-card {
            cursor: pointer;
            user-select: none;
            background-color: #FBC600d3;
            border: 1px solid #ffffff80;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .winner-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background-color: #1494a5ff;
            border-color: #adeaff;
        } */



    

.winner-card{
  position: relative;
  isolation: isolate;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border-radius: 1.25rem;

  /* Vidro azul claro + leves brilhos cruzados */
     background-image: linear-gradient(90deg, #fffbeda4, #ffffe991);


  border: 1px solid #FDA800;
  backdrop-filter: blur(var(--wc-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--wc-blur)) saturate(140%);

  /* box-shadow:
    0 12px 28px rgba(19,182,203, var(--wc-shadow)),
    0 6px 18px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 16px rgba(255,255,255,.10); */

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  overflow: visible;
}

/* Aura suave ao redor (não estourada) */
.winner-card::before{
  content:"";
  position:absolute;
  inset:-12px;                 
  border-radius:inherit;
  pointer-events:none;
  opacity: var(--wc-aura);
  filter: blur(22px);
  background:
    radial-gradient(130px 90px at 20% 20%, rgba(var(--wc-color), .28), transparent 60%),
    radial-gradient(120px 100px at 80% 85%, rgba(var(--wc-color), .18), transparent 65%),
    radial-gradient(140px 110px at 60% 50%, rgba(255,255,255,.14), transparent 70%);
}

/* Interação sem exagero */
.winner-card:hover{
  transform: translateY(-4px);

}
.winner-card:hover::before{ opacity: var(--wc-aura-hover); }

/* Toque/teclado */
.winner-card:active{ transform: translateY(-1px) scale(.99); }
.winner-card:focus-visible{
  outline: 2px solid rgba(var(--wc-color), .85);
  outline-offset: 3px;
  box-shadow:
    0 0 0 6px rgba(19,182,203,.28),
    0 14px 34px rgba(19,182,203,.5);
}

/* Imagem com sombra sutil */
/* .winner-card img{
  border-radius:.5rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
  transition: transform .25s ease, filter .25s ease, opacity .25s ease; } */
.winner-card:hover img{
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

              






        /* Pause animation on hover */
        .winners-carousel-container:hover .winners-carousel {
            animation-play-state: paused;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .winner-card {
                padding: 0.75rem;
                gap: 0.5rem;
            }
                        
            .winner-card img {
                width: 2rem;
                height: 2rem;
                flex-shrink: 0;
            }
                        
            .winner-card .text-xs {
                font-size: 0.7rem;
                line-height: 1.2;
            }
                        
            .winner-card .font-semibold {
                font-size: 0.75rem;
                font-weight: 700;
            }
        }

        @media (min-width: 769px) {
            .winner-card {
                padding: 0.75rem;
                gap: 0.75rem;

            }
                        
            .winner-card img {
                width: 2rem;
                height: 2rem;
                flex-shrink: 0;
            }
                        
            .winner-card .text-xs {
                font-size: 0.75rem;
                line-height: 1.3;
            }
        }

        /* Garantir que o texto não quebre */
        .winner-card .text-ellipsis {
            max-width: 120px;
        }

        @media (max-width: 768px) {
            .winner-card .text-ellipsis {
                max-width: 100px;
            }
        }

        /* NOVO FOOTER STYLES - Baseado na imagem */
        .footer-new {
            background: #0000004d;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* MOBILE: Layout específico conforme a imagem */
@media (max-width: 768px) {
    .footer-content {
        display: block;
        padding: 0 1.5rem;
        text-align: left;
    }
    
    .footer-logo-section {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .footer-links-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
}

.footer-links-container {
    display: contents;
}

@media (max-width: 768px) {
    .footer-links-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .footer-links-section {
        align-items: flex-start;
    }
    
    .footer-links-list {
        align-items: flex-start;
    }
}

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .footer-logo {
                justify-content: flex-start;
                margin-bottom: 1rem;
            }
        }

        .footer-logo-image {
            height: 3rem;
            width: auto;
            object-fit: contain;
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }

        .footer-logo-image:hover {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .footer-logo-image {
                height: 2.5rem;
            }
        }

        .footer-copyright {
            color: #e2e8f0;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .footer-disclaimer {
            color: #ffffff;
            font-size: 0.8rem;
            line-height: 1.4;
            max-width: 400px;
        }

        .footer-links-section {
            display: flex;
            flex-direction: column;
        }

        .footer-links-title {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link {
            color: #ffffff;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #e2e2e2;
        }

        @media (max-width: 768px) {
            .footer-links-section {
                align-items: flex-start;
            }
            
            .footer-links-list {
                align-items: flex-start;
            }
        }
        /* PATCH: deixe o brilho dos winner-cards sair do container */

/* 1) O wrapper que você usa para a esteira dos cards
   precisa permitir overflow vertical (mas manter o X cortado) */
.live-winners-carousel {
  overflow: visible !important; /* antes estava hidden */
}

/* 2) Você tem duas regras para .winners-carousel-container.
   Garanta que a FINAL fique assim: */
.winners-carousel-container {
  overflow-x: hidden !important;   /* mantém a “esteira” limpa nas laterais */
    /* libera o brilho para “vazar” pra cima/baixo */

  /* mantém a máscara horizontal que você já usa */
  mask: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent) !important;
  -webkit-mask: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent) !important;

  /* ajuda no Chrome/Safari quando algum ancestor ainda clipa */
  overflow-clip-margin: 24px;
}

/* 3) Garante que o pseudo-brilho do card pinte acima dos backgrounds */
.winner-card {
  position: relative;
  isolation: isolate; /* você já usa; reforço aqui para ganhar do cascade */
  z-index: 1;
}
html, body {
  /* touch-action: manipulation;   permite tap/scroll, evita double-tap-zoom */
}

/* Fixes para permitir seleção/cópia em iOS / webviews e esconder a textarea de fallback */
#qrCopyBtn, #pixPlainArea {
  -webkit-touch-callout: default !important;
  -webkit-user-select: text !important;
  user-select: text !important;
  pointer-events: auto !important;
}
#pixPlainArea { display: none; width: 100%; box-sizing: border-box; margin-bottom: 0.5rem; }
