html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    /* Background e Cores serão injetados pelo PHP */
}

header {
    text-align: center;
    padding: 13px 0;
}
header h1 { margin: 0; font-size: 16px; padding: 2px; }

main {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
}

.central-content {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.central-content h2 { font-size: 20px; margin-bottom: 0; }
.central-content p.subtitle { font-size: 15px; margin-bottom: 0; }

.central-content img {
    width: 200px; height: 200px;
    border-radius: 20px; object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px; font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s ease, filter 0.3s ease;
    /* Cor do botão removida daqui */
}
.cta-button:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.member-count { font-size: 16px; margin-top: 10px; font-weight: bold; }

footer {
    text-align: center; padding: 20px 0; width: 100%;
}
footer p { margin: 0; font-size: 14px; }