@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    background: #0a0a0a;
    color: white;
    text-align: center;
    overflow: hidden;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 2; 
}
.navbar a {
    display: flex;
}
.nav-buttons {
    display: flex;
    gap: 20px;
}
.nav-button {
    padding: 12px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-weight: bold;
}
.nav-button:hover {
    background: linear-gradient(to right, #654ea3, #eaafc8);
    color: white;
}
.sidebar {
    left: -250px;
    width: 250px;
    position: fixed;
    top: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    z-index: 3;
}

.sidebar.open {
    left: 0;
}
.sidebar a {
    padding: 15px;
    text-decoration: none;
    color: white;
    display: block;
    font-size: 20px;
    transition: background 0.3s;
}
.sidebar a:hover {
    background: rgba(255, 255, 255, 0.2);
}
.menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 4;
}
.sidebar-footer {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    transition: margin-left 0.3s;
}
.box {
    width: 80%;
    max-width: 500px;
    height: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    backdrop-filter: blur(15px);
    padding: 20px;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s ease forwards;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    box-shadow: 0 -4px 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.footer-link {
    color: white;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.footer-link:hover {
    text-decoration: underline;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bottom-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    .menu-icon {
        display: block;
    }
    .sidebar {
        left: -250px;
    }
    .sidebar.open {
        left: 0;
    }
    .container {
        margin-left: 0;
    }
}
@media (min-width: 769px) {
    .sidebar {
        display: none;
    }
    .menu-icon {
        display: none;
    }
    .discord-widget {
        display: block;
    }
}
