/*
Theme Name: FlashRO
Author: FlashRO Team
Version: 1.0
*/

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: #f5d27a;
    font-family: Arial, sans-serif;
}
main {
    padding-top: 100px;
}

/* =========================
   HEADER (GRID CORRETO)
========================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 10000;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(6px);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245,210,122,.9),
        transparent
    );
}

.header-bottom {
    height: 100%;
}

.header-container {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* =========================
   LOGO
========================= */

.logo img {
    height: 100px;
    display: block;
}
.logo {
    grid-column: 1;
    justify-self: start;
}

/* =========================
   MENU
========================= */

.menu {
    grid-column: 2;
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    color: #f5d27a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    transition: color .25s ease;
}

.menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245,210,122,.9),
        transparent
    );
    transition: width .35s ease;
}

.menu > li:hover > a {
    color: #fff;
}

.menu > li:hover > a::after {
    width: 100%;
}

/* =========================
   SUBMENU
========================= */

.submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    padding: 12px 0;
    list-style: none;

    background: rgba(12,12,12,.95);
    backdrop-filter: blur(6px);

    border-radius: 12px;
    border: 1px solid rgba(245,210,122,.2);
    box-shadow: 0 20px 45px rgba(0,0,0,.85);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;

    z-index: 2000;
}

.menu > li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 22px;
    color: #f5d27a;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

.submenu li a:hover {
    background: rgba(245,210,122,.1);
    color: #fff;
}

.submenu li a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245,210,122,0.6),
        transparent
    );
    opacity: 0;
    transition: opacity .25s ease;
}

.submenu li a:hover::after {
    opacity: 1;
}

/* =========================
   ONLINE BOX
========================= */

.online-box {
    grid-column: 3;
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;

    color: #d8ffd8;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);

    border-radius: 18px;
    border: 1px solid rgba(0,255,0,.35);
    box-shadow: 0 0 12px rgba(0,255,0,.25);
}

.online-box .dot {
    width: 8px;
    height: 8px;
    background: #00ff6a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,255,106,.8);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding-top: 100px; /* respeita o header */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Overlay escuro */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25)
    );
    z-index: 1;
}

/* Vídeo */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.65;
    filter: contrast(1.1) saturate(1.05);
    z-index: 0;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;

    margin-top: 120px; /* 🔑 ISSO SOBE O TÍTULO */
}


.hero-content p {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.8;
}
/* =========================
   HEADER ACTIONS (ENTRAR / REGISTRAR + ONLINE)
========================= */

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
}

/* =========================
   HEADER RIGHT (LOGIN + ONLINE)
========================= */

.header-right {
    grid-column: 3;
    justify-self: end;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.header-actions a {
    color: #f5d27a;
    text-decoration: none;
}

.header-actions a:hover {
    color: #fff;
}

/* Botão Registrar */
.header-actions .btn-register {
    margin-left: 0px;
    padding: 4px 10px;
    border: 1px solid rgba(245,210,122,.6);
    border-radius: 8px;
}

/* ENTRAR — visual premium discreto */
.header-actions .btn-login {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;

    border: 1px solid rgba(245,210,122,.6);
    background: rgba(245,210,122,.08);

    color: #f5d27a;
    opacity: 0.9;

    transition: all .25s ease;
}

.header-actions .btn-login:hover {
    background: rgba(245,210,122,.18);
    border-color: rgba(245,210,122,.7);
    color: #fff;
}
/* =========================
   FLASHRO – DONATE (ODIN)
========================= */

/* GRID */
.flashro-donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* CARD BASE */
.flashro-donate-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 300px;
    padding: 26px;
    text-align: center;

    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 18px;

    position: relative;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.8);
    transition: all 0.35s ease;
}

.flashro-donate-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(212,175,55,0.35),
        inset 0 0 25px rgba(0,0,0,0.9);
    border-color: rgba(212,175,55,0.6);
}

/* BADGE */
.package-badge {
    position: absolute;
    top: -14px;
    right: 18px;
    background: linear-gradient(180deg, #f1c40f, #d4af37);
    color: #000;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(241,196,15,0.45);
}

/* TÍTULO DO PACOTE */
.package-name {
    display: inline-block;      /* tamanho exato do texto */
    position: relative;

    margin: 0 auto 6px;         /* CENTRALIZA O CONJUNTO */
    padding-bottom: 6px;

    font-size: 20px;
    font-weight: 800;
    color: #ffffff;

    text-align: center;
    text-shadow: 0 0 6px rgba(212,175,55,0.25);
}

/* LINHA DO MESMO TAMANHO DO TÍTULO */
.package-name::after {
    content: "";
    display: block;

    width: 100%;                /* exatamente o texto */
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(212,175,55,0),
        rgba(212,175,55,0.9),
        rgba(212,175,55,0)
    );
}

.flashro-donate-card.custom-donate .package-price {
    display: none;
}

