body {
            background-color: #131313;
            color: #e2e2e2;
            font-family: 'Anybody', sans-serif;
            overflow-x: hidden;
        }
        .brutalist-border {
            border: 2px solid #ffffff;
        }
        input, select, textarea {
            background: #000000 !important;
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
        }
        input:focus, select:focus, textarea:focus {
            border-color: #b8c3ff !important;
            ring: 0 !important;
            outline: none !important;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #434656;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #b8c3ff;
        }
