        :root {
            --bg: #000;
            --text: #fff;
            --accent: #0000ee;
        }
        * {
            box-sizing: border-box;
        }
        body {
            padding-bottom: 75px;
            background: var(--bg);
            color: var(--text);
            font-family: "Roboto", sans-serif;
            -webkit-font-smoothing: antialiased;
        }
        header {
            text-align: center;
            padding: 45px 5%;
        }
        header img {
            height: 145px;
            transition: 0.25s ease;
        }
        header h1 {
            font-weight: 300;
            font-size: 1.75rem;
            margin: 15px 0 0;
            letter-spacing: 0.5px;
        }
        main {
            margin: 0 auto;
            padding: 0 5.75%;
        }
        .panel {
            padding: 30px;
            border-radius: 21px;
            border: 1px solid #303030;
        }
        .input-group {
            position: relative;
            margin-bottom: 35px;
        }
        .input-group input {
            width: 100%;
            padding: 18px 16px 14px;
            background: #000000;
            border: 1px solid #303030;
            border-radius: 12px;
            color: var(--text);
            font-size: 1rem;
            transition: 0.25s ease;
        }
        .input-group input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 14px rgba(48,79,254,0.35);
        }
        .input-group label {
            position: absolute;
            left: 16px;
            top: 16px;
            font-size: 1rem;
            color: #888;
            pointer-events: none;
            transition: 0.25s ease;
        }
        .input-group input:focus + label,
        .input-group input:not(:placeholder-shown) + label {
            top: -8px;
            font-size: 0.78rem;
            color: var(--accent);
            background: #000000;
            padding: 0 5px;
        }
        .section-title {
            font-size: 1.05rem;
            margin-bottom: 15.75px;
            margin-top: 12px;
            color: var(--accent);
            font-weight: 300;
        }
        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .chip {
            padding: 10px 16px;
            background: #050505;
            border: 1px solid #111;
            border-radius: 50px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.25s ease;
            user-select: none;
        }
        .chip:hover {
            border-color: var(--accent);
        }
        .chip.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 0 12px rgba(48,79,254,0.5);
        }
        .toggle-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #111;
        }
        .toggle-row label {
            font-size: 1rem;
            font-weight: 300;
        }
        .switch {
            width: 52px;
            height: 28px;
            background: #333;
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            transition: 0.25s ease;
        }
        .switch::after {
            content: "";
            position: absolute;
            width: 22px;
            height: 22px;
            background: #fff;
            border-radius: 50%;
            top: 3px;
            left: 4px;
            transition: 0.25s ease;
        }
        .switch.active {
            background: var(--accent);
        }
        .switch.active::after {
            left: 26px;
            background: #fff;
        }
        button {
            width: 100%;
            margin-top: 40px;
            padding: 16px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.25s ease;
        }
        button:hover {
            transform: translateY(-1px);
        }
        #messageBox {
            margin-top: 25px;
            min-height: 25px;
            font-size: 0.9rem;
            font-weight: 300;
        }
        @media(max-width: 475px) {
            .panel {
                padding: 21px;
            }
        }
