body {
    
    background: linear-gradient(135deg, #121212, #1e293b);
    margin: 0;
    font-family: "Fredoka", sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    backdrop-filter: brightness(0.5);
    }

    h1 {
    color: #ffcc00;
    margin-top: 20px;
    font-size: 2.2rem;
    }

    h2 {
    color: #38bdf8;
    margin-top: 20px;
    }

    p {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    }

    .highlight {
    color: #ffcc00;
    font-weight: bold;
    }

    .content-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-top: 30px;
    }

    a {
    color: #38bdf8;
    text-decoration: none;
    }

    a:hover {
    text-decoration: underline;
    }

    img.logo {
    width: 30px;
    margin-bottom: 20px;
    }



    .site-name {
    font-family: "Fredoka", sans-serif;
    font-size: 28px;
    color: #e50914;
    margin-right: 20px;
    }

    .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .header-right input {
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    }
    .header-right button {
    padding: 6px 12px;
    font-size: 14px;
    background-color: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    }