/* 🧠 Title */
.title {
    font-size: 65px;
    color: #b517ff;
    text-shadow: 0 0 20px rgba(181, 23, 255, 0.4);
}

/* 📝 Subtitle */
.subtitle {
    font-size: 18px;
    color: #b8b8c7;
    max-width: 500px;
    margin: 10px auto;
}

/* 🔘 Buttons */
.buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    transition: 0.2s;
}

.btn.keys {
    background: #b517ff;
    color: white;
}

.btn.keys:hover {
    transform: scale(1.05);
}

.btn.scripts {
    background: #39ff14;
    color: black;
}

.btn.scripts:hover {
    transform: scale(1.05);
}

/* =========================
   🔵 Admin Button
========================= */

.btn.admin {

    background: #2196f3;
    color: white;
}

.btn.admin:hover {

    transform: scale(1.05);
}