/* assets/style.css - Estilos gerais do sistema de sorteios SAFE */

:root {
    --bg: #050816;
    --bg-card: rgba(15,23,42,0.95);
    --bg-card-soft: rgba(15,23,42,0.85);
    --accent: #ff8600;
    --accent-soft: rgba(255,134,0,0.15);
    --accent-strong: #ffb347;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border: rgba(148,163,184,0.35);
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #eab308;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-pill: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Exo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
    color: var(--text);
}

body {
    display: block;
}

.page-wrapper {
    width: 100%;
        padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Header */

.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.site-logo {
    width: 78px;
    height: 78px;
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
    border: 2px solid var(--accent-soft);
    object-fit: cover;
    background: radial-gradient(circle at 30% 30%, #fff 0, #f97316 18%, #020617 65%);
}

.header-text {
    min-width: 0;
}

.site-title {
    margin: 0 0 0.35rem;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--accent-strong));
    -webkit-background-clip: text;
    color: transparent;
}

.header-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}


.site-header-with-menu {
    flex-direction: column;
    align-items: stretch;
}







@media (max-width: 640px) {
    
}



.profile-box {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(255,134,0,0.25), rgba(15,23,42,0.95));
    border: 1px solid rgba(251,191,36,0.25);
    max-width: 580px;
}

.profile-photo {
    width: 46px;
    height: 46px;
    border-radius: 1.1rem;
    object-fit: cover;
    border: 2px solid rgba(248,250,252,0.9);
    box-shadow: 0 0 0 1px rgba(15,23,42,0.7);
    background: #020617;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.profile-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Content */

.content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    text-align: center;
}

/* Cards / layout */

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    width: 100%;
}

.card-narrow {
    max-width: 420px;
    margin: 0 auto;
}

.card-full {
    width: 100%;
}

/* Raffle public cards */

.raffle-card {
    background: radial-gradient(circle at top left, rgba(255,134,0,0.08), rgba(15,23,42,0.9));
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.3rem 1.4rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.4);
    width: 100%;
}

.raffle-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.raffle-card h2 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.raffle-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.raffle-description {
    margin: 0.15rem 0 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Prizes */

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.9rem;
}

.prize-card {
    background: rgba(15,23,42,0.96);
    border-radius: var(--radius-md);
    padding: 0.9rem 0.95rem 1rem;
    border: 1px solid rgba(75,85,99,0.9);
    box-shadow: 0 10px 28px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.prize-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prize-position {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(to right, rgba(255,134,0,0.13), rgba(37,99,235,0.15));
    color: var(--accent-strong);
    border: 1px solid rgba(252,211,77,0.4);
}

.prize-title {
    margin: 0.1rem 0 0;
    font-size: 0.98rem;
    font-weight: 600;
}

.prize-value {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Winner box */

.winner-box {
    margin-top: 0.4rem;
    padding: 0.45rem 0.6rem;
    border-radius: 0.9rem;
    background: radial-gradient(circle at left, rgba(22,163,74,0.25), rgba(15,23,42,0.9));
    border: 1px solid rgba(34,197,94,0.35);
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
}

.winner-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(187,247,208,0.85);
}

.winner-label.pending {
    color: rgba(248,250,252,0.78);
}

.winner-name {
    font-weight: 600;
    font-size: 0.96rem;
}

/* Reactions */

.reactions-section {
    margin-top: 0.6rem;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(55,65,81,0.9);
}

.reactions-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.45rem;
}

