          .countdown-container {
              text-align: center;
              color: white;
              padding: 20px;
              border-radius: 15px;
              margin-top: 20px;
          }
          .countdown-title {
              font-size: 2rem;
              margin-bottom: 10px;
           }
          .countdown-timer {
              font-size: 1.5rem;
              font-weight: bold;
          }

          @media (max-width: 576px) {
              .countdown-title {
                  font-size: 1.5rem !important;
              }
              .countdown-timer {
                  font-size: 1.25rem !important;
                  padding: 0.5rem 1rem !important;
              }
          }
        table {
            border-collapse: collapse;
            width: 90%;
            margin: 20px auto;
        }
        th, td {
            border: 1px solid #888;
            padding: 8px;
            text-align: left;
        }
        h1 {
            text-align: center;
            margin-top: 30px;
        }
        /* Container do login/logout */
        .auth-container {
          max-width: 320px;
          margin: 20px auto;
          padding: 20px 25px;
          background-color: #f7f9fc;
          border-radius: 8px;
          box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Texto de boas-vindas */
        .auth-container p {
          font-size: 1.1rem;
          color: #333;
          margin-bottom: 15px;
        }

        /* Formulário */
        .auth-container form {
          display: flex;
          flex-direction: column;
        }

        /* Labels */
        .auth-container label {
          margin-bottom: 5px;
          font-weight: 600;
          color: #555;
        }

        /* Inputs */
        .auth-container input[type="text"],
        .auth-container input[type="password"] {
          padding: 8px 12px;
          font-size: 1rem;
          border: 1.5px solid #ccc;
          border-radius: 4px;
          margin-bottom: 15px;
          transition: border-color 0.3s ease;
        }

        .auth-container input[type="text"]:focus,
        .auth-container input[type="password"]:focus {
          border-color: #007bff;
          outline: none;
        }

        /* Botões */
        .auth-container button {
          padding: 10px;
          font-size: 1rem;
          background-color: #1a1a55;
          color: white;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-weight: 600;
          transition: background-color 0.3s ease;
        }

        .auth-container button:hover {
          background-color: #1a1a55;
        }

        .banbtn {
          background-color: #1a1a55;
          color: white;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }

        .banbtn:hover {
          background-color: #1a1a55;
        }

        .canal-text{
          color: white;
          padding-left: 40px;
        }

        .blue {
          background:url("../images/state2.png") no-repeat top left;
          height:30px;
          color:white;
          text-shadow:0 1px 1px #000;
          line-height:35px;
          text-align:left;
          text-indent:40px;

        }

        .yellow {
          background:url("../images/state2.png") no-repeat bottom left;
          height:30px;
          color:white;
          text-shadow:0 1px 1px #000;
          line-height:35px;
          text-align:left;
          text-indent:40px;
        }

        .sistema {
          width: 100%;        /* ocupa toda a largura disponível */
          margin: 0 auto;     /* centraliza se necessário */
          padding-bottom: 0;
        }
        
        .sistema div,
        .on, .off, .blue, .yellow {
          white-space: normal;      /* permite quebra de linha automática */
          word-wrap: break-word;    /* quebra palavras longas */
          max-width: 100%;          /* impede que ultrapassem a largura do container */
        }

        .sistema2 {
          padding-bottom: 0;    /* mantém sem padding inferior */
        }

       /* ============================================================
   REGISTO – DARK BLUE NEON PREMIUM
   ============================================================ */

.registocss {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;

    /* Fundo neon igual ao tema */
    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,120,255,0.25);

    /* Glow azul */
    box-shadow: 0 0 18px rgba(0,120,255,0.22);

    border-radius: 14px;
    padding: 28px 32px;
    font-family: "Segoe UI", "Roboto", Arial, sans-serif;

    backdrop-filter: blur(2px);
    box-sizing: border-box;
}

/* ============================================================
   CAMPOS
   ============================================================ */

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
    align-items: center;
}

.form-row label {
    flex: 0 0 180px;
    max-width: 180px;
    font-weight: 600;
    font-size: 15px;
    color: #d9e9ff;
    padding-right: 15px;
}

/* Inputs e selects holográficos */
.form-row input.bar,
.form-row select.optionregcss {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 8px;

    /* Estilo Neon */
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,120,255,0.32);
    color: #e9f5ff;

    font-size: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row input.bar::placeholder {
    color: #9bbbe8;
    font-size: 13px;
}

.form-row input.bar:focus,
.form-row select.optionregcss:focus {
    border-color: #009aff;
    box-shadow: 0 0 12px rgba(0,140,255,0.45);
    outline: none;
}

/* ============================================================
   CHECKBOX NEON
   ============================================================ */

.checkbox-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

/* Checkbox personalizado */
.checkbox-row input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;

    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(0,120,255,0.32);
    border-radius: 5px;

    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.checkbox-row input[type="checkbox"]:checked {
    background-color: #009aff;
    border-color: #009aff;
    box-shadow: 0 0 10px rgba(0,150,255,0.6);
}