/* BLOCO INTERNO */
.package-inner {
    background: rgba(0,0,0,0.65);
    border-radius: 12px;
    padding: 14px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.package-inner-header {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.package-inner-divider {
    height: 1px;
    margin: 8px 0;
    background: linear-gradient(
        to right,
        transparent,
        #d4af37,
        transparent
    );
}

.package-inner-value {
    font-size: 16px;
    font-weight: bold;
    color: #d4af37;
}

/* BOTÃO */
.donate-action {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f1c40f, #d4af37);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: auto;
}

.donate-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(241,196,15,0.7);
}

/* CARD PREMIUM (SEM SCALE) */
.flashro-donate-card.premium {
    border-color: rgba(212,175,55,0.7);
    box-shadow:
        0 0 25px rgba(212,175,55,0.45),
        inset 0 0 25px rgba(0,0,0,0.85);
}

/* DOAÇÃO PERSONALIZADA */
.flashro-donate-card.custom-donate {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 30px auto 0;

    padding: 32px 28px;
    min-height: 380px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* INPUT PERSONALIZADO */
.custom-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 10px 0 10px;
}

.custom-input-wrapper .currency {
    background: #111;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
    color: #f1c40f;
}

.custom-input-wrapper input {
    width: 160px;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 16px;
}

.custom-input-wrapper input {
    width: 180px;
    padding: 14px;
    font-size: 16px;
    text-align: center;

    background: #111;
    color: #fff;

    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.4);
}

/* =========================
   FUNDO DOAÇÕES
========================= */
.donate-wrapper {
    position: relative;
    background: url("/assets/img/donate-bg.jpg") center / cover no-repeat;
    padding: 140px 0 120px;
    overflow: hidden;
}

.donate-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

.donate-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/donate-bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    filter: blur(8px);
    opacity: 0.35;
    transform: scale(1.03);
    animation: donateZoom 22s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes donateZoom {
    from { transform: scale(1.03); }
    to   { transform: scale(1.06); }
}

.donate-wrapper > * {
    position: relative;
    z-index: 2;
}

/* =========================
   GLASS CONTAINER
========================= */
.donate-glass {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    border-radius: 28px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 200, 40, 0.15);
    box-shadow:
        0 0 0 1px rgba(255, 200, 40, 0.05),
        0 25px 80px rgba(0,0,0,0.85);
}

.bonus-info {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.85;
}

/* =========================
   MOBILE — DOAÇÕES
========================= */
@media (max-width: 768px) {

    .flashro-donate-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .flashro-donate-card {
        min-height: auto;
    }

    .flashro-donate-card.custom-donate {
        grid-column: auto;
        max-width: 100%;
        margin: 30px 0 0;
    }

}
@media (max-width: 768px) {

    .flashro-donate-card {
        padding: 22px 20px;
    }

    .package-inner {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .donate-action {
        padding: 12px;
        font-size: 14px;
    }

}
/* =========================
   MOBILE — MENU HAMBURGER + SUBMENU
========================= */
@media (max-width: 768px) {

    /* Botão ☰ */
    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #f5d27a;
    }

    /* Travar fundo quando menu abre */
    body.menu-open {
        overflow: hidden;
    }

    /* MENU OVERLAY */
    .menu {
        display: none;
        position: fixed;
        top: 100px; /* altura do header */
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);

        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

        padding: 24px;
        overflow-y: auto;

        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);

        z-index: 9999;
    }

    /* Menu aberto */
    .menu.active {
        display: flex;
    }

    /* Links */
    .menu li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 18px;
        text-align: left;
    }

    /* SUBMENU */
    .submenu {
        display: none;
        position: static;

        margin-top: 10px;
        padding: 12px 16px;

        background: rgba(0,0,0,0.6);
        border: 1px solid rgba(245,210,122,0.25);
        border-radius: 12px;
    }

    /* Submenu aberto */
    .menu .has-submenu.open > .submenu {
        display: block;
    }

    /* Header grid mobile */
    .header-container {
        grid-template-columns: auto auto auto;
    }
    /* HEADER RIGHT — MOBILE (LOGIN + ONLINE) */
.header-right {
    grid-column: 1 / -1;        /* ocupa a linha inteira */
    width: 100%;
    margin-top: 10px;

    align-items: center;        /* centraliza tudo */
    gap: 10px;
}

/* Botões Entrar / Registrar */
.header-actions {
    width: 100%;
    justify-content: center;
}

/* Online box centralizado */
.online-box {
    justify-content: center;
}
/* Aumenta área do header no mobile */
.site-header {
    height: auto;
}

/* Dá respiro entre header e hero */
.header-bottom {
    padding-bottom: 8px;
}

/* Ajusta o conteúdo principal para não subir demais */
main {
    padding-top: 130px;
}

}
/* =========================
   DESKTOP — FORÇAR MODO DESKTOP PURO
========================= */
@media (min-width: 769px) {

    /* ESCONDE TOTALMENTE O HAMBURGER */
    .menu-toggle {
        display: none !important;
    }

    /* GARANTE MENU HORIZONTAL */
    .menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        width: auto;
        height: auto;

        background: transparent;
        overflow: visible;
    }

    /* REMOVE QUALQUER ESTADO MOBILE */
    body.menu-open {
        overflow: auto;
    }
}
/* =========================
   REGRAS — PADRÃO PREMIUM FINAL
========================= */

/* CARD INDIVIDUAL */
.rules-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(245, 196, 107, 0.18);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 36px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    transition: all 0.25s ease;
}

/* HOVER PREMIUM */
.rules-card:hover {
    border-color: rgba(245, 196, 107, 0.45);
    box-shadow: 0 0 35px rgba(245, 196, 107, 0.12);
    transform: translateY(-2px);
}