.reaction-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.78rem;
    padding: 0.14rem 0.5rem;
    border-radius: var(--radius-pill);
    background: rgba(31,41,55,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.reaction-pill.empty {
    border-style: dashed;
    color: var(--text-muted);
    background: transparent;
}

.reaction-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reaction-fields {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

/* Forms & inputs */

.form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-inline {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.6rem;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.input, textarea.input {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(55,65,81,0.9);
    background: rgba(15,23,42,0.92);
    color: var(--text);
    font-size: 0.85rem;
    outline: none;
}

.input:focus, textarea.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(248,250,252,0.06);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.65);
}

.btn-primary {
    background: linear-gradient(to right, var(--accent), #f97316);
    color: #111827;
    box-shadow: 0 12px 28px rgba(248,113,22,0.65);
    border: 1px solid rgba(251,191,36,0.65);
}

.btn-secondary {
    background: rgba(15,23,42,0.9);
    color: var(--accent-strong);
    border: 1px solid rgba(249,115,22,0.7);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(75,85,99,0.9);
}

.btn-instagram {
    background: radial-gradient(circle at 5% 0, #fdf497 0, #fd5949 35%, #d6249f 60%, #285AEB 100%);
    color: #f9fafb;
    border: 1px solid rgba(251,191,36,0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ecfdf5;
    border: 1px solid rgba(34,197,94,0.8);
}

.btn-reaction {
    padding-inline: 0.85rem;
}

.btn-xs {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

/* Tables */

.table-wrapper {
    max-height: 360px;
    overflow: auto;
    border-radius: 0.9rem;
    border: 1px solid rgba(31,41,55,0.95);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.table th,
.table td {
    padding: 0.45rem 0.6rem;
    border-bottom: 1px solid rgba(31,41,55,0.95);
}

.table th {
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    background: rgba(15,23,42,0.98);
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Badges & alerts */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.badge-success {
    background: rgba(22,163,74,0.16);
    color: #bbf7d0;
    border: 1px solid rgba(34,197,94,0.6);
}

.badge-danger {
    background: rgba(239,68,68,0.14);
    color: #fecaca;
    border: 1px solid rgba(248,113,113,0.7);
}

.badge-warning {
    background: rgba(234,179,8,0.18);
    color: #fef9c3;
    border: 1px solid rgba(234,179,8,0.7);
}

.alert {
    padding: 0.55rem 0.75rem;
    border-radius: 0.8rem;
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
}

.alert-success {
    background: rgba(22,163,74,0.15);
    border: 1px solid rgba(34,197,94,0.7);
    color: #bbf7d0;
}

.alert-error {
    background: rgba(239,68,68,0.16);
    border: 1px solid rgba(248,113,113,0.8);
    color: #fecaca;
}

/* Admin layout */

.admin-body .content {
    margin-top: 0.4rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 1rem;
}

.raffle-admin-block {
    margin-bottom: 1rem;
}

.raffle-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.prize-admin-list {
    margin-top: 0.4rem;
}

.prize-admin-form {
    margin-bottom: 0.6rem;
}

.inline-form {
    display: inline-block;
    margin: 0;
}

/* Footer */

.site-footer {
    margin-top: 1.3rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(31,41,55,0.95);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
}

.footer-dev a {
    color: var(--accent-strong);
    text-decoration: none;
}

.footer-dev a:hover {
    text-decoration: underline;
}

/* Misc */

.divider {
    border: none;
    border-top: 1px dashed rgba(51,65,85,0.85);
    margin: 0.8rem 0;
}

.divider-strong {
    border-top-style: solid;
    border-top-color: rgba(30,64,175,0.8);
    margin-top: 1.05rem;
}

/* Responsive */

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .admin-menu {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .page-wrapper {
        padding: 1rem;
    }

    .prizes-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .reaction-fields {
        flex-direction: column;
    }
}


.header-adm {
    position: absolute;
    top: 18px;
    right: 18px;
}

.btn-adm {
    font-size: 0.70rem;
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(15,23,42,0.7);
    color: rgba(148,163,184,0.8);
    border: 1px solid rgba(148,163,184,0.35);
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.btn-adm:hover {
    color: #e5e7eb;
    background: rgba(31,41,55,0.95);
    border-color: rgba(156,163,175,0.7);
}


/* Accordion comments */
.accordion {
    margin-top: 0.6rem;
    border-top: 1px dashed rgba(55,65,81,0.9);
    padding-top: 0.5rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.2rem 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    cursor: pointer;
}

.accordion-header:hover {
    color: var(--accent-strong);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
}

.accordion-content.open {
    max-height: 400px;
}



/* Raffle accordion */
.raffle-accordion {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
.raffle-accordion-header{
    padding: 0.9rem 0;
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.raffle-accordion-header h2{
    margin: 0;
    font-size: 1.05rem;
}
.raffle-accordion-header .raffle-date-badge{
    margin-left: auto;
}
.raffle-accordion-content{
    padding-top: 0.4rem;
}
.raffle-accordion-content.open{
    max-height: 5000px;
}
.comments-list {
    margin-top: 0.3rem;
    margin-bottom: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.comment-item {
    padding: 0.35rem 0.45rem;
    border-radius: 0.6rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(31,41,55,0.95);
    font-size: 0.8rem;
    text-align: left;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
}

.comment-name {
    font-weight: 600;
}

.comment-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.comment-text {
    margin: 0;
    color: var(--text);
    font-size: 0.8rem;
}

.comment-empty {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comments-site .comment-form {
    margin-top: 0.7rem;
}


/* Destaque do próximo sorteio */
.next-raffle-highlight {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 1.75rem auto;
    padding: 1.25rem 1.5rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at 10% 0, rgba(255,134,0,0.22) 0, rgba(15,23,42,0.98) 55%);
    border: 1px solid rgba(248,250,252,0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.next-raffle-title {
    margin: 0 0 0.35rem 0;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.next-raffle-date {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fefce8;
}

.next-raffle-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    min-width: 70px;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.55);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.countdown-item span {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
}

.countdown-item small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

/* Data em destaque dentro de cada sorteio */
.raffle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.raffle-date-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,134,0,0.18), rgba(59,130,246,0.22));
    border: 1px solid rgba(248,250,252,0.16);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f9fafb;
}


/* Profile SAFE banner */
.profile-banner { margin:0 auto 0 auto; padding:0.5rem 1rem; text-align:center; }

.profile-banner-title {
    margin: 0 0 0.2rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(148,163,184,0.95);
}

.profile-banner-name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e5e7eb;
}

.profile-banner-tagline {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: rgba(209,213,219,0.95);
}



/* ==== MENU SUPER BONITO / SEGUINDO O PADRÃO SAFE ==== */







@media (max-width: 640px) {
    

    
}



/* ==== MENU PREMIUM SAFE (Bonito e Centralizado) ==== */

.top-menu {
    width: 100%;
    display: flex;
    justify-content: center;     
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.4rem 0 1.8rem 0;
}

.top-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all .25s ease-in-out;
}

.top-menu-link:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: #000;
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 5px 18px rgba(251,146,60,0.45);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .top-menu {
        justify-content: center;
        gap: 0.55rem;
        padding: 0 0.5rem;
    }

    .top-menu-link {
        padding: 0.55rem 1.2rem;
        font-size: 0.84rem;
    }
}


/* ===== Página pública organizada: próximo, último e arquivados ===== */
.public-raffle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    padding: 0.38rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff7ed;
    border: 1px solid rgba(255,255,255,0.22);
}

.raffle-card-next-public {
    background: linear-gradient(135deg, rgba(255,134,0,0.35), rgba(120,53,15,0.98) 48%, rgba(15,23,42,0.96));
    border: 2px solid rgba(251,191,36,0.9);
    box-shadow: 0 0 0 1px rgba(251,191,36,0.20), 0 24px 60px rgba(251,146,60,0.28), var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.raffle-card-next-public::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 34%);
    pointer-events: none;
}

.raffle-card-next-public .public-raffle-label {
    background: linear-gradient(90deg, #f97316, #eab308);
    color: #111827;
}

.raffle-card-next-public .raffle-header,
.raffle-card-next-public .prizes-grid,
.raffle-card-next-public .raffle-description,
.raffle-card-next-public .public-raffle-label {
    position: relative;
    z-index: 1;
}

.raffle-card-last-public {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.13), rgba(15,23,42,0.94));
    border: 1px solid rgba(34,197,94,0.42);
}

.raffle-card-last-public .public-raffle-label {
    background: rgba(22,163,74,0.22);
    color: #dcfce7;
}

.archived-raffles-box {
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(148,163,184,0.42);
}

.archived-raffles-header {
    width: 100%;
    min-height: 78px;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(30,41,59,0.98), rgba(15,23,42,0.98));
    border: 1px solid rgba(148,163,184,0.45);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    cursor: pointer;
}

.archived-raffles-header span {
    font-size: 1.05rem;
    font-weight: 900;
    color: #f8fafc;
    letter-spacing: 0.12em;
}

.archived-raffles-header small {
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.archived-raffles-content.open {
    max-height: 20000px;
    padding-top: 1rem;
}

.raffle-card-archived-public {
    margin-top: 1rem;
    background: radial-gradient(circle at top left, rgba(148,163,184,0.08), rgba(15,23,42,0.90));
    border-color: rgba(148,163,184,0.28);
}

.raffle-card-archived-public .public-raffle-label {
    background: rgba(71,85,105,0.8);
    color: #e2e8f0;
}

/* Contador restaurado dentro do card do próximo sorteio */
.next-raffle-countdown-box {
    position: relative;
    z-index: 1;
    margin: 0.75rem auto 1rem auto;
    padding: 0.85rem 0.75rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.raffle-card-next-public .next-raffle-countdown-box,
.raffle-card-next-public .countdown {
    position: relative;
    z-index: 1;
}
