*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    background:#f8fafc;
    font-family:Arial, Helvetica, sans-serif;
}

.page-content{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.logo-container{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    border:1px solid #1a1a1a;
    box-shadow:0 10px 30px rgba(0,0,0,.09);
    text-align:center;
    width:90%;
    max-width:650px;
}

.top-links{
    margin-bottom:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.top-links a{
    color:#2563eb;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.top-links a:hover{
    text-decoration:underline;
}

.top-links span{
    color:#94a3b8;
}

.logo{
    width:350px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    transition:.3s ease;
}

.logo:hover{
    transform:scale(1.03);
}

.tagline{
    margin-top:25px;
    color:#0f172a;
    font-size:1.4rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.subtitle{
    margin-top:12px;
    color:#64748b;
    font-size:1rem;
    line-height:1.5;
}

.site-footer{
    width:100%;
    background:#ffffff;
    border-top:1px solid #e2e8f0;
    text-align:center;
    padding:15px;
    color:#64748b;
    font-size:14px;
}

@media (max-width:768px){

    .logo-container{
        width:95%;
        padding:30px 20px;
    }

    .logo{
        width:250px;
    }

    .tagline{
        font-size:1rem;
        letter-spacing:1px;
    }

    .subtitle{
        font-size:.9rem;
    }

    .top-links a{
        font-size:14px;
    }

}