/* TÍTULO DO CARD */
.rules-heading {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #f5c46b;
    margin-bottom: 18px;
    position: relative;
}

/* LINHA PREMIUM (MESMA LARGURA DO TÍTULO) */
.rules-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 8px;
    background: linear-gradient(
        90deg,
        rgba(245,196,107,0.0),
        rgba(245,196,107,0.55),
        rgba(245,196,107,0.0)
    );
}

/* TEXTO */
.rules-card p,
.rules-card li {
    color: #d6d6d6;
    font-size: 14.5px;
    line-height: 1.7;
}

/* LISTAS */
.rules-list {
    margin: 14px 0 16px 18px;
    padding: 0;
}

.rules-list li {
    margin-bottom: 6px;
}

/* DESTAQUES */
.rules-card strong {
    color: #f5c46b;
    font-weight: 600;
}

/* TÍTULO PRINCIPAL */
.rules-title {
    text-align: center;
    margin-bottom: 42px;
}

.rules-title-gold {
    color: #f5c46b;
    font-size: 34px;
    font-weight: 800;
}
/* =========================
   INFORMAÇÕES DO SERVIDOR — REFINO
========================= */

/* Hero da página */
.rules-hero {
    margin-bottom: 28px;
}

/* Container principal */
.rules-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Cards */
.rules-card {
    margin-bottom: 28px;
}

/* Último card sem espaço extra */
.rules-card:last-child {
    margin-bottom: 0;
}

/* Títulos dos cards */
.rules-heading {
    margin-bottom: 14px;
}

/* Listas mais compactas */
.rules-list li {
    margin-bottom: 6px;
}

/* Texto centralizado final */
.rules-card-center {
    padding-top: 24px;
    padding-bottom: 24px;
}
/* =========================
   INFORMAÇÕES — TÍTULO PRINCIPAL
========================= */

.rules-title-3d {
    font-size: 34px;          /* antes estava maior */
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.rules-subtitle {
    margin-top: 6px;
    font-size: 15px;
    opacity: 0.9;
}
.rules-title-3d::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 700px;
    height: 2px;
    margin: 12px auto 0;

    background: linear-gradient(
        90deg,
        rgba(245,196,107,0),
        rgba(245,196,107,0.65),
        rgba(245,196,107,0)
    );
}
/* =========================
   INFORMAÇÕES — TÍTULO CENTRALIZADO
========================= */

.rules-hero {
    text-align: center;
    padding-top: 90px;   /* DESCE O TÍTULO */
    padding-bottom: 40px;
}

.rules-title-3d {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.rules-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
/* =========================
   FUNDO – INFORMAÇÕES
========================= */

.info-wrapper {
    position: relative;
    background: url("/assets/img/info-bg.jpg") center / cover no-repeat;
    padding: 10px 0 50px; /* ↓ menos em cima, mantém embaixo */
}

.info-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

.info-wrapper > * {
    position: relative;
    z-index: 2;
}
/* =========================
   DOWNLOAD — FUNDO DA PÁGINA
========================= */
.download-wrapper {
    position: relative;
    background: url("/assets/img/download-bg.jpg") center / cover no-repeat;
    padding: 40px 0 80px;

    animation: downloadZoom 22s ease-in-out infinite alternate;
}

@keyframes downloadZoom {
    from {
        background-size: 100%;
    }
    to {
        background-size: 106%;
    }
}

/* Overlay escuro */
.download-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.85)
    );
    z-index: 1;
}

/* Garante conteúdo acima do overlay */
.download-wrapper > * {
    position: relative;
    z-index: 2;
}
/* =========================
   DOAÇÕES — BOTÃO HISTÓRICO
========================= */
.donation-history-button {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
}

.history-btn {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;

    color: #f5d27a;
    text-decoration: none;

    border: 1px solid rgba(245,210,122,.6);
    border-radius: 8px;

    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);

    transition: all .25s ease;
}

.history-btn:hover {
    background: rgba(245,210,122,.15);
    color: #fff;
}
/* ===============================
   FLASHRO — HISTÓRICO DE DOAÇÕES
   BASE DOS CARDS
================================ */

.flashro-history-card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.flashro-history-card .history-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f5d76e;
}

.history-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    font-size: 14px;
}

.history-item:last-child {
    border-bottom: none;
}

.history-empty {
    color: #ccc;
    font-style: italic;
    margin-top: 10px;
}

/* ===============================
   FLASHRO — CORES POR ESTADO
================================ */

/* Concluídas */
.flashro-history-card.completed {
    border-color: rgba(80, 200, 120, 0.35);
}

.flashro-history-card.completed .history-title {
    color: #7CFC98;
}

/* Em análise */
.flashro-history-card.pending {
    border-color: rgba(255, 215, 0, 0.35);
}

.flashro-history-card.pending .history-title {
    color: #FFD700;
}

/* Falha */
.flashro-history-card.failed {
    border-color: rgba(255, 90, 90, 0.4);
}

.flashro-history-card.failed .history-title {
    color: #FF6B6B;
}

/* ===============================
   FLASHRO — ITENS DO HISTÓRICO
================================ */

.history-item span {
    display: block;
    min-width: 120px;
    color: #eaeaea;
}

.history-item strong {
    color: #f5d76e;
    font-weight: 600;
}