.checkbox-row input[type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

/* Texto ao lado */
.checkbox-label {
    font-size: 14px;
    color: #cfe4ff;
}

.checkbox-label a {
    color: #66b2ff;
    font-weight: 600;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ============================================================
   BOTÕES
   ============================================================ */

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.buttons-row input.btnreg {
    flex: 1;
    max-width: 150px;

    padding: 10px 24px;
    font-size: 15px;

    background: linear-gradient(135deg, #07101f, #040a14);
    color: #d9e9ff;

    border: 1px solid rgba(0,120,255,0.32);
    border-radius: 8px;
    cursor: pointer;

    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(0,140,255,0.15);
}

.buttons-row input.btnreg:hover {
    background: linear-gradient(135deg, #0a162c, #07101f);
    transform: scale(1.07);
    box-shadow: 0 0 16px rgba(0,150,255,0.45);
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

@media (max-width: 600px) {

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

    .form-row label {
        max-width: 100%;
        margin-bottom: 6px;
        text-align: left;
    }

    .buttons-row {
        flex-direction: column;
    }

    .buttons-row input.btnreg {
        max-width: 100%;
    }
}




/* ============================================================
   USER TABLE – DARK BLUE NEON PREMIUM
   ============================================================ */

.usercss {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem auto;

    /* Fundo Neon Premium */
    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,120,255,0.25);

    /* Glow */
    box-shadow: 0 0 20px rgba(0,120,255,0.22);

    border-radius: 16px;
    overflow: hidden;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    border-collapse: collapse;

    backdrop-filter: blur(2px);
}

/* ============================
   Cabeçalhos
   ============================ */
.usercss th {
    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #d9e9ff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 16px;
    text-align: left;
    border: none;
    text-shadow: 1px 1px 2px #000;
    user-select: none;
}

/* ============================
   Células
   ============================ */
.usercss td {
    padding: 14px 16px;
    font-size: 14px;
    color: #cfe4ff;
    background: rgba(0,15,50,0.45);
    border-bottom: 1px solid rgba(0,120,255,0.12);
}

/* Linhas pares */
.usercss tr:nth-child(even) td {
    background: rgba(0,20,65,0.42);
}

/* Remover borda da última linha */
.usercss tr:last-child td {
    border-bottom: none;
}

/* ============================
   Links
   ============================ */
.usercss a {
    color: #66b2ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.usercss a:hover {
    color: #99ccff;
    text-shadow: 0 0 6px rgba(0,140,255,0.45);
}

/* ============================
   Cantos arredondados
   ============================ */
.usercss tr:first-child th:first-child {
    border-top-left-radius: 16px;
}
.usercss tr:first-child th:last-child {
    border-top-right-radius: 16px;
}
.usercss tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.usercss tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* ============================================================
   RESPONSIVIDADE (Mobile Adaptive Card Layout)
   ============================================================ */
@media (max-width: 576px) {

    .usercss,
    .usercss thead,
    .usercss tbody,
    .usercss th,
    .usercss td,
    .usercss tr {
        display: block;
        width: 100%;
    }

    .usercss thead {
        display: none;
    }

    .usercss tr {
        margin-bottom: 1.2rem;

        background: rgba(0,10,40,0.55);
        border: 1px solid rgba(0,120,255,0.25);
        border-radius: 12px;

        box-shadow: 0 0 16px rgba(0,120,255,0.18);
        overflow: hidden;
        backdrop-filter: blur(2px);
    }

    .usercss td {
        padding: 14px 16px;
        text-align: left;
        border: none;
        background: transparent !important;
        color: #d9e9ff;
        position: relative;
    }

    .usercss td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        top: 12px;
        font-weight: 700;
        font-size: 13px;
        color: #66b2ff;
        text-shadow: 0 0 6px rgba(0,140,255,0.4);
    }

    .usercss td {
        padding-left: 50%;
    }
}




        .anticheatcss {
          width: 100%;
          max-width: 1000px;
          margin: 0 auto 2rem auto;
          border-collapse: collapse;
          font-family: Arial, sans-serif;
          box-shadow: 0 0 12px rgba(0,0,0,0.15);
          background-color: #fff;
          border-radius: 8px;
          overflow: hidden;
        }

        .anticheatcss th,
        .anticheatcss td {
          padding: 12px 15px;
          text-align: center;
        }

        .anticheatcss th {
          background-color: #343a40;
          color: #fff;
          font-weight: bold;
        }

        .anticheatcss td {
          background-color: #f9f9f9;
          color: #333;
        }

        .anticheatcss tr:nth-child(even) td {
          background-color: #f1f1f1;
        }

        .anticheatcss .banbtn {
          padding: 6px 12px;
          background-color: #1a1a55;
          color: #fff;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          font-size: 13px;
          transition: background-color 0.3s;
        }

        .anticheatcss .banbtn:hover {
          background-color: #1a1a55;
        }

        /* Responsivo */
        @media (max-width: 700px) {
          .anticheatcss,
          .anticheatcss th,
          .anticheatcss td {
            display: block;
            width: 100%;
          }

          .anticheatcss th,
          .anticheatcss td {
            text-align: left;
            box-sizing: border-box;
          }

          .anticheatcss th {
            text-align: center;
          }
        }

/* Container geral */
.rankings-container {
    width: 100%;
    margin: 2rem auto;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    /* Fundo Neon Premium (igual ao fundobg e downloads) */
    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,120,255,0.25);

    padding: 20px;
    border-radius: 16px;

    /* Glow azul holográfico */
    box-shadow: 0 0 20px rgba(0,120,255,0.22);

    /* Texto coerente com o tema */
    color: #d9e9ff;

    /* Suavidade futurista */
    backdrop-filter: blur(2px);

    text-align: center;
}


/* Tabela de rankings */
.rankings {
    width:100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* espaçamento entre linhas */
    text-align: center;
    border: none; /* remove todas as bordas da tabela */
    border-radius: 16px; /* ar#1a1a55onda apenas a tabela externa */
    overflow: hidden; /* aplica ar#1a1a55ondamento corretamente */
}

/* Cabeçalho */
.rankings th {
    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #fff8dc;
    font-weight: 700;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
    border: none;
    text-shadow: 1px 1px 2px #000;
}

/* Células */
.rankings td {
    background-color: #1a1a33;
    color: #fff8dc;
    padding: 14px 16px;
    font-size: 14px;
    vertical-align: middle;
    text-align: center;
    border: none; /* remove linhas internas */
}

/* Linha destacada (pesquisa ou teu personagem) */
.tmarkiert {
    background-color: #1a1a55;
    color: #fff8dc;
    font-weight: bold;
    box-shadow: inset 0 0 10px #1a1a55;
    transition: transform 0.2s ease;
}

.tmarkiert:hover {
    transform: scale(1.02);
}

/******************************************************
   RANKING – DARK BLUE NEON PREMIUM
*******************************************************/

/* Imagens de ranking */
.rankings img {
    max-height: 32px;
    display: block;
    margin: 0 auto;
}

/* ================================
   FORMULÁRIO DE PESQUISA
================================ */

.rankings .bar {
    padding: 6px 10px;
    border: 1px solid rgba(0,140,255,0.35);
    font-size: 14px;
    background-color: rgba(0,10,40,0.65);
    color: #d9e9ff;
    width: 100%;
    max-width: 200px;
    text-align: center;
    border-radius: 8px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.rankings .bar:hover,
.rankings .bar:focus {
    border-color: #009aff;
    box-shadow: 0 0 14px rgba(0,140,255,0.45);
}

/* Botão */
.rankings .btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #07101f, #040a14);
    color: #d9e9ff;
    border: 1px solid rgba(0,120,255,0.32);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0,140,255,0.20);
    transition: all 0.25s ease;
}

.rankings .btn:hover {
    background: linear-gradient(135deg, #0a162c, #07101f);
    transform: scale(1.07);
    box-shadow: 0 0 16px rgba(0,150,255,0.45);
}

/* ================================
   TABELA DO RANKING
================================ */

.rankings td,
.rankings th {
    background: rgba(0,10,40,0.42);
    border-bottom: 1px solid rgba(0,120,255,0.18);
    color: #cfe4ff;
}

/* Linhas pares */
.thell {
    background: rgba(0,20,65,0.42);
}

/* Linhas ímpares */
.tdunkel {
    background: rgba(0,15,50,0.45);
}

/* Linha destacada */
.tmarkiert {
    background: rgba(0,120,255,0.18) !important;
    color: #e9f5ff !important;
    font-weight: 600;
    border-left: 2px solid #009aff;
    border-right: 2px solid #009aff;
    box-shadow:
        0 0 12px rgba(0,140,255,0.45),
        inset 0 0 14px rgba(0,140,255,0.35);
    transition: transform 0.20s ease, box-shadow 0.25s ease;
}

.tmarkiert:hover {
    transform: scale(1.015);
    box-shadow:
        0 0 18px rgba(0,160,255,0.70),
        inset 0 0 18px rgba(0,150,255,0.55);
}

/* ================================
   PAGINAÇÃO
================================ */

.pagination {
    display: flex;
    justify-content: center !important;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.page-link {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0,10,35,0.65);
    border: 1px solid rgba(0,120,255,0.25);
    color: #d9e9ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 6px;
    min-width: 38px;
    text-align: center;
    user-select: none;
}

.page-link:hover:not(.disabled):not(.current) {
    background: rgba(0,20,60,0.75);
    box-shadow: 0 0 10px rgba(0,120,255,0.40);
    transform: scale(1.05);
}

.page-link.current {
    background: rgba(0,120,255,0.25);
    border-color: #009aff;
    box-shadow: 0 0 12px rgba(0,140,255,0.55);
    cursor: default;
}

.page-link.disabled {
    background-color: rgba(50,50,50,0.4);
    color: #666;
    border-color: rgba(100,100,100,0.3);
    cursor: default;
    pointer-events: none;
}

/* ================================
   ALERTA
================================ */

.meldung {
    text-align: center;
    color: #cfe4ff;
    font-weight: 700;
    margin: 12px 0;
    text-shadow: 0 0 6px rgba(0,140,255,0.45);
}

/* ================================
   RESPONSIVIDADE
================================ */

@media (max-width: 768px) {
    .rankings-container {
        padding: 10px;
    }
    .rankings th, .rankings td {
        padding: 8px 6px;
        font-size: 12px;
    }
    .rankings .bar {
        max-width: 120px;
        font-size: 12px;
        padding: 4px 6px;
    }
    .page-link {
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Scroll horizontal para a tabela em telemóveis */
    .rankings {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}



          .verhistory {
            display: inline-block;        /* para definir largura/altura */
            width: 30px;                  /* largura da imagem desejada */
            height: 30px;                 /* altura da imagem */
            text-indent: -9999px;         /* esconde o texto */
            overflow: hidden;             /* corta o texto fora */
            white-space: nowrap;          /* impede quebra */
            background-image: url('../images/icon-history.png');  /* caminho da imagem */
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;     /* ajusta a imagem dentro do espaço */
            cursor: pointer;              /* muda cursor para mãozinha */
            vertical-align: middle;       /* alinha verticalmente */
          }

          .verhistory:hover {
            background-image: url('../images/icon-history-hover.png'); /* imagem para hover */
          }

          /* Dropdown básico */
          .navbar-nav .dropdown-menu {
            background-color: #1a1a55; /* cor de fundo do submenu */
            border-radius: 6px;
            padding: 0.5rem 0;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
            min-width: 200px;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            position: absolute;
            z-index: 1000;
          }

          /* Mostrar o dropdown no hover do pai */
          .nav-item.dropdown:hover > .dropdown-menu,
          .nav-item.dropdown:focus-within > .dropdown-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
          }

          /* Itens do submenu */
          .navbar-nav .dropdown-menu .dropdown-item {
            color: #fff;
            padding: 10px 20px;
            font-weight: 600;
            transition: background-color 0.3s ease, color 0.3s ease;
            cursor: pointer;
          }

          /* Hover no item do submenu */
          .navbar-nav .dropdown-menu .dropdown-item:hover,
          .navbar-nav .dropdown-menu .dropdown-item:focus {
            background-color: #1a1a55; /* vermelho forte ao passar */
            color: #fff;
            text-decoration: none;
            outline: none;
          }

          /* Remover underline dos links padrão */
          .navbar-nav .nav-link {
            transition: color 0.3s ease;
          }

          /* Hover no link principal */
          .navbar-nav .nav-link:hover,
          .navbar-nav .nav-link:focus {
            color: #1a1a55; /* vermelho para destaque */
          }

          /* Pequena seta ao lado do dropdown-toggle */
          .navbar-nav .dropdown-toggle::after {
            border-top: 0.3em solid #fff; /* seta branca */
            border-right: 0.3em solid transparent;
            border-left: 0.3em solid transparent;
            content: "";
            display: inline-block;
            margin-left: 0.4em;
            vertical-align: middle;
            transition: transform 0.3s ease;
          }

          /* Gira a seta quando aberto */
          .nav-item.dropdown.show > .nav-link.dropdown-toggle::after {
            transform: rotate(180deg);
          }

/* ============================================================
   CHARCSS – DARK BLUE NEON PREMIUM
============================================================ */

.charcss {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem auto;

    border-collapse: collapse;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    background-color: #070720;
    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(0,120,255,0.25);
    box-shadow:
        0 0 18px rgba(0,120,255,0.25),
        inset 0 0 12px rgba(0,120,255,0.15);
}

/* ----------------------
   HEADERS
----------------------- */
.charcss th {
    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #fff8dc;

    font-weight: 700;
    font-size: 15px;

    padding: 14px 16px;
    text-align: left;

    text-shadow: 1px 1px 3px #000;
    user-select: none;

    border-bottom: 1px solid rgba(0,120,255,0.45);
}

/* ----------------------
   CELLS
----------------------- */
.charcss td {
    padding: 14px 16px;
    font-size: 14px;
    color: #fff8dc;

    background-color: #0b0f26;
    border: none;
    vertical-align: middle;

    border-bottom: 1px solid rgba(0,120,255,0.10);
}

/* Alternância de linhas */
.charcss tr:nth-child(even) td {
    background-color: #1a1a33;
}

/* ----------------------
   LINKS
----------------------- */
.charcss a {
    color: #66b2ff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.charcss a:hover {
    color: #a8d4ff;
    text-shadow: 0 0 6px rgba(0,150,255,0.6);
}

/* ----------------------
   SELECT (lista de amigos)
----------------------- */
.charcss select {
    width: 100%;
    padding: 8px 10px;

    font-size: 13px;
    border-radius: 8px;

    background-color: #050912;
    color: #fff8dc;

    border: 1px solid rgba(0,120,255,0.35);
    transition: border 0.3s, box-shadow 0.25s;
}

.charcss select:focus {
    border-color: #009aff;
    box-shadow: 0 0 12px rgba(0,150,255,0.5);
}

.charcss select option {
    background-color: #0a0e20;
    color: #fff8dc;
}

/* ----------------------
   ROUNDED CORNERS
----------------------- */
.charcss tr:first-child th:first-child {
    border-top-left-radius: 16px;
}
.charcss tr:first-child th:last-child {
    border-top-right-radius: 16px;
}
.charcss tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.charcss tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* ----------------------
   RESPONSIVE MODE
----------------------- */
@media (max-width: 768px) {

    .charcss {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .charcss th,
    .charcss td {
        white-space: nowrap;
        text-align: center;

        font-size: 13px;
        padding: 8px;
    }
}


/* ============================================================
   TABLES (class, altpass, altsafe) — DARK BLUE NEON PREMIUM
============================================================ */

.class,
.altpass,
.altsafe {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    border-collapse: collapse;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    background-color: #070720;

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(0,120,255,0.25);
    box-shadow:
        0 0 15px rgba(0,120,255,0.25),
        inset 0 0 12px rgba(0,120,255,0.15);
}

/* ----------------------
   HEADERS
----------------------- */
.class th, .altpass th, .altsafe th {
    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #fff8dc;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 16px;
    text-align: left;
    border: none;
    user-select: none;

    text-shadow: 1px 1px 3px #000;

    border-bottom: 1px solid rgba(0,120,255,0.55);
}

/* ----------------------
   CELLS
----------------------- */
.class td, .altpass td, .altsafe td {
    padding: 14px 16px;
    font-size: 14px;
    color: #fff8dc;
    background-color: #0c0f26;
    border: none;
    vertical-align: middle;

    border-bottom: 1px solid rgba(0,120,255,0.08);
}

/* Alternância */
.class tr:nth-child(even) td,
.altpass tr:nth-child(even) td,
.altsafe tr:nth-child(even) td {
    background-color: #1a1a33;
}

/* ----------------------
   INPUTS
----------------------- */
.class input.bar,
.altpass input.bar,
.altsafe input.bar {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;

    background-color: #050912;
    color: #d9e9ff;

    border: 1px solid rgba(0,120,255,0.35);

    transition: border 0.3s, box-shadow 0.3s;
}

.class input.bar:focus,
.altpass input.bar:focus,
.altsafe input.bar:focus {
    border-color: #009aff;
    box-shadow:
        0 0 10px rgba(0,150,255,0.55),
        inset 0 0 12px rgba(0,150,255,0.35);
    outline: none;
}

/* ----------------------
   BUTTONS
----------------------- */
.class input.btnreg,
.altpass input.btnreg,
.altsafe input.btnreg {
    padding: 12px 26px;

    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #fff8dc;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;

    cursor: pointer;
    font-size: 15px;
    margin: 6px;

    transition:
        background 0.3s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.class input.btnreg:hover,
.altpass input.btnreg:hover,
.altsafe input.btnreg:hover {
    background: linear-gradient(135deg, #1a1a55, #0a0a33);
    transform: scale(1.05);

    border-color: #009aff;

    box-shadow:
        0 0 18px rgba(0,150,255,0.55),
        inset 0 0 10px rgba(0,150,255,0.35);
}

/* ----------------------
   SELECTS
----------------------- */
.class select,
.altpass select,
.altsafe select {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;

    background-color: #050912;
    color: #fff8dc;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 8px;

    transition: border 0.3s, box-shadow 0.25s;
}

.class select:focus,
.altpass select:focus,
.altsafe select:focus {
    border-color: #009aff;
    box-shadow: 0 0 10px rgba(0,150,255,0.45);
}

.class select option,
.altpass select option,
.altsafe select option {
    background-color: #0a0e20;
    color: #fff8dc;
}

/* ----------------------
   ROUNDED CORNERS
----------------------- */
.class tr:first-child th:first-child,
.altpass tr:first-child th:first-child,
.altsafe tr:first-child th:first-child {
    border-top-left-radius: 16px;
}
.class tr:first-child th:last-child,
.altpass tr:first-child th:last-child,
.altsafe tr:first-child th:last-child {
    border-top-right-radius: 16px;
}
.class tr:last-child td:first-child,
.altpass tr:last-child td:first-child,
.altsafe tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
.class tr:last-child td:last-child,
.altpass tr:last-child td:last-child,
.altsafe tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* ----------------------
   RESPONSIVE
----------------------- */
@media (max-width: 768px) {
    .class,
    .altpass,
    .altsafe {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .class th, .class td,
    .altpass th, .altpass td,
    .altsafe th, .altsafe td {
        white-space: nowrap;
        text-align: center;
        font-size: 13px;
        padding: 8px;
    }
}



          .menue {
            list-style: none;          /* Remove marcadores de lista */
            padding: 0;
            margin: 20px auto;            /* Centraliza o menu horizontalmente */
            background-color: #212529; /* Fundo escuro */
            display: flex;             /* Menu horizontal */
            justify-content: center;   /* Centra os itens horizontalmente */
            border-radius: 5px;
            overflow: hidden;
            font-family: Arial, sans-serif;
          }

          .menue li {
            margin: 0 10px;            /* Espaçamento horizontal entre os itens */
          }

          .menue li a {
            display: block;
            padding: 12px 20px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s ease;
          }

          .menue li a:hover,
          .menue li a:focus {
            background-color: #1a1a55; /* Fundo vermelho escuro ao passar o rato */
            color: #fff;
            outline: none;
          }

          /* Menu vertical para telas pequenas */
          @media (max-width: 600px) {
            .menue {
              flex-direction: column;
              align-items: center;      /* Centra os itens na vertical */
            }
            .menue li {
              margin: 5px 0;            /* Espaçamento vertical nos itens */
            }
            .menue li a {
              border-bottom: 1px solid #333;
            }
            .menue li:last-child a {
              border-bottom: none;
            }
          }

          .usermenu {
            list-style: none;          /* Remove marcadores de lista */
            padding: 0;
            margin: 20px auto;            /* Centraliza horizontalmente o menu */
            background-color: #212529; /* Fundo escuro */
            display: flex;             /* Menu horizontal */
            justify-content: center;   /* Centra os itens horizontalmente */
            border-radius: 5px;
            overflow: hidden;
            font-family: Arial, sans-serif;
            max-width: 900px;          /* Opcional: limita a largura para melhor visual */
          }

          .usermenu li {
            margin: 0 10px;            /* Espaçamento horizontal entre os itens */
          }

          .usermenu li a {
            display: block;
            padding: 12px 20px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s ease;
          }

          .usermenu li a:hover,
          .usermenu li a:focus {
            background-color: #1a1a55; /* Fundo vermelho escuro ao passar o rato */
            color: #fff;
            outline: none;
          }

          /* Menu vertical para telas pequenas */
          @media (max-width: 600px) {
            .usermenu {
              flex-direction: column;
              align-items: center;      /* Centrar verticalmente na coluna */
            }
            .usermenu li {
              margin: 5px 0;            /* Espaçamento vertical na versão mobile */
            }
            .usermenu li a {
              border-bottom: 1px solid #333;
            }
            .usermenu li:last-child a {
              border-bottom: none;
            }
          }


          .termosco {
            padding: 1.5rem;                        /* espaçamento interno confortável */
            font-size: 0.95rem;                     /* ligeiramente menor que o padrão */
            line-height: 1.6;                       /* boa leitura */
            color: #fff;                         /* texto escuro padrão Bootstrap */
            box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075); /* leve sombra como nos cards */
            max-width: 800px;
            margin: 0 auto;
            background-color: #070720;
            border-radius: 10px;
            text-align: center;
          }

          .termosco p {
            margin-bottom: 1rem;                    /* espaçamento entre parágrafos */
          }

          .logibtn {
            background-color: #1a1a55 !important;
            color: #fff !important;
            border: none !important;
            border-radius: 0.5rem !important; /* Bootstrap rounded */
            padding: 0.5rem 1.25rem !important; /* padding similar ao btn-primary */
            font-weight: 500;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            margin-left: 5px;
        }

        .logibtn:hover, .logibtn:focus {
            background-color: #1a1a55 !important;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
            transform: translateY(-2px);
            outline: none;
        }

        .logibtn:active {
            background-color: #1a1a55 !important;
            transform: translateY(0);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        /* Container geral do formulário */
        .swal2-html-container form {
            width: 100%;
            max-width: 100%;
        }

        /* Labels */
        .swal2-html-container label.form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
            display: block;
        }

        /* Inputs */
        .swal2-html-container input.form-control {
            width: 100%;
            padding: 0.45rem 0.75rem;
            font-size: 1rem;
            border: 1.5px solid #ced4da;
            border-radius: 0.375rem;
            transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .swal2-html-container input.form-control:focus {
            border-color: #1a1a55;
            box-shadow: 0 0 0 0.2rem rgba(26, 26, 85, 0.25);
            outline: none;
        }

        /* Botão de submit */
        .swal2-html-container button.btn-primary {
            background-color: #1a1a55;
            border-color: #1a1a55;
            font-weight: 600;
            padding: 0.5rem 0;
            font-size: 1.05rem;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        .swal2-html-container button.btn-primary:hover,
        .swal2-html-container button.btn-primary:focus {
            background-color: #1a1a55;
            border-color: #1a1a55;
            box-shadow: 0 0 10px rgba(26, 26, 85, 0.7);
            outline: none;
        }

        /* Link para recuperação */
        .swal2-html-container div.mt-2 {
            margin-top: 0.75rem;
        }

        .swal2-html-container div.mt-2 a {
            color: #1a1a55;
            font-style: italic;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .swal2-html-container div.mt-2 a:hover {
            color: #1a1a55;
            text-decoration: underline;
        }

        /* Lista do menu user dentro do SweetAlert */
        .swal2-html-container ul.menusweet {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

        .swal2-html-container ul.menusweet li {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #eee;
        }

        .swal2-html-container ul.menusweet li:last-child {
            border-bottom: none;
        }

        .swal2-html-container ul.menusweet li a {
          color: #333; /* cor neutra escura */
          text-decoration: none;
          font-weight: 600;
          padding: 0.6rem 1rem;
          display: block;
          transition: background-color 0.3s ease, color 0.3s ease;
          border-radius: 0.25rem;
      }

        .swal2-html-container ul.menusweet li a:hover,
        .swal2-html-container ul.menusweet li a:focus {
            background-color: #1a1a55;
            color: #333;
            outline: none;
        }

        .download-container {
            max-width: 750px;
            width: 100%;
            margin: 0 auto;
            padding: 40px;

            /* Fundo igual à .fundobg */
            background: rgba(0,10,40,0.55);
            border: 1px solid rgba(0,120,255,0.25);

            border-radius: 12px;

            /* Glow premium */
            box-shadow: 0 0 18px rgba(0,120,255,0.25);

            text-align: center;
            color: #d9e9ff;

            /* Suavidade */
            backdrop-filter: blur(2px);
        }

/* ============================================
   BOTÃO DE DOWNLOAD – DARK BLUE NEON PREMIUM
============================================ */

.download-btn {
    display: block;
    width: fit-content; /* apenas o tamanho do conteúdo */
    margin: 0 auto 12px auto; /* centraliza e dá espaço abaixo */
    padding: 14px 32px;

    /* Gradiente padrão dos teus botões */
    background: linear-gradient(135deg, #0a0a33, #1a1a55);

    color: #fff8dc; /* amarelo suave */
    font-weight: 600;
    text-decoration: none;

    border: 1px solid rgba(0,120,255,0.28);
    border-radius: 10px;

    box-shadow:
        0 0 10px rgba(0,120,255,0.25),
        inset 0 0 12px rgba(0,120,255,0.12);

    cursor: pointer;
    transition:
        background 0.35s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #1a1a55, #0a0a33);
    transform: scale(1.06);

    border-color: #009aff;

    box-shadow:
        0 0 18px rgba(0,150,255,0.55),
        inset 0 0 16px rgba(0,150,255,0.45);

    color: #fff8dc;
}


        .info {
            margin-top: 30px;
            text-align: center; /* mantém o container centrado */
            font-size: 15px;
            line-height: 1.6;
        }

        .info h3 {
            text-align: left; /* títulos alinhados à esquerda */
            margin-bottom: 10px;
            margin-left: 38px; /* ou usa margin-left, conforme preferires */
        }

        .info ul {
            display: inline-block; /* mantém a lista como bloco inline */
            text-align: left;       /* bullets alinhados à esquerda */
            list-style-position: inside;
            padding-left: 0;
            margin: 0;
        }

        .info li {
            margin-bottom: 5px;
        }

/* Container do botão */
.volbtn {
    text-align: center;
    margin-top: 25px;
}

/* Botão Neon Premium */
.volbtn a {
    display: inline-block;

    padding: 10px 24px;

    background: linear-gradient(135deg, #07101f, #0a0a33);
    color: #d9e9ff;

    border: 1px solid rgba(0,120,255,0.32);
    border-radius: 10px;

    text-decoration: none;
    font-weight: 700;
    cursor: pointer;

    /* Glow suave */
    box-shadow: 0 0 14px rgba(0,140,255,0.25);

    transition: all 0.25s ease;
}

/* Hover Neon Forte */
.volbtn a:hover {
    background: linear-gradient(135deg, #0a162c, #07101f);
    color: #e9f5ff;

    transform: scale(1.07);

    box-shadow:
        0 0 20px rgba(0,150,255,0.45),
        inset 0 0 8px rgba(0,120,255,0.35);
}


        .newstab {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto 2rem auto;
          border-collapse: collapse;
          font-family: Arial, sans-serif;
          box-shadow: 0 0 10px rgba(0,0,0,0.1);
          background-color: #fff;
          border-radius: 8px;
          overflow: hidden;
        }

        .newstab th,
        .newstab td {
          padding: 12px 15px;
          text-align: left;
          vertical-align: top;
        }

        .newstab th.topLine {
          background-color: #212529;
          color: #fff;
          font-weight: bold;
          width: 20%;
        }

        .newstab td.thell {
          background-color: #f7f9fb;
          color: #333;
        }

        .newstab td.tdunkel {
          background-color: #e9eff5;
          color: #333;
        }

        .newstab tr:nth-child(even) td.thell {
          background-color: #e9eff5;
        }

        .newstab tr:nth-child(odd) td.tdunkel {
          background-color: #f7f9fb;
        }

        /* Inputs estilo barra */
        .newstab input.bar,
        .newstab textarea {
          padding: 8px;
          border: 1px solid #ccc;
          border-radius: 4px;
          font-size: 14px;
          transition: border-color 0.3s, box-shadow 0.3s;
          box-sizing: border-box;
        }

        .newstab input.bar:focus,
        .newstab textarea:focus {
          border-color: #007BFF;
          box-shadow: 0 0 4px rgba(26, 26, 85, 0.5);
          outline: none;
        }

        /* Checkbox */
        .newstab input[type="checkbox"] {
          margin-right: 6px;
          transform: scale(1.2);
          vertical-align: middle;
        }

        /* Botão de submit */
        .newstab input.btn {
          padding: 10px 20px;
          background-color: #1a1a55;
          color: #fff;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          font-size: 15px;
          margin: 5px auto;
          transition: background-color 0.3s;
          display: block;
        }

        .newstab input.btn:hover {
          background-color: #1a1a55;
        }

        /* Links dentro da tabela de notícias */
        .newstab a {
          color: #007BFF;
          text-decoration: none;
        }

        .newstab a:hover {
          text-decoration: underline;
        }

        /* Responsivo */
        @media (max-width: 600px) {
          .newstab,
          .newstab th,
          .newstab td {
            display: block;
            width: 100%;
          }

          .newstab th.topLine {
            text-align: center;
          }
        }

        .listnews {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto 2rem auto;
          border-collapse: collapse;
          font-family: Arial, sans-serif;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          background-color: #fff;
          border-radius: 8px;
          overflow: hidden;
        }

        .listnews th,
        .listnews td {
          padding: 12px 15px;
          text-align: left;
          vertical-align: middle;
        }

        /* Cabeçalhos */
        .listnews th.topLine {
          background-color: #212529;
          color: #fff;
          font-weight: bold;
        }

        /* Linhas alternadas com classes definidas no PHP */
        .listnews td.thell {
          background-color: #f7f9fb;
          color: #333;
        }

        .listnews td.tdunkel {
          background-color: #e9eff5;
          color: #333;
        }

        /* Efeito hover para toda a linha */
        .listnews tr:hover td {
          background-color: #d6e4f1;
        }

        /* Ícones */
        .listnews img {
          width: 18px;
          height: 18px;
        }

        /* Links */
        .listnews a {
          color: #007BFF;
          text-decoration: none;
        }

        .listnews a:hover {
          text-decoration: underline;
        }

        /* Responsivo */
        @media (max-width: 600px) {
          .listnews,
          .listnews th,
          .listnews td {
            display: block;
            width: 100%;
          }

          .listnews th.topLine {
            text-align: center;
          }

          .listnews td {
            padding: 10px;
          }
        }

        .select-style {
          padding: 8px 10px;
          border: 1px solid #ccc;
          border-radius: 4px;
          background-color: #fff;
          font-size: 14px;
          font-family: Arial, sans-serif;
          transition: border-color 0.3s, box-shadow 0.3s;
        }

        .select-style:focus {
          border-color: #007BFF;
          box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
          outline: none;
        }

        .welcomelog {
          text-align: center;
          font-size: 18px;
          font-weight: normal;
          color: #fff;
          margin: 20px 0;
        }

        .welcomelog b {
          color: #fff; /* Cor de destaque para o nome */
        }

        /* ============================================================
   DONATE FORM — DARK BLUE NEON PREMIUM
============================================================ */

.donate-form {
    max-width: 500px;
    margin-bottom: 2rem;

    background: rgba(0, 10, 40, 0.55);
    border: 1px solid rgba(0, 120, 255, 0.28);

    border-radius: 12px;
    padding: 2rem;

    box-shadow: 
        0 0 18px rgba(0, 120, 255, 0.22),
        inset 0 0 12px rgba(0, 120, 255, 0.15);

    color: #d9e9ff;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

/* ----------------------------
   TÍTULO
----------------------------- */
.donate-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #cfe4ff;
    text-shadow: 0 0 6px rgba(0,150,255,0.5);
}

/* ----------------------------
   LABELS
----------------------------- */
.donate-label {
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    color: #b7d4ff;
}

/* ----------------------------
   INPUTS & SELECTS
----------------------------- */
.donate-select,
.donate-input {
    width: 100%;
    padding: 0.5rem 0.75rem;

    font-size: 14px;
    color: #d9e9ff;

    background-color: rgba(5, 10, 25, 0.75);
    border: 1px solid rgba(0,120,255,0.35);

    border-radius: 8px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.donate-select option {
    background: #0a0e20;
    color: #d9e9ff;
}

/* FOCO */
.donate-select:focus,
.donate-input:focus {
    border-color: #009aff !important;
    box-shadow: 0 0 12px rgba(0,150,255,0.5) !important;
    outline: none;
}

/* ----------------------------
   BOTÃO DOAR / NEXT / ETC
----------------------------- */

.donate-submit {
    padding: 10px 20px;
    min-width: 140px;

    background: linear-gradient(135deg, #07101f, #0a1a33); /* gradiente neon */
    color: #fff8dc;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;

    cursor: pointer;
    font-size: 15px;
    font-weight: 600;

    text-align: center;

    transition:
        background 0.3s ease,
        transform 0.12s ease,
        box-shadow 0.25s ease,
        border-color 0.3s ease;
}

.donate-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #0a1a33, #07101f);
    color: #fff8dc;

    transform: scale(1.06);

    border-color: #009aff;
    box-shadow: 0 0 14px rgba(0,150,255,0.7),
                0 0 28px rgba(0,120,255,0.45);
}

.donate-submit:active:not(:disabled) {
    transform: scale(0.97);
}

/* Estado desativado */
.donate-submit:disabled {
    background: rgba(20, 30, 50, 0.4);
    color: #6f7f99;

    border: 1px solid rgba(0,120,255,0.15);
    cursor: not-allowed;

    opacity: 0.5;
    box-shadow: none;
    transform: none;
}

/* ----------------------------
   OPÇÕES DE PAGAMENTO
----------------------------- */
.donate-payment-option {
    display: inline-flex;
    align-items: center;

    padding: 0.6rem 1rem;
    margin-right: 1rem;

    background-color: rgba(10, 10, 25, 0.8);
    color: #d9e9ff;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;

    cursor: pointer;
    user-select: none;

    transition: all 0.25s ease, box-shadow 0.25s ease;
}

.donate-payment-option img {
    height: 28px;
    margin-right: 0.5rem;
}

.donate-payment-option:hover {
    border-color: #009aff;
    box-shadow: 0 0 10px rgba(0,150,255,0.5);
}

/* Selecionada */
.donate-payment-option.selected {
    border-color: #00b7ff;
    background-color: rgba(0,60,120,0.45);
    box-shadow: 0 0 14px rgba(0,150,255,0.7);
}

/* Esconder input interno */
.donate-payment-option input {
    display: none;
}

/* ----------------------------
   CAMPOS CONDICIONAIS
----------------------------- */
.donate-payment-fields {
    margin-bottom: 1rem;
    padding: 1rem;

    background: rgba(0, 10, 40, 0.35);
    border: 1px dashed rgba(0,120,255,0.32);

    border-radius: 10px;
    color: #d9e9ff;
}

/* Escondidos */
.donate-hidden {
    display: none;
}

/* ----------------------------
   ANIMAÇÃO ENTRE ETAPAS
----------------------------- */
.animate-slide {
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ----------------------------
   LAYOUT DOS BOTÕES DA ETAPA 2
----------------------------- */
.d-flex.justify-content-between {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

#back-btn {
    padding: 10px 20px;
    min-width: 120px;

    background: rgba(0, 10, 40, 0.55);
    color: #cfe4ff;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;

    cursor: pointer;
    font-size: 15px;
    font-weight: 600;

    transition: 
        background 0.3s ease,
        transform 0.12s ease,
        box-shadow 0.22s ease;
}

#back-btn:hover {
    background: rgba(0, 30, 70, 0.65);
    box-shadow: 0 0 12px rgba(0,150,255,0.65);
    transform: scale(1.05);
}

#back-btn:active {
    transform: scale(0.96);
}

/* Texto adicional */
.text-doacao {
    color: #d9e9ff;
}


        /* Estilo da tabela de doações */
        .donations-table-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* para smooth scroll no iOS */
        }

        .donations-table {
            border-collapse: collapse;
            width: 100%;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-size: 0.9rem;
        }

        .donations-table th,
        .donations-table td {
            border: 1px solid #dee2e6; /* cor padrão de border do Bootstrap */
            padding: 0.5rem 0.75rem;
            vertical-align: middle;
        }

        .donations-table th {
            background-color: #f8f9fa; /* cinza claro do Bootstrap */
            color: #212529;
            font-weight: 600;
            text-align: center;
        }

        .donations-table td {
            text-align: center;
            color: #495057;
        }

        /* Botões personalizados para ações */
        .donations-table form button {
            padding: 0.25rem 0.5rem;
            font-size: 0.85rem;
            border-radius: 0.2rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .donations-table form button[name="action"][value="accept"] {
            background-color: #198754; /* verde Bootstrap */
            color: white;
            margin-right: 0.3rem;
        }

        .donations-table form button[name="action"][value="accept"]:hover {
            background-color: #157347;
        }

        .donations-table form button[name="action"][value="reject"] {
            background-color: #1a1a55; /* vermelho Bootstrap */
            color: white;
        }

        .donations-table form button[name="action"][value="reject"]:hover {
            background-color: #070720;
        }

        /* Mensagem de nenhuma doação */
        .donations-table .no-donations {
            text-align: center;
            font-style: italic;
            color: #6c757d; /* cinza bootstrap */
        }

        /* Ajuste responsivo simples */
        @media (max-width: 768px) {
            .donations-table th, 
            .donations-table td {
                font-size: 0.8rem;
                padding: 0.35rem 0.5rem;
            }

            .donations-table form button {
                font-size: 0.75rem;
                padding: 0.2rem 0.4rem;
            }
        }

        .referral-form {
            max-width: 500px;
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Título */
        .referral-title {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: #3b3b3b;
        }

        /* Labels */
        .referral-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
            color: #4a4a4a;
        }

        /* Selects & Inputs */
        .referral-select,
        .referral-input {
            width: 100%;
            border-radius: 0.5rem;
            padding: 0.5rem 0.75rem;
            border: 1px solid #ced4da;
            font-size: 1rem;
            color: #495057;
            box-sizing: border-box;
            transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .referral-select:focus,
        .referral-input:focus {
            border-color: #1a1a55 !important;
            box-shadow: 0 0 0 0.25rem rgba(26,26,85,0.5) !important;
            outline: none;
        }

        /* Pequenos inputs lado a lado */
        .referral-input-small {
            width: 120px;
            display: inline-block;
            vertical-align: middle;
        }

        /* Botão */
        .referral-submit {
            width: 100%;
            font-size: 1.1rem;
            padding: 0.6rem;
            border-radius: 0.5rem;
            background-color: #1a1a55;
            color: #fff;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
        }

        .referral-submit:hover {
            background-color: #1a1a55; /* tom mais claro para hover */
        }

        .swal-scrollable {
          max-height: 250px;
          overflow-y: auto;
          padding-right: 10px;
          text-align: left;
        }

        .swal-scrollable ul {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .swal-scrollable li {
          margin-bottom: 10px;
        }

        #customImageButton {
          position: relative;
          display: inline-block;
          width: 40px;
          height: 40px;
          background: url('../images/donation.png') no-repeat center center;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          border: none;
          background-color: transparent;
        }

        #customImageButton:hover {
          background-image: url('../images/donation_hover.png');
        }

        #customImageButton .pending-count {
          position: absolute;
          top: -6px;
          right: -6px;
          background: #1a1a55;
          color: white;
          font-size: 12px;
          font-weight: bold;
          border-radius: 50%;
          padding: 2px 6px;
          line-height: 1;
          min-width: 18px;
          text-align: center;
          box-shadow: 0 0 3px rgba(0,0,0,0.4);
          pointer-events: none;
        }

        .swal2-confirm.btn-confirm-custom {
            background-color: #1a1a55 !important;
            color: #fff !important;
            border: none;
            box-shadow: none;
        }

        .swal2-confirm.btn-confirm-custom:hover {
            background-color: #1a1a55 !important;
        }

        #customImageButton2 {
          position: relative;
          display: inline-block;
          width: 40px;
          height: 40px;
          background: url('../images/rescode.png') no-repeat center center;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          border: none;
          background-color: transparent;
        }

        #customImageButton2:hover {
          background-image: url('../images/rescode_hover.png');
        }

/* ============================================
   CUSTOM REDEEM – DARK BLUE NEON PREMIUM
============================================ */

.custom-redeem {
    max-width: 400px;
    margin: 20px auto;
    
    display: flex;
    flex-direction: column;
    gap: 15px;

    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,120,255,0.25);
    border-radius: 12px;

    padding: 2rem;

    box-shadow: 0 0 16px rgba(0,120,255,0.22);
    backdrop-filter: blur(2px);
}

.custom-redeem p {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: #d9e9ff;
    margin: 0;
}

/* Layout Input + Botão lado a lado */
.custom-redeem-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* INPUT NEON */
.custom-redeem-form input[type="text"] {
    flex-grow: 1;
    padding: 10px 12px;

    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(0,120,255,0.25);
    border-radius: 8px;

    color: #cfe4ff;
    font-size: 1rem;

    transition: all 0.25s ease;
}

.custom-redeem-form input[type="text"]:focus {
    border-color: #009aff;
    box-shadow: 0 0 10px rgba(0,140,255,0.45);
    outline: none;
}

/* BOTÃO NEON */
.custom-redeem-form button {
    padding: 10px 16px;

    background: linear-gradient(135deg, #07101f, #0a1a33);
    color: #fff8dc;

    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 8px;

    cursor: pointer;
    font-weight: 600;

    transition: background 0.3s ease, transform 0.12s ease, box-shadow 0.25s ease;
}

.custom-redeem-form button:hover {
    background: linear-gradient(135deg, #0a1a33, #07101f);
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(0,150,255,0.7);
}

.custom-redeem-form button:active {
    transform: scale(0.95);
}

/* Mensagem acima do form */
.redeem-message {
    color: #9ecaff;
    font-weight: 700;
    text-align: center;
}


.newredeem {
    max-width: 480px;
    margin: 20px auto;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
}

.newredeem form {
    display: flex;
    flex-direction: column;
}

.newredeem label {
    font-weight: 600;
    color: #343a40;
    margin: 2px 0 1px 0; /* bem colado ao input */
    font-size: 0.9rem;
}

.newredeem input[type="text"],
.newredeem input[type="number"],
.newredeem input[type="date"] {
    padding: 0.25rem 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.newredeem input:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.2);
}

.newredeem button[type="submit"] {
    background-color: #1a1a55;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 6px;
}

.newredeem button[type="submit"]:hover {
    background-color: #1a1a55;
}

/******************************************************
   LOGIN / USER AREA – DARK BLUE NEON PREMIUM
*******************************************************/

/* Container (login e user-area) */
.custom-login-form,
.custom-user-area {
    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,140,255,0.25);
    color: #cfe4ff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(0,120,255,0.25);
}

/* Fundo interno usado noutros elementos */
.fundobg {
    background: rgba(0,10,40,0.55);
    border: 1px solid rgba(0,120,255,0.25);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(0,120,255,0.20);
}

/******************************************************
   INPUTS
*******************************************************/

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(0,120,255,0.25) !important;
    color: #cfe4ff !important;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.25s ease;
}

.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
    border-color: #009aff !important;
    box-shadow: 0 0 14px rgba(0,140,255,0.45);
    outline: none;
}

/* Placeholders */
.custom-login-form input::placeholder {
    color: #a4c8ff;
}

/******************************************************
   CHECKBOX
*******************************************************/

.custom-login-form .form-check-input {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,120,255,0.25);
    transition: all 0.25s ease;
}

.custom-login-form .form-check-input:checked {
    background-color: #009aff;
    border-color: #009aff;
    box-shadow: 0 0 10px rgba(0,150,255,0.50);
}

.custom-login-form .form-check-input:focus {
    outline: none;
    box-shadow: 0 0 12px rgba(0,140,255,0.45);
}

.custom-login-form .form-check-label {
    color: #cfe4ff;
}

/******************************************************
   BOTÕES
*******************************************************/

.custom-btn-primary,
.custom-btn-danger {
    padding: 10px 14px;
    background: linear-gradient(135deg, #07101f, #040a14);
    color: #d9e9ff;
    border: 1px solid rgba(0,120,255,0.32);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(0,140,255,0.20);
}

.custom-btn-primary:hover,
.custom-btn-primary:focus,
.custom-btn-danger:hover,
.custom-btn-danger:focus {
    background: linear-gradient(135deg, #0a162c, #07101f);
    transform: scale(1.07);
    box-shadow: 0 0 16px rgba(0,150,255,0.45);
}

.custom-btn-danger {
    color: #ffdddd;
    border-color: rgba(255,80,80,0.3);
}

.custom-btn-danger:hover {
    box-shadow: 0 0 18px rgba(255,80,80,0.45);
}

/******************************************************
   LINKS NA ÁREA DO UTILIZADOR
*******************************************************/

.custom-user-area ul li a {
    color: #d9e9ff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
    padding-bottom: 3px;
}

/* Underline animado */
.custom-user-area ul li a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    left: 0;
    bottom: 0;
    background: #009aff;
    transition: width 0.25s ease;
}

/* Hover */
.custom-user-area ul li a:hover,
.custom-user-area ul li a:focus {
    color: #009aff;
    transform: scale(1.05);
}

.custom-user-area ul li a:hover::after,
.custom-user-area ul li a:focus::after {
    width: 100%;
}

/* Link ativo */
.custom-user-area ul li a.active {
    color: #009aff !important;
}

.custom-user-area ul li a.active::after {
    width: 100%;
}

/******************************************************
   LINK "RECUPERAR PASSWORD"
*******************************************************/

.custom-login-form .mt-2.text-center a {
    color: #cfe4ff !important;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
}

.custom-login-form .mt-2.text-center a:hover {
    color: #009aff !important;
    text-decoration: underline;
}

/******************************************************
   OUTROS AJUSTES
*******************************************************/


#customImageButton3 {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url('../images/adonation.png') no-repeat center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
}

#customImageButton3:hover {
    background-image: url('../images/adonation_hover.png');
}

#customImageButton3 .pending-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #1a1a55;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 0 3px rgba(0,0,0,0.4);
    pointer-events: none;
}

/* ===============================
   EVENTO – CARD DARK NEON
================================== */
.evento-container {
  background: url('../images/event/eventoox.png') no-repeat center;
  background-size: cover;

  width: 100%;
  max-width: 800px;
  height: 250px;

  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;

  border-radius: 8px;

  /* efeito neon */
  border: 1px solid rgba(0,140,255,0.35);
  box-shadow: 0 0 18px rgba(0,140,255,0.35);
}

/* ===============================
   INFO DO EVENTO
================================== */
.contador-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.evento-info {
  background: rgba(0, 40, 85, 0.65);
  color: #d9e9ff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 90%;

  border: 1px solid rgba(0,120,255,0.25);
  box-shadow: 0 0 12px rgba(0,140,255,0.25);
}

/* ===============================
   CONTADOR AGRUPADO (Horizontal)
================================== */
.contador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  background: rgba(5, 10, 30, 0.92);
  padding: 15px 26px;
  border-radius: 12px;

  border: 1px solid rgba(0,120,255,0.35);
  box-shadow: 0 0 22px rgba(0,140,255,0.35);

/* NOVO → largura limitada */
  max-width: 300px;
  width: 100%;
}

/* Remove visual antigo dos blocos */
.bloco {
  background: none !important;
  border: none !important;
  box-shadow: none !important;

  width: auto;
  height: auto;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #d9e9ff;
  font-size: 28px;
  font-weight: 700;
}

.bloco span {
  font-size: 12px;
  margin-top: 2px;
  color: #9ecaff;
}

/* ===============================
   EVENTO COMEÇOU
================================== */
.evento-comecou {
  font-size: 28px;
  font-weight: bold;
  color: #d9e9ff;

  background-color: rgba(0, 40, 85, 0.75);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;

  border: 1px solid rgba(0,120,255,0.3);
  box-shadow:
    0 0 18px rgba(0,140,255,0.3),
    inset 0 0 12px rgba(0,140,255,0.35);
}

/* ===============================
   MOBILE
================================== */
@media (max-width: 576px) {
  .evento-container {
    height: 250px;
    padding: 10px 10px;
  }

  .contador {
    gap: 12px;
    padding: 10px 16px;
  }

  .bloco {
    font-size: 18px;
  }

  .bloco span {
    font-size: 10px;
  }

  .evento-info {
    font-size: 13px;
    padding: 5px 10px;
  }
}


/* Texto inicial estilo Neon Premium */
.textoinicial {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 25px auto;

    /* Fundo premium translúcido */
    background: rgba(0,10,40,0.55);

    /* Borda neon */
    border: 1px solid rgba(0,120,255,0.25);

    /* Glow azul holográfico */
    box-shadow: 0 0 16px rgba(0,120,255,0.22);

    /* Suavidade futurista */
    backdrop-filter: blur(2px);

    /* Texto */
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #d9e9ff;             /* azul-claro usado no tema */
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    text-align: center;

    border-radius: 12px;
}


.eventoscss {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0 10px;
}

/* Cabeçalho */
.eventoscss th {
  background-color: #343a40;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
}

/* Bordas ar#1a1a55ondadas do cabeçalho */
.eventoscss thead tr th:first-child {
  border-top-left-radius: 12px;
}
.eventoscss thead tr th:last-child {
  border-top-right-radius: 12px;
}

/* Células */
.eventoscss td {
  background-color: #ffffff;
  padding: 14px 16px;
  font-size: 14px;
  color: #111827;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}

/* Ar#1a1a55ondamento dos cantos das linhas */
.eventoscss tbody tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.eventoscss tbody tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Hover suave sem sombra */
.eventoscss tbody tr:hover td {
  background-color: #f1f3f5;
}

/* Zebra */
.eventoscss tbody tr:nth-child(even) td {
  background-color: #f4f5f7;
}

/* Botões */
.eventoscss button,
.eventoscss a.button {
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Botão Ativar/Desativar */
.eventoscss button.toggle {
  background-color: #16a34a;
  color: #ffffff;
}

.eventoscss button.toggle.inactive {
  background-color: #dc2626;
}

.eventoscss button.toggle:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Botão Editar */
.eventoscss a.button.edit {
  background-color: #2563eb;
  color: #ffffff;
}

.eventoscss a.button.edit:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

/* Botão Apagar */
.eventoscss button.delete {
  background-color: #ef4444;
  color: #ffffff;
}

.eventoscss button.delete:hover {
  background-color: #b91c1c;
  transform: scale(1.05);
}

/* Imagem do evento */
.eventoscss td img {
  max-height: 40px;
  border-radius: 6px;
}

/* Centralizar colunas específicas */
.eventoscss th:nth-child(6),
.eventoscss th:nth-child(7),
.eventoscss td:nth-child(6),
.eventoscss td:nth-child(7) {
  text-align: center;
}

/* Responsivo */
@media (max-width: 600px) {
  .eventoscss th,
  .eventoscss td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .eventoscss button,
  .eventoscss a.button {
    width: 100%;
    margin-bottom: 5px;
  }
}


/******************************************************
   RANKING TABLE – DARK BLUE NEON PREMIUM (BORDERLESS)
*******************************************************/

.ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    text-align: center;
    margin: 0 auto;
}

/* Cabeçalho */
.ranking-table th {
    background: linear-gradient(135deg, #07101f, #040a14);
    color: #cfe4ff;
    font-weight: 700;
    padding: 14px 16px;
    text-shadow: 1px 1px 2px #000;
    font-size: 15px;
    border: none !important;            /* SEM BORDAS */
    box-shadow: 0 0 12px rgba(0,140,255,0.25);
}

/* Células */
.ranking-table td {
    background: rgba(0, 20, 60, 0.55);
    color: #d9e9ff;
    padding: 14px 16px;
    border: none !important;            /* SEM BORDAS */
    vertical-align: middle;
    font-size: 14px;
}

/* Linhas alternadas — SEM BORDAS E MESMA COR */
.ranking-table tr:nth-child(even) td,
.ranking-table tr:nth-child(odd) td {
    background: rgba(0, 20, 60, 0.55) !important;
}

/* Linha destacada (única que mantém bordas, pois é neon) */
.ranking-table .tmarkiert td {
    background: rgba(0,120,255,0.18) !important;
    color: #e9f5ff !important;
    font-weight: 600;
    border-left: 2px solid #009aff !important;  /* GLOW NEON */
    border-right: 2px solid #009aff !important;
    box-shadow:
        0 0 12px rgba(0,140,255,0.45),
        inset 0 0 14px rgba(0,140,255,0.35);
    transition: transform 0.20s ease, box-shadow 0.25s ease;
}

.ranking-table .tmarkiert:hover td {
    transform: scale(1.015);
    box-shadow:
        0 0 18px rgba(0,160,255,0.70),
        inset 0 0 18px rgba(0,150,255,0.55);
}

/* Imagens (TOP icons) */
.ranking-table td img {
    max-height: 32px;
    display: block;
    margin: 0 auto;
}


/* ================================
   MINI ICONS – NEON PREMIUM
   (não altera posições/tamanhos)
================================ */

#mini-icons {
    position: fixed;
    left: 0;
    top: 30%;
    z-index: 1500;
    transition: all 0.5s ease-in-out;
}

/* Mesmos tamanhos e estrutura */
#mini-icons > * {
    position: relative;
    width: 56px;
    height: 56px;
    display: block;
    text-align: center;
    line-height: 56px;
}

/* Cantos */
#mini-icons > div:first-child a {
    border-top-right-radius: 20px;
}
#mini-icons > div:last-child a {
    border-bottom-right-radius: 20px;
}

/* ===== BOTÕES ===== */
#mini-icons a {
    display: block;
    color: #cfe4ff;                        /* texto neon suave */
    font-size: 12px;

    background: rgba(5, 9, 18, 0.85);       /* fundo escuro neon */
    border-right: 2px solid rgba(0,150,255,0.35);

    box-shadow: 
        inset 0 0 12px rgba(0,120,255,0.15),
        0 0 10px rgba(0,120,255,0.20);

    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

/* ===== HOVER & ACTIVE ===== */
#mini-icons div:hover a,
#mini-icons div.active a {
    background: rgba(10, 20, 40, 0.95);

    border-right-color: rgba(0,180,255,0.75);
    
    color: #ffffff;

    box-shadow:
        inset 0 0 18px rgba(0,150,255,0.35),
        0 0 18px rgba(0,150,255,0.55),
        0 0 36px rgba(0,180,255,0.45);

    transform: translateX(4px); /* leve puxada neon */
}


