:root {
    --glass: rgba(255, 255, 255, 0.07);
    --glass-hover: rgba(255, 255, 255, 0.15);
    --accent: #3892f8;
}

        
body {
    /* Substitui 'fundo.jpg' pelo nome da tua imagem ou um URL */
    background: url('./background.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #f1f5f9;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    margin: 0;
}

/* Ajuste na stats-bar para garantir que ela desliza sobre o fundo fixo */
.stats-bar {
    background: rgba(15, 23, 42, 0.8); /* Cor sólida com transparência para ler melhor sobre o fundo fixo */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--glass-hover);
    border-color: var(--accent);
    color: white;
}

.icon-wrapper {
    font-size: 3.5rem; /* Tamanho maior para Emojis 3D */
    margin-bottom: 15px;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.4));
}

.status-indicator {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 10px #22c55e;
}

.badge-dev {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
    width: fit-content;
}

.stat-badge {
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #cbd5e1;
}