@media (min-width: 768px) {
    .history-item {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
        align-items: center;
    }

    .history-item span {
        display: inline-block;
    }
}

/* ===============================
   FLASHRO — HOVER E REALCE
================================ */

.flashro-history-card {
    transition: all 0.3s ease;
}

.flashro-history-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.25);
}

.flashro-history-card.completed:hover {
    box-shadow: 0 0 35px rgba(124, 252, 152, 0.35);
}

.flashro-history-card.failed:hover {
    box-shadow: 0 0 35px rgba(255, 107, 107, 0.35);
}

/* ===============================
   FLASHRO — LINHA INDICADORA DE STATUS
================================ */

.history-divider {
    height: 2px;
    width: 100%;
    margin: 12px 0 18px;
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.8),
        rgba(255, 215, 0, 0)
    );
}

/* Concluídas */
.flashro-history-card.completed .history-divider {
    background: linear-gradient(
        to right,
        rgba(124, 252, 152, 0),
        rgba(124, 252, 152, 0.9),
        rgba(124, 252, 152, 0)
    );
}

/* Em análise */
.flashro-history-card.pending .history-divider {
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0),
        rgba(255, 215, 0, 0.9),
        rgba(255, 215, 0, 0)
    );
}

/* Falha */
.flashro-history-card.failed .history-divider {
    background: linear-gradient(
        to right,
        rgba(255, 107, 107, 0),
        rgba(255, 107, 107, 0.9),
        rgba(255, 107, 107, 0)
    );
}
/* =========================
   HISTÓRICO — FUNDO DA PÁGINA
========================= */
.history-wrapper {
    position: relative;
    background: url("/assets/img/history-bg.jpg") center / cover no-repeat;
    padding: 140px 0 80px;
    overflow: hidden;
}

.history-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.8)
    );
    z-index: 1;
}

.history-wrapper > * {
    position: relative;
    z-index: 2;
}
/* =========================
   EVENTOS — BASE CORRETA
========================= */

.page-wrapper {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.page-glass {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 40px;

    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);

    border-radius: 20px;
    border: 1px solid rgba(245,210,122,0.2);
}
/* =========================
   RANKINGS — TABELA
========================= */

.ranking-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;

    background: rgba(0,0,0,0.55);
    border-radius: 14px;
    overflow: hidden;

    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.ranking-table th {
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #f5d27a;
    border-bottom: 1px solid rgba(245,210,122,0.25);
}

.ranking-table td {
    padding: 14px 10px;
    font-size: 14px;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

/* Posição */
.rank-position {
    font-weight: 800;
    color: #f5d27a;
}

/* Jogador + Classe */
.rank-player {
    text-align: left;
}

.player-name {
    display: block;
    font-weight: 700;
    color: #fff;
}

.player-class {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

/* Status */
.status-online {
    color: #4cff9b;
    font-weight: 700;
}

.status-offline {
    color: #ff6b6b;
    font-weight: 700;
}

/* Hover */
.ranking-table tbody tr:hover {
    background: rgba(245,210,122,0.06);
}
/* =========================
   RANKINGS — PREMIUM TABLE
========================= */

.ranking-table thead {
    background: rgba(0,0,0,0.65);
}

.ranking-table th {
    padding: 16px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #f5d27a;
    border-bottom: 1px solid rgba(245,210,122,0.25);
}

.ranking-table td {
    padding: 16px 12px;
    font-size: 14px;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Jogador */
.rank-player {
    text-align: left;
}

.player-name {
    display: block;
    font-weight: 700;
    color: #fff;
}

.player-class {
    font-size: 12px;
    opacity: 0.65;
}

/* Level */
.rank-level {
    font-weight: 700;
    letter-spacing: 0.4px;
}

.level-base {
    color: #ffffff;
}

.level-separator {
    color: rgba(255,255,255,0.4);
}

.level-job {
    color: #f5d27a;
}

/* Badge de mapa */
.map-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    background: rgba(120,80,255,0.15);
    color: #bfa8ff;
}

/* Status */
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status.online {
    color: #4cff9b;
}

.status.online .status-dot {
    background: #4cff9b;
    box-shadow: 0 0 6px rgba(76,255,155,0.7);
}

.status.offline {
    color: #ff6b6b;
}

.status.offline .status-dot {
    background: #ff6b6b;
}

/* Hover */
.ranking-table tbody tr:hover {
    background: rgba(245,210,122,0.08);
}
/* =========================
   RANKING — CLÃ
========================= */

/* Clã existente */
.clan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;

    color: #f5d27a;

    background: rgba(245,210,122,0.12);
    border: 1px solid rgba(245,210,122,0.35);
    border-radius: 14px;

    box-shadow: 0 0 10px rgba(245,210,122,0.15);
}

/* Sem clã */
.clan-none {
    font-size: 12px;
    opacity: 0.55;
    font-style: italic;
    color: #aaa;
}
/* =========================
   RANKING — CABEÇALHO PREMIUM
========================= */

.ranking-table thead th {
    text-shadow: 0 0 6px rgba(245,210,122,0.25);
}
.ranking-table thead::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(245,210,122,0.9),
        transparent
    );
}
.event-hero {
    margin-bottom: 30px;
}
.page-glass > p {
    margin-top: 24px;
    font-size: 13px;
    opacity: 0.85;
}
.event-hero .page-title {
    font-size: 38px;
    margin-bottom: 8px;
}
.event-hero .page-subtitle {
    font-size: 14px;
    opacity: 0.75;
}
.event-hero::after {
    content: "";
    display: block;
    width: 260px;
    height: 2px;
    margin: 26px auto 0;

    background: linear-gradient(
        90deg,
        rgba(245,210,122,0),
        rgba(245,210,122,0.9),
        rgba(245,210,122,0)
    );
}
/* =========================
   RANKING — HEADER
========================= */

