/*
    CHAOS Solutions, LLC by jennewine.com
    Made for use on any subdomain or path on "kaosu.xyz".

    Made with ❤️ by
        __                          __
        / /______ _____  _______  __/ /
        / //_/ __ `/ __ \/ ___/ / / / / 
        / ,< / /_/ / /_/ (__  ) /_/ /_/  
    /_/|_|\__,_/\____/____/\__,_(_)   
    (Ryder Jennewine)
    Updated: 12/1/2025
*/

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0f0f12;
    color: white;
}

/* NAVBAR */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #15151a;
    padding: 12px 24px;
    border-bottom: 1px solid #26262e;
}

nav img {
    height: 40px; /* export logo at 200x40 px for best scaling */
}

.nav-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.25s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #bb86fc;
}

/* PAGE CONTAINER */
.container {
    max-width: 600px;
    margin: 70px auto;
    text-align: center;
}

h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.desc {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 20px;
}

.warning {
    font-weight: 600;
    color: #e6d0ff;
    margin-bottom: 40px;
}

/* INPUT BOX */
input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid #373740;
    background: #15151a;
    color: white;
    font-size: 16px;
    outline: none;
    transition: border 0.2s ease;
}

input:hover, input:focus {
    border: 2px solid #bb86fc;
}

/* SUBMIT BTN */
button {
    margin-top: 20px;
    padding: 14px 26px;
    background: #bb86fc;
    color: black;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* POPUP OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* POPUP WINDOW */
.popup {
    background: #1c1c22;
    padding: 30px;
    border-radius: 14px;
    width: 350px;
    text-align: center;
    position: relative;
}

.popup h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #bb86fc;
}

.popup p {
    font-size: 17px;
    margin-bottom: 20px;
}

.close-btn {
    background: #bb86fc;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
    border: none;
}

/* PROGRESS BAR */
.progress {
    width: 100%;
    height: 8px;
    border-radius: 6px;
    overflow: hidden;
    background: #282832;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #bb86fc;
    transition: width 2s linear;
}