@media (max-width: 768px) {

.mobile-view {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: #0a0a0a;
}

.card {
    background: #111;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    color: white;
    box-shadow: 0 0 25px rgba(0,255,255,0.25);
}

.logo {
    width: 120px;
    border-radius: 50%;
    border: 3px solid cyan;
}

h1 {
    font-size: 22px;
    margin-top: 10px;
}

.highlight {
    color: cyan;
    font-weight: bold;
    font-size: 14px;
}

.desc {
    font-size: 13px;
    margin: 15px 0;
    color: #ccc;
}

.btn {
    display: block;
    width: 100%;
    background: cyan;
    color: black;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

/* Better spacing for small phones */
@media (max-width: 400px) {
    .card {
        padding: 20px;
    }
}

}