.ranking-header {
    text-align: center;
    margin-bottom: 30px;
}

.ranking-title {
    font-size: 32px;
    font-weight: 800;
    color: #f5d27a;
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(245,210,122,0.25);
}

.ranking-subtitle {
    font-size: 14px;
    opacity: 0.75;
}

.ranking-line {
    display: block;
    width: 260px;
    height: 2px;
    margin: 14px auto 30px;

    background: linear-gradient(
        90deg,
        rgba(245,210,122,0),
        rgba(245,210,122,0.85),
        rgba(245,210,122,0)
    );

}
.page-glass {
    padding: 50px 40px 60px;
}
/* =========================
   RANKINGS — FUNDO GLOBAL
========================= */

.ranking-wrapper {
    position: relative;
    background: url("/assets/img/ranking-bg.jpg") center / cover no-repeat;
    padding: 140px 0 120px;
    overflow: hidden;
}

/* Overlay escuro premium */
.ranking-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.60),
        rgba(0,0,0,0.72)
    );

    z-index: 1;
}

/* Garante que o conteúdo fique acima */
.ranking-wrapper > * {
    position: relative;
    z-index: 2;
}
/* =========================
   RANKING — CARD DA TABELA
========================= */

.ranking-card {
    position: relative;
    padding: 2px;
    border-radius: 16px;

    background: linear-gradient(
        120deg,
        rgba(245,210,122,0.45),
        rgba(245,210,122,0.08),
        rgba(245,210,122,0.45)
    );

    box-shadow:
        0 0 0 1px rgba(245,210,122,0.35),
        0 0 18px rgba(245,210,122,0.08);
}

/* Camada interna (mantém a tabela intacta) */
.ranking-card::before {
    content: "";
    position: absolute;
    inset: 1px;

    background: rgba(0,0,0,0.85);
    border-radius: 14px;

    z-index: 0;
}

/* garante que a tabela fique acima */
.ranking-card > .ranking-table {
    position: relative;
    z-index: 1;
}
/* =========================
   RANKING — MOBILE BASE
========================= */
@media (max-width: 768px) {

    .ranking-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ranking-table {
        min-width: 720px;
    }

}
/* =========================
   RANKING — AJUSTE MOBILE CARD EXTERNA
========================= */
@media (max-width: 768px) {

    .page-glass {
        width: calc(100% - 24px);
        margin: 0 auto;
        padding: 32px 16px 40px;

        border-radius: 16px;
    }

    .ranking-wrapper {
        padding-bottom: 40px;
    }

}
/* =========================
   RANKING — BORDA MOBILE CORRETA
========================= */
@media (max-width: 768px) {

    .ranking-card {
        padding: 2px;
        height: auto;
        display: inline-block; /* 🔑 chave */
    }

    .ranking-card::before {
        inset: 2px;
    }

}
/* =========================
   RANKING — ZENY PREMIUM
========================= */

