body {
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

.logo img {
    width: 180px;
    margin-bottom: 40px;
}

.menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 260px;
}

.card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
    background: #ff7b00;
}

.card i {
    font-size: 40px;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: white;
}
