body {
    background-color: #0f0f0f;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    height: 60px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.navl img {
    filter: invert(100%);
    width: 35px;
}

.navr ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navr a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navr a:hover {
    color: #ff9900;
}

main {
    padding: 80px 20px 40px;
    flex-grow: 1;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 60px;
    margin-bottom: 30px;
    color: #ff9800;
    text-shadow: 0 0 15px #ff9800;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(243, 93, 18, 0.8);
    border-radius: 20px;
    padding: 25px;
}

.info p {
    font-size: 20px;
    margin: 20px 0;
    color: #fff3e0;
}

.info strong {
    color: #ffa500;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #111;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.cred {
    color: rgba(255, 255, 255, 0.326)
}

body>footer {
    margin-top: auto;
}

.navl img {
    filter: invert(100%);
    transition: filter 0.3s ease;
}

.navl img:hover {
    filter: invert(54%) sepia(96%) saturate(900%) hue-rotate(-15deg) brightness(105%);
    cursor: pointer;
}