.ranking-table td.rank-zeny {
    font-weight: 900;
    letter-spacing: 0.4px;

    background: linear-gradient(
        180deg,
        #fff6d6,
        #f5d27a
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ZENY — NEON PREMIUM (CONTROLADO) */
.rank-zeny {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.6px;

    color: #f5d27a;

    text-shadow:
        0 0 4px rgba(120, 255, 190, 0.65),
        0 0 10px rgba(90, 255, 160, 0.45),
        0 0 18px rgba(60, 220, 140, 0.25);
}
/* =========================
   RANKING — COLUNA MVP
========================= */

/* Cabeçalho */
.ranking-table th:last-child {
    text-align: center;
    width: 90px;
}

/* Células */
.ranking-table td:last-child {
    text-align: center;
    font-weight: 700;
}
/* =========================
   RANKING — MVP BADGE
========================= */

.rank-mvp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 32px;
    padding: 0 10px;

    font-weight: 800;
    font-size: 14px;

    color: #ff4d5a; /* vermelho premium */

    background: rgba(20, 28, 50, 0.85); /* azul escuro */
    border: 1px solid rgba(255, 77, 90, 0.25);
    border-radius: 8px;

    text-shadow: 0 0 6px rgba(255, 77, 90, 0.35);
}
/* ABATES - VERDE NEON */
.rank-kills {
    color: #00ff88;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.12);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
}
/* MORTES - VERMELHO NEON */
.rank-deaths {
    color: #ff3b3b;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255, 59, 59, 0.12);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.45);
}
/* PONTOS - DOURADO NEON */
.rank-points {
    color: #f5c77a;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(245, 199, 122, 0.14);
    box-shadow: 0 0 12px rgba(245, 199, 122, 0.55);
}
/* TESOUROS - ROXO NEON */
.rank-treasure {
    color: #b26bff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(178, 107, 255, 0.14);
    box-shadow: 0 0 12px rgba(178, 107, 255, 0.55);
}
.page-action {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.page-btn {
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #f5c77a;
    border: 1px solid rgba(245, 199, 122, 0.4);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-btn:hover {
    background: rgba(245, 199, 122, 0.15);
    box-shadow: 0 0 12px rgba(245, 199, 122, 0.4);
}
/* =========================
   RANKING — BOTÃO (MOBILE)
========================= */
@media (max-width: 768px) {

    .page-action {
        position: static;          /* 🔑 chave da correção */
        margin-bottom: 16px;
        margin-top: 10px;
        text-align: center;
    }

    .page-action .page-btn {
        display: block;
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
    }
}
/* =========================
   HERO — TÍTULO ESTILO METÁLICO LIMPO
========================= */

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.05;

    color: #111; /* corpo escuro */

    -webkit-text-stroke: 1px #000;

    text-shadow:
        /* chanfro claro */
        1px  1px 0 #ffffff,
       -1px -1px 0 #ffffff,

        /* profundidade */
        0  4px 10px rgba(0,0,0,0.75);

    margin-bottom: 50px;
}
/* FORJA — REMOVE QUALQUER BORDA / STROKE E MANTÉM APENAS GLOW */
.hero-title span {
    color: #f5d27a;
    font-weight: 800;

    /* REMOVE A BORDA */
    -webkit-text-stroke: 0 transparent;

    /* REMOVE QUALQUER HERANÇA DE CHANFRO */
    text-shadow:
        0 0 6px rgba(245,210,122,0.7),
        0 0 14px rgba(245,210,122,0.45),
        0 0 26px rgba(245,210,122,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }
}
/* =========================
   HERO — CARD PACOTE FUNDADOR
========================= */

.founder-card {
    position: relative;
    margin: 65px auto 65px;
    max-width: 680px;

    padding: 26px 32px 28px;

    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    border: 1px solid rgba(245, 210, 122, 0.35);

    box-shadow:
    0 18px 45px rgba(0,0,0,0.75),
    inset 0 0 35px rgba(0,0,0,0.55);

    transition: all 0.35s ease;
}
.founder-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);

    padding: 6px 18px;
    border-radius: 999px;

    background: linear-gradient(
        180deg,
        #f5d27a,
        #d4af37
    );

    color: #000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;

    box-shadow:
        0 6px 18px rgba(245,210,122,0.45);
}
.founder-content {
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}
.founder-card:hover {
    transform: translateY(-3px);

    border-color: rgba(245, 210, 122, 0.75);

    box-shadow:
        0 0 28px rgba(245,210,122,0.45),
        inset 0 0 18px rgba(245,210,122,0.15);
}
@media (max-width: 768px) {
    .founder-badge {
        top: -22px; /* sobe a pílula */
    }
}
.hero-counter-title {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 640;
    letter-spacing: 0.6px;

    color: #f5d27a;
    text-align: center;

    opacity: 0.9;
    text-shadow: 0 0 8px rgba(245,210,122,0.25);
}
/* =========================
   COUNTDOWN — PADRÃO PBRO
========================= */

.countdown-card {
    position: relative;
    margin: 55px auto 55px;
    max-width: 680px; /* 🔑 MESMA LARGURA DA CARD DE CIMA */

    padding: 26px 32px 28px;
    text-align: center;

    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    border: 1px solid rgba(245, 210, 122, 0.35);

    box-shadow:
    0 22px 55px rgba(0,0,0,0.85),
    inset 0 0 40px rgba(0,0,0,0.6);


    transition: all 0.35s ease;
    
    overflow: visible; /* 🔑 FAZ OS ":" NÃO SUMIREM */
}
.countdown-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 210, 122, 0.75);

    box-shadow:
        0 0 28px rgba(245,210,122,0.45),
        inset 0 0 18px rgba(245,210,122,0.15);
}

/* TEXTO SUPERIOR */
.countdown-top {
    font-size: 18px;
    letter-spacing: 1.6px;
    opacity: 0.85;
}


/* LINHA */
.countdown-divider {
    height: 2px;
    width: 100%;
    margin-bottom: 22px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
}

/* NÚMEROS */
.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 42px;
}

.countdown-numbers span {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 1px;

    background: linear-gradient(
        180deg,
        #f1f1f1 0%,
        #dcdcdc 40%,
        #bfbfbf 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.75),
        0 6px 18px rgba(0,0,0,0.55);
}

.countdown-numbers span {
    position: relative;
}

.countdown-numbers span:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-52%);

    font-size: 42px;
    font-weight: 400;

    color: rgba(245, 210, 122, 0.85);
    text-shadow: none;
    pointer-events: none;
}

.countdown-numbers small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.65;
}

/* =========================
   MOBILE — ESTABILIZAR CARDS HERO
========================= */
@media (max-width: 768px) {

    .founder-card,
    .countdown-card {
        width: calc(100% - 28px);
        max-width: none;
        transform: none;
        backdrop-filter: blur(6px);
    }

    .countdown-card {
        padding: 22px 18px 26px;
        margin: 30px 14px;
    }

    .countdown-numbers {
        gap: 18px;
    }

    .countdown-numbers span {
        font-size: 36px;
    }

    .countdown-numbers span:not(:last-child)::after {
        font-size: 28px;
    }
}
/* =========================
   COUNTDOWN — JOGADORES REGISTRADOS (PREMIUM)
========================= */

