        body {
            font-family: 'Open Sans', sans-serif;
            font-weight: 800;
        }
        .loader {
            background: radial-gradient(108.37% 50% at 50% 50%, #EC5C15 9%, #C81D20 100%);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 999;
            width: 100%;
            height: 100vh;
            padding: 15px;
            display: flex;
        }
        .loader.is--loaded {
            display: none;
        }
        .loader__logo {
            margin-bottom: 35px;
            width: 100%;
            max-width: 400px;
        }
        .loader__progress {
            width: 100%;
            height: 28px;
            max-width: 340px;
            padding: 4px;
            border-radius: 100px;
            position: relative;
        }
        .loader__progress::before {
            position: absolute;
            content: '';
            left: 4px;
            top: 4px;
            border-radius: 100px;
            width: calc(100% - 8px);
            height: calc(100% - 8px);
            background-color: #fff;
        }
        .loader__progress-line {
            position: relative;
            z-index: 2;
            width: 0;
            height: 100%;
            border-radius: 100px;
            transition: width 0.5s ease;
            background: linear-gradient(to right, #F0B900, #FFF599);
        }
        @media (max-width: 767px) {
            .loader__logo {
                margin-top: -25% !important;
                max-width: 290px !important;
            }
            .loader__progress {
                max-width: 220px;
            }
        }
        .dev-mode {
            visibility: hidden;
            display: none;
        }
        .dev-mode.is--active {
            visibility: visible;
            display: flex;
        }
        .dev-mode .menu-button {
            font-size: 20px;
            color: #fff;
            background: transparent;
            box-shadow: none;
            border: none;
            position: fixed;
            right: 10px;
            top: 10px;
            z-index: 999;
            cursor: pointer;
        }
        .dev-mode .menu-button svg {
            fill: #fff;
            width: 30px;
            height: 30px;
        }
        .dev-mode .menu-button .close {
            display: none;
        }
        .dev-mode .menu-button.is--open .close {
            display: flex;
        }
        .dev-mode .menu-button.is--open .open {
            display: none;
        }
        .dev-mode__wrapper {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            z-index: 998;
            display: none;
        }
        .dev-mode__wrapper.is--open {
            display: flex;
        }
        .dev-mode__wrapper:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0, 0.5);
            z-index: -1;
        }
        .dev-mode__wrapper form {
            width: 100%;
            padding: 30px;
        }
        .dev-mode__wrapper textarea {
            width: 100%;
            height: 500px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .dev-mode__wrapper button {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
    