* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: radial-gradient(circle at top,
        #7b2ff7 0%,
        #4b1489 40%,
        #240046 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 200px 200px;
    opacity: 0.25;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 700px;
    padding: 50px;
    background: rgba(20, 10, 40, 0.75);
    border-radius: 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    color: #d2b7ff;
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 500;
}

p {
    color: #e0d4ff;
    line-height: 1.7;
    margin-bottom: 15px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    border: none;
    padding: 18px 38px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

/* ── Botões da home ── */
.btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-main {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(124,58,237,0.5);
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(124,58,237,0.7);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.35);
    color: #d4bbff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s, transform 0.15s;
}

.btn-secondary:hover {
    background: rgba(124,58,237,0.3);
    transform: translateY(-1px);
    color: white;
}

.btn-icon { font-size: 16px; }

/* Botão "Ajude a votar" (cor do Top.gg) */
.btn-vote {
    background: rgba(255,51,102,0.15);
    border-color: rgba(255,51,102,0.45);
    color: #ffb3c4;
}
.btn-vote:hover {
    background: #ff3366;
    color: white;
}

@media (max-width: 480px) {
    .btn-grid { grid-template-columns: 1fr; }
    .btn-main { grid-column: auto; }
}

.footer-links {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(15, 5, 30, 0.35);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(15, 5, 30, 0.35);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
}
.footer-links a {
    color: #d7b3ff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 5, 30, 0.35);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-navbar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(168,85,247,0.4);
}

.logo-navbar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-hepo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 30px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

    .btn {
        width: 100%;
    }
}

        .author {
            margin-top: 20px;
            font-size: 16px;
            text-align: center;
            opacity: 0.8;
        }

        .author a {
            color: #d7b3ff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(168,85,247,0.5);
        }

        .author a:hover {
            color: white;
            text-shadow: 0 0 15px rgba(168,85,247,0.7);
        }
.tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    justify-content: center;

    margin-bottom: 30px;
}

.tab-btn {

    background: rgba(168,85,247,0.2);

    color: white;

    border: 1px solid rgba(168,85,247,0.5);

    padding: 12px 20px;

    border-radius: 12px;

    cursor: pointer;

    transition: 0.3s;
}

.tab-btn:hover {

    background: rgba(168,85,247,0.4);
}

.tab-btn.active {

    background: #a855f7;
}

.category {

    text-align: left;

    max-width: 400px;

    margin: auto;
}

.status-dot {
    display: inline-block;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    margin-right: 8px;

    background-color: #ffb703; /* Amarelo padrão (Verificando) */
}
.status-dot.green { background-color: #2ec4b6; } /* Verde Online */

.status-dot.red { background-color: #e63946; }   /* Vermelho Offline */


/* Remove a estilização padrão do Windows/Brave */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #2a2438 !important;
    color: #ffffff !important;
    border: 1px solid #4a3f5a !important;
    padding: 10px 40px 10px 15px !important; /* Espaço para a nova seta */
    border-radius: 6px !important;
    color-scheme: dark !important;
    cursor: pointer;
    
    /* Adiciona uma seta customizada branca no canto direito */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
}

/* Força o fundo das opções internas */
select option {
    background-color: #2a2438 !important;
    color: #ffffff !important;
}
