html,
body {
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: 130px;
    display: flex;
    flex-direction: column;
}

header.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}


.page-content {
    flex: 1 0 auto;
    background-color: #ffffff;
}


.site-footer {
    flex-shrink: 0;
    background: linear-gradient(90deg, #010521 0%, #041f3d 50%, #0a1545 100%);
    color: #a9c7ff;
    text-align: center;
    padding: 16px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.7);
}

.site-footer a {
    color: #22e5ff;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ff3bbf;
    text-decoration: underline;
    text-underline-offset: 3px;
}