.editeventform {
    background-color: #070720;
    color: #fff;
    border: 1px solid #070720;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(84, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.editeventform h2 {
    color: #fff8dc;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.editeventform label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.editeventform input[type="text"],
.editeventform input[type="password"],
.editeventform input[type="email"],
.editeventform input[type="datetime-local"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #1a1a55;
    border-radius: 6px;
    background-color: #fff;
    color: #1a1a55;
    font-size: 14px;
    transition: all 0.3s ease;
}

.editeventform input::placeholder {
    color: #1a1a55;
}

.editeventform input:focus {
    border-color: #1a1a55;
    box-shadow: 0 0 0 0.2rem rgba(26, 26, 85, 0.25);
    outline: none;
}

.editeventform .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.editeventform .form-check-input {
    margin-right: 8px;
    border: 1px solid #1a1a55;
    cursor: pointer;
}

.editeventform .form-check-input:checked {
    background-color: #1a1a55;
    border-color: #1a1a55;
}

.editeventform .form-check-label {
    color: #fff;
    cursor: pointer;
}

.editeventform button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #0a0a33, #1a1a55);
    color: #fff8dc;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.editeventform button:hover,
.editeventform button:focus {
    background: linear-gradient(135deg, #1a1a55, #0a0a33);
    transform: scale(1.05);
    box-shadow: 0 0 10px #1a1a55;
}

/* Corrigir texto branco dentro do SweetAlert */
.swal2-popup,
.swal2-html-container,
.swal2-html-container h5,
.swal2-html-container p {
    color: #333 !important;
}


/* ============================
   NEWSBLOCK – DARK BLUE NEON PREMIUM
============================ */

/* Bloco principal de notícia */
.newsblock {
    background: rgba(0,10,40,0.55);                    /* fundo translúcido neon */
    border: 1px solid rgba(0,120,255,0.25);            /* borda azul suave */
    border-radius: 12px;
    padding: 20px;
    
    max-width: 800px;
    margin: 0 auto 25px auto;

    /* Glow azul holográfico */
    box-shadow: 0 0 16px rgba(0,120,255,0.22);

    color: #d9e9ff;                                    /* texto padrão */
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    backdrop-filter: blur(2px);                        /* efeito vidro */
}

/* Título da notícia */
.newsblock h3 {
    font-size: 1.4em;
    color: #cfe4ff;                                    /* azul-claro tema neon */
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0,140,255,0.45);
}

.newsblock h3 b {
    font-weight: 800;
}

/* Conteúdo principal */
.newsblock .conteudo p {
    margin-top: 0;
    margin-bottom: 8px;
    color: #e9f1ff;                                    /* branco azulado */
}

/* Parágrafos normais */
.newsblock p {
    font-size: 1em;
    line-height: 1.55em;
    color: #bfd4ff;                                    /* texto claro futurista */
    margin-bottom: 15px;
}

/* Rodapé interno da notícia */
.newsblock p.footer {
    font-size: 0.9em;
    color: #99b7e6;                                    /* texto secundário */
    border-top: 1px solid rgba(0,120,255,0.25);
    padding-top: 8px;
    margin-top: 12px;
    font-style: italic;
}

/* Links */
.newsblock a {
    color: #66c3ff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.newsblock a:hover {
    color: #9ad7ff;
    text-decoration: underline;
}

/* Rodapé do bloco (separado) */
.newsblockfooter {
    background: rgba(0,10,40,0.55);
    padding: 8px 10px;
    border-top: 1px solid rgba(0,140,255,0.32);
    box-shadow: 0 0 20px rgba(0,140,255,0.25);
    border-radius: 0 0 12px 12px;
}

/* ============================
   Responsividade
============================ */

@media (max-width: 576px) {
    .newsblock {
        padding: 12px 15px;
    }
}

@media (max-width: 360px) {
    .newsblock h3 {
        font-size: 1.15em;
    }

    .newsblock p {
        font-size: 0.9em;
    }
}

.news-actions {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

/* Botão ler mais */
.news-read {
    padding: 6px 14px;
    background: rgba(0, 120, 255, 0.25);
    border: 1px solid rgba(0,120,255,0.35);
    color: #d9e9ff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.news-read:hover {
    background: rgba(0, 150, 255, 0.35);
    color: white;
    box-shadow: 0 0 10px rgba(0,150,255,0.45);
}

/* Botão Discord */
.news-discord {
    padding: 6px 14px;
    background: rgba(88, 101, 242, 0.25); /* cor do discord */
    border: 1px solid rgba(88, 101, 242, 0.35);
    color: #cfd3ff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.news-discord:hover {
    background: rgba(88, 101, 242, 0.45);
    color: white;
    box-shadow: 0 0 12px rgba(88,101,242,0.55);
}

.news-important {
    color: #ff6b6b;
    font-size: 0.75em;
    font-weight: 700;
    margin-left: 6px;
    text-shadow: 0 0 6px rgba(255,80,80,0.45);
}

/* ============================================================
   STATUS DOS CANAIS — DARK BLUE NEON PREMIUM
============================================================ */

/* Wrapper dos itens */
.pleft {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cada canal individual */
.canal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,20,60,0.55);
    padding: 10px 16px;
    border-radius: 10px;

    border: 1px solid rgba(0,120,255,0.20);
    box-shadow: 0 0 10px rgba(0,120,255,0.15);

}

/* Nome do canal */
.canal-text {
    color: #d9e9ff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(0,140,255,0.35);
}

/* Ícone */
.estado-icon {
}

/* Barra separadora entre canais */
.barra {
    height: 2px;
    width: 100%;
    opacity: 0.25;

    background: linear-gradient(
        to right,
        rgba(0,150,255,0.35),
        rgba(0,80,150,0.20)
    );
}
