
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: rgb(255, 255, 255);
            color: rgb(51, 51, 51);
            line-height: 1.4;
        }

        .main-app-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .brand-visual { text-align: center; margin-bottom: 40px; }
        .brand-visual img { max-width: 300px; height: auto; }

        .event-data-box {
            background: rgb(248, 248, 248);
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
            border-radius: 8px;
        }
        .event-data-box h3 { font-size: 18px; color: rgb(102, 102, 102); margin-bottom: 10px; font-weight: 400; }
        
        .event-time { font-size: 20px; font-weight: bold; color: rgb(51, 51, 51); margin-bottom: 20px; }
        .prize-label { font-size: 14px; color: rgb(102, 102, 102); margin-bottom: 5px; text-transform: uppercase; font-weight: bold; }
        
        /* Ajuste para a imagem do prêmio */
        .prize-value img { max-width: 100%; height: auto; border-radius: 0px; margin-top: 10px; box-shadow: 0 0px 0px rgba(0,0,0,0.1); }

        .sys-status { text-align: center; font-size: 24px; font-weight: bold; color: rgb(51, 51, 51); margin: 40px 0 20px; }
        .user-prompt-text { text-align: center; font-size: 16px; color: rgb(102, 102, 102); margin: 20px 0 30px; }

        .btn-primary-action {
            background: rgb(220, 20, 60);
            color: rgb(255, 255, 255);
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            border-radius: 5px;
            text-transform: uppercase;
            transition: background 0.3s;
        }
        .btn-primary-action:hover { background: rgb(185, 28, 60); }
        .btn-primary-action:disabled { background: rgb(204, 204, 204); cursor: not-allowed; }

        .loader-wrapper { display: none; text-align: center; margin: 40px 0; position: relative; }
        .loader-msg { font-size: 18px; color: rgb(51, 51, 51); font-weight: bold; margin-bottom: 20px; min-height: 50px; }
        
        .track-bg {
            background: rgb(233, 236, 239);
            border-radius: 15px;
            height: 20px;
            margin: 0 auto;
            max-width: 400px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }
        .track-fill {
            height: 100%;
            background: linear-gradient(90deg, rgb(220, 20, 60), rgb(255, 68, 68));
            transition: width 0.1s ease;
            border-radius: 15px;
            width: 0;
        }

        .orb-grid { display: flex; justify-content: center; gap: 8px; margin: 40px 0; flex-wrap: nowrap; }
        .orb-element {
            display: flex;
            flex: 1 0 3rem;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 3rem;
            height: 3rem;
            aspect-ratio: 1;
            border-radius: 100%;
            border: solid 1px rgb(102, 102, 102);
            padding: 0;
            font-weight: 700;
            text-align: center;
            color: rgb(16, 24, 32);
            font-size: 1.25rem;
            transition: all 0.5s ease;
        }
        .orb-element.concealed { background: rgb(51, 51, 51); color: rgb(153, 153, 153); border-color: rgb(85, 85, 85); }
        .orb-element.displayed {
            background: radial-gradient(circle at 50% 25%, rgb(255, 255, 255), rgb(187, 187, 187));
            border: solid 1px rgb(210, 210, 210);
            perspective: 600px;
            perspective-origin: 50% 50%;
            color: rgb(16, 24, 32);
            animation: orbPop 0.6s ease-out;
        }
        .orb-element.special-orb, .orb-element.special-orb.concealed {
            background: rgb(220, 20, 60);
            color: rgb(255, 255, 255);
            border-color: rgb(220, 20, 60);
        }

        @keyframes orbPop {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        .modal-bg-screen {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .modal-content-box {
            background: rgb(255, 255, 255);
            padding: 40px;
            max-width: 500px;
            margin: 20px;
            text-align: center;
            border-radius: 8px;
            overflow: auto;
            max-height: 90vh;
        }
        .modal-content-box h2 { color: rgb(51, 51, 51); font-size: 22px; font-weight: bold; margin-bottom: 20px; }
        .modal-content-box p { font-size: 16px; color: rgb(102, 102, 102); margin: 15px 0; line-height: 1.5; }
        .btn-link-action {
            background: rgb(220, 20, 60);
            color: rgb(255, 255, 255);
            text-decoration: none;
            display: inline-block;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            margin: 25px 0;
            border-radius: 5px;
            text-transform: uppercase;
            transition: background 0.3s;
        }
        .btn-link-action:hover { background: rgb(185, 28, 60); }
        .alert-text { color: rgb(0, 0, 0); font-weight: bold; font-size: 14px; margin: 20px 0; }
        .alert-text b { color: rgb(220, 20, 60); }
        .countdown-block { margin: 20px 0; }
        .clock-val { font-size: 24px; font-weight: bold; color: rgb(220, 20, 60); margin: 10px 0; }

        /* Legal Footer Styles */
        .legal-footer-area {
            max-width: 600px;
            margin: 40px auto 20px;
            padding: 20px 20px 0;
            text-align: center;
            font-size: 12px;
            color: rgb(153, 153, 153);
            line-height: 1.6;
            border-top: 1px solid rgb(238, 238, 238);
        }
        .nav-links-bottom { margin-bottom: 10px; }
        .nav-links-bottom a { margin: 0 5px; text-decoration: none; }

        @media(max-width: 768px) {
            .main-app-content { padding: 20px 15px; }
            .orb-element { flex: 1 0 2.5rem; max-width: 2.5rem; height: 2.5rem; font-size: 1rem; }
            .modal-content-box { padding: 25px; margin: 15px; }
        }
        @media(max-width: 480px) {
            .orb-element { flex: 1 0 2rem; max-width: 2rem; height: 2rem; font-size: 0.9rem; }
        }
        /* Limita o tamanho da imagem do prémio */
#jackpotVal img {
    max-width: 100px; /* Altere este valor para o tamanho máximo que deseja (ex: 300px, 400px) */
    width: 100%;     /* Garante que ela ocupe até 100% do espaço disponível se o ecrã for pequeno */
    height: auto;    /* Mantém a proporção correta para não "achatar" a imagem */
    display: block;  /* Remove espaços vazios indesejados abaixo da imagem */
    margin: 2px auto; /* Centraliza a imagem e adiciona um espaço em cima/baixo */
}
        
    