.countdown-footer {
    margin: 24px auto 0;
    padding: 10px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 16px;
    letter-spacing: 0.6px;

    color: rgba(255,255,255,0.75);

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(245,210,122,0.35);
    border-radius: 999px;

    box-shadow:
        inset 0 0 10px rgba(245,210,122,0.08),
        0 0 14px rgba(0,0,0,0.6);
}

/* Texto */
.countdown-footer span {
    opacity: 0.85;
}

/* Número premium */
.countdown-footer strong {
    padding: 0;

    font-size: 20px;
    font-weight: 900;

    color: #f5d27a;

    background: none;
    border-radius: 0;

    text-shadow:
        0 0 6px rgba(245,210,122,0.55),
        0 0 14px rgba(245,210,122,0.35),
        0 0 26px rgba(245,210,122,0.18);
}

@keyframes registerPulse {
    0% {
        box-shadow:
            inset 0 0 10px rgba(245,210,122,0.18),
            0 0 8px rgba(245,210,122,0.25);
    }
    50% {
        box-shadow:
            inset 0 0 14px rgba(245,210,122,0.28),
            0 0 16px rgba(245,210,122,0.45);
    }
    100% {
        box-shadow:
            inset 0 0 10px rgba(245,210,122,0.18),
            0 0 8px rgba(245,210,122,0.25);
    }
}

/* =========================
   HERO — CTA PRÉ-REGISTRO PREMIUM
========================= */

.hero-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.hero-btn.primary {
    min-width: 260px;
    padding: 14px 26px;

    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #000;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        #f5d27a,
        #d4af37
    );

    border-radius: 14px;
    border: 2px solid rgba(0, 0, 0, 0.65);

    transform: scale(1);
    animation: ctaScalePulse 3.8s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    box-shadow:
        inset 0 0 0 1px rgba(245,210,122,0.35),
        0 0 18px rgba(245,210,122,0.45),
        0 10px 28px rgba(0,0,0,0.65);
}

/* 🔥 PULSO DE PROFUNDIDADE (PBRO STYLE) */
@keyframes ctaScalePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

/* 🔥 HOVER MAIS FORTE */
.hero-btn.primary:hover {
    transform: scale(1.12);

    box-shadow:
        0 0 32px rgba(245,210,122,0.85),
        0 16px 40px rgba(0,0,0,0.75);
        
        border: 2px solid rgba(0, 0, 0, 0.65);

box-shadow:
    inset 0 0 0 1px rgba(245,210,122,0.35),
    0 0 18px rgba(245,210,122,0.45),
    0 10px 28px rgba(0,0,0,0.65);

}

/* Mobile */
@media (max-width: 768px) {
    .hero-btn.primary {
        width: 100%;
        max-width: 320px;
        font-size: 14px;
        padding: 14px 20px;
    }
}
/* =========================
   EPIC DIVIDER — FRASE NARRATIVA
========================= */

.epic-divider {
    position: relative;
    padding:120px 60px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.95)
    );
}

.epic-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(245,210,122,0.8),
        transparent
    );
}

.epic-divider-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.epic-divider h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 1px;

    color: #f5d27a;

    text-shadow:
        0 0 10px rgba(245,210,122,0.25),
        0 0 20px rgba(0,0,0,0.8);
}

.epic-divider-line {
    width: 100%;
    height: 2px;
    margin: 28px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        #ff9900 30%,
        #ff9900 70%,
        transparent
    );
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
    .epic-divider {
        padding: 60px 16px;
    }

    .epic-divider h2 {
        font-size: 22px;
        letter-spacing: 0.6px;
    }
}
/* =========================
   FLASHRO — ROADMAP PREMIUM
========================= */

.flash-roadmap-section {
    position: relative;
    background: radial-gradient(
        ellipse at center,
        #0b0b0b 0%,
        #050505 60%,
        #000 100%
    );
    padding: 70px 0 120px;
    overflow: hidden;
}
.flash-roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;

    background: url('/assets/img/roadmap-bg.jpg') center  / cover no-repeat;

    opacity: 0.18;      /* 👈 força */
    filter: none;       /* 👈 remove blur */
    mix-blend-mode: normal;

    pointer-events: none;
    z-index: 0;
}

/* CONTAINER */
.flash-roadmap-container {
    position: relative;
    z-index: 2;
}

/* GRID */
.flash-roadmap-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: -30px auto 0; /* 🔥 aproxima do título */
    padding: 0 20px;
}

/* LINHA CENTRAL */
.flash-roadmap-line {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.05),
        rgba(255,153,0,0.8),
        rgba(255,255,255,0.05)
    );
    z-index: 1;
}

/* ITEM */
.flash-roadmap-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* 🔥 FUNDAMENTAL */
}

/* =========================
   DOT (CÍRCULO PBRO STYLE)
========================= */

.flash-roadmap-dot {
    width: 72px;
    height: 72px;
    position: relative;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 3;
}

/* ÍCONE */
.flash-roadmap-dot .dot-icon {
    position: relative;
    z-index: 3;
    font-size: 22px;
}

/* CÍRCULO INTERNO */
.flash-roadmap-dot .dot-inner {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    z-index: 1;
    transition: all 0.4s ease;
}

/* GLOW */
.flash-roadmap-dot .dot-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ff9900;
    filter: blur(18px);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

