/* Configuração Geral do Site */
body {
    background-color: #0b0c10; /* Fundo preto desportivo profundo */
    color: #ffffff; /* Letras brancas para contraste */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Barra de Topo / Cabeçalho */
header {
    background: linear-gradient(135deg, #14161d 0%, #0b0c10 100%);
    padding: 40px 20px;
    border-bottom: 3px solid #ffcc00; /* Linha Dourada Néon */
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3); /* Brilho dourado subtil */
}

header p {
    color: #ffcc00; /* Subtítulo em Dourado Néon */
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5); /* Efeito Néon */
}

/* Área Principal */
main {
    padding: 40px 20px;
}

/* Títulos das Secções */
h2 {
    color: #ffcc00;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contentor dos Cards de Prémios */
.premios-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* Design dos Cards de Prémios */
.card-premio {
    background-color: #14161d;
    border: 1px solid #232733;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.card-premio h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.card-premio p {
    margin: 5px 0;
    color: #cccccc;
    font-size: 1rem;
}

/* Destaque para a Série A (Elite) */
.card-premio.elite {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.15);
}
.card-premio.elite h3 {
    color: #ffcc00;
}

/* Secção do Botão de Ação */
.acao-container {
    margin: 50px auto;
    max-width: 500px;
}

/* O Botão Gigante Dourado Néon */
.botao-instalar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffcc00 0%, #cc9900 100%);
    color: #000000;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
}

.botao-instalar span {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.botao-instalar small {
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 0.8;
}

.aviso-vagas {
    color: #ff4444;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Secção das Regras */
.regras-container {
    max-width: 500px;
    margin: 40px auto;
    text-align: left;
    background-color: #14161d;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #232733;
}

.regras-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.regras-container li {
    margin-bottom: 12px;
    color: #dddddd;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #1f232e;
    padding-bottom: 12px;
}

.regras-container li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Rodapé */
footer {
    margin-top: 60px;
    padding: 30px 20px;
    background-color: #06070a;
    border-top: 1px solid #14161d;
    color: #666666;
    font-size: 0.85rem;
}

footer .legal {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 15px auto 0 auto;
    line-height: 1.4;
}

/* Ajuste de tamanho do logótipo no topo */
.logo-topo {
    max-width: 180px; /* Tamanho ideal e elegante para ecrãs mobile */
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Espaçamento e distinção dos botões de inscrição */
.acao-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Cria espaço entre o botão A e o botão B */
}

/* Cor ligeiramente diferente para o botão da Série B para não haver enganos */
.botao-serie-b {
    background: linear-gradient(135deg, #a0a0a0 0%, #707070 100%);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Container do Mega Botão PWA */
.pwa-container {
    margin: 30px auto 20px auto;
    max-width: 500px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* O Mega Botão de Instalação ajustado ao tamanho das séries */
.mega-botao-pwa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #ffcc00 0%, #cc9900 100%) !important;
    color: #000000 !important;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.mega-botao-pwa span {
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #000000 !important;
}

.mega-botao-pwa small {
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 0.8;
    font-weight: 600;
    color: #000000 !important;
}
