:root {
    --bg: #050212;
    --card-bg: rgba(21, 14, 45, 0.4);
    --accent: #9d72ff;
    --accent-glow: rgba(157, 114, 255, 0.3);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass-border: rgba(255, 255, 255, 0.08);
}

body { 
    margin: 0; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg); 
    color: var(--text);
    line-height: 1.6;
}

/* Aquí puedes ir agregando todos los estilos de las tarjetas, botones, etc. */
.btn-premium {
    background: var(--accent);
    color: white;
    padding: 15px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}