/* =========================
   CARD
========================= */

.flash-roadmap-content {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px 28px;

    min-height: 360px; /* 🔥 ALTURA IGUAL */
    width: 100%;

    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 12px 40px rgba(0,0,0,0.6);
}

/* TAG */
.flash-roadmap-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff9900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* TÍTULO */
.flash-roadmap-content h3 {
    color: #ffffff; /* branco */
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* DESCRIÇÃO */
.flash-roadmap-desc {
    color: #f5d27a;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.card-divider {
    width: 70%;
    height: 2px;
    margin: 2px auto 6px;

    background: linear-gradient(
        90deg,
        transparent,
        #ffb300,
        transparent
    );

    box-shadow: 0 0 8px rgba(255, 179, 0, 0.45);
    border-radius: 2px;
}

/* LISTA DE FEATURES — PADRÃO PBRO */
.flash-roadmap-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    text-align: left;
}

/* ITEM */
.flash-roadmap-list li {
    position: relative;
    padding-left: 18px;          /* espaço da bolinha */
    margin: 10px 0;              /* espaçamento vertical */
    font-size: 0.9rem;
    color: #cfcfcf;
    line-height: 1.45;
}

/* BOLINHA DOURADA */
.flash-roadmap-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;                  /* alinha com o texto */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f5d27a;         /* dourado FlashRO */
    box-shadow: 0 0 6px rgba(255,153,0,0.6);
}

/* FOOTER */
.flash-roadmap-footer {
    margin-top: auto; /* 🔥 empurra para o fundo */
    font-size: 0.85rem;
    font-weight: 600;
}

.flash-roadmap-footer.yellow {
    color: #ffb300;
    text-shadow:
        0 0 4px rgba(255,179,0,0.6),
        0 0 8px rgba(255,179,0,0.4),
        0 0 16px rgba(255,153,0,0.25);
}

.flash-roadmap-footer.green {
    color: #3cff9e; /* verde mais vivo */
    text-shadow:
        0 0 6px rgba(60,255,158,0.85),
        0 0 14px rgba(60,255,158,0.65),
        0 0 26px rgba(60,255,158,0.45),
        0 0 40px rgba(60,255,158,0.25);
}

/* =========================
   ESTADOS (COMPLETED / ACTIVE)
========================= */

.flash-roadmap-item.completed .flash-roadmap-dot {
    border-color: #ff9900;
}

.flash-roadmap-item.completed .dot-inner {
    background: #000;
}

.flash-roadmap-item.completed .dot-glow {
    opacity: 0.8;
}
/* CARD — BASE (ROADMAP) */
.flash-roadmap-content {
    position: relative;
    display: flex;
    flex-direction: column;

    background: rgba(0,0,0,0.65);
    border: 2px solid rgba(212,175,55,0.25);
    border-radius: 18px;

    box-shadow: inset 0 0 25px rgba(0,0,0,0.8);
    transition: all 0.35s ease;
}

/* HOVER — IGUAL AO CARD DE DOAÇÕES */
.flash-roadmap-content:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(212,175,55,0.35),
        inset 0 0 25px rgba(0,0,0,0.9);
    border-color: rgba(212,175,55,0.6);
}

/* =========================
   HOVER SINCRONIZADO
   CARD ↔ DOT
========================= */

/* quando passa o mouse no ITEM */
.flash-roadmap-item:hover .flash-roadmap-content {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(212,175,55,0.35),
        inset 0 0 25px rgba(0,0,0,0.9);
    border-color: rgba(212,175,55,0.6);
}

/* DOT reage junto */
.flash-roadmap-item:hover .flash-roadmap-dot {
    transform: scale(1.08);
    border-color: rgba(212,175,55,0.8);
}

/* brilho no DOT */
.flash-roadmap-item:hover .dot-glow {
    opacity: 0.9;
}

/* ícone cresce levemente */
.flash-roadmap-item:hover .dot-icon {
    transform: scale(1.15);
}

/* transições suaves */
.flash-roadmap-dot,
.dot-icon {
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.dot-glow {
    transition: opacity 0.35s ease;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
    .flash-roadmap-items {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .flash-roadmap-line {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        top: 0;
    }
}
/* =========================
   DISCORD FLOAT — PBRO EXACT
========================= */

.discord-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;

    width: 65px;
    height: 65px;
    border-radius: 50%;

    background-color: #5865f2;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    border: 2px solid rgba(255,255,255,0.1);

    transition: all .3s cubic-bezier(.175,.885,.32,1.275);
    z-index: 9999;
    text-decoration: none;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

/* Tooltip */
.discord-float .tooltip {
    position: absolute;
    right: 80px;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
    transition: all .25s ease;
    transition-delay: .1s;
}

.discord-float:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Hover PBRO */
.discord-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
    background-color: #4752c4;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ripple contínuo PBRO */
.discord-float::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #5865f2;
    opacity: 0;
    z-index: -1;
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile PBRO */
@media (max-width: 768px) {
    .discord-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
/* ÍCONE FLUTUANTE — PBRO */
.icon-wrapper {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: float 3s infinite ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 30px;
        height: 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(2px);
    }
    50% {
        transform: translateY(-2px);
    }
}
/* Neutraliza hover global no botão Discord */
.discord-float:hover {
    color: #fff;
}
.discord-float svg {
    fill: #fff;
}
