/*
 * Category: FONTS
 * Author: NutellaServ Team
 * Date: 2018
 */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand.ttf') format('truetype');
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Icons';
    src: url('../fonts/Icons.ttf') format('truetype');
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
 * Category: THEME TOKENS
 * Author: 2025 Modernization
 */
:root {
    color-scheme: dark;
    --transition-theme: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    --color-page-background: #070b16;
    --color-page-background-alt: #0d1020;
    --color-surface: rgba(18, 21, 40, 0.97);
    --color-surface-elevated: #1d2340;
    --color-surface-muted: #12162a;
    --color-border-strong: rgba(255, 255, 255, 0.08);
    --color-border-muted: rgba(125, 69, 255, 0.3);
    --color-quote-background: rgba(255, 255, 255, 0.04);
    --color-input-background: rgba(18, 21, 40, 0.9);

    --color-text-primary: #f5f7ff;
    --color-text-secondary: rgba(245, 247, 255, 0.72);
    --color-text-muted: rgba(245, 247, 255, 0.55);
    --color-text-inverse: #0f1426;
    --color-heading: #ffffff;
    --color-link: #a6adff;

    --gradient-primary: linear-gradient(135deg, #7D45FF, #FF095A);
    --gradient-header: linear-gradient(180deg, #1f1b37 0%, #0d0f1a 100%);
    --gradient-footer: linear-gradient(180deg, #0d0f1a 0%, #1f223b 100%);

    --shadow-soft: 0 20px 45px rgba(7, 10, 24, 0.55);
    --shadow-hover: 0 25px 60px rgba(125, 69, 255, 0.35);
    --shadow-focus: 0 0 0 3px rgba(125, 69, 255, 0.35);
}

:root[data-theme='dark'],
body.dark-theme {
    color-scheme: dark;
}

:root[data-theme='light'],
body.light-theme {
    color-scheme: light;
    --color-page-background: #f5f7ff;
    --color-page-background-alt: #ecf0ff;
    --color-surface: #ffffff;
    --color-surface-elevated: #eef1ff;
    --color-surface-muted: #dde2ff;
    --color-border-strong: rgba(15, 23, 42, 0.12);
    --color-border-muted: rgba(125, 69, 255, 0.25);
    --color-quote-background: rgba(125, 69, 255, 0.08);
    --color-input-background: rgba(255, 255, 255, 0.75);

    --color-text-primary: #101434;
    --color-text-secondary: rgba(16, 20, 52, 0.7);
    --color-text-muted: rgba(16, 20, 52, 0.55);
    --color-text-inverse: #ffffff;
    --color-heading: #05081c;
    --color-link: #7D45FF;

    --gradient-header: linear-gradient(180deg, #ffffff 0%, #e2e7ff 100%);
    --gradient-footer: linear-gradient(180deg, #e6e9ff 0%, #d5d9ff 100%);

    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-hover: 0 25px 55px rgba(125, 69, 255, 0.25);
    --shadow-focus: 0 0 0 3px rgba(125, 69, 255, 0.3);
}

/*
 * Category: RESET
 * Author: NutellaServ Team
 * Date: 2018
 */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    cursor: pointer;
}

body {
    -webkit-text-size-adjust: none;
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    background-color: var(--color-page-background);
    color: var(--color-text-primary);
    opacity: 1;
    transition: opacity 0.6s ease, background-color var(--transition-theme), color var(--transition-theme);
}

html.js-loading body {
    opacity: 0;
}

html.js-loaded body {
    opacity: 1;
}

/*
 * Category: CONTAINERS
 * Author: NutellaServ Team
 * Date: 2018
 */
body {
    background-color: var(--color-page-background);
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    transition: color var(--transition-theme);
}

p,
span,
li,
label,
small {
    color: var(--color-text-primary);
    transition: color var(--transition-theme);
}

a {
    color: var(--color-link);
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus {
    color: #FF095A;
}

/*
 * Category: HEADER
 * Author: NutellaServ Team
 * Date: 2018
 */
header {
    background: var(--gradient-header);
    color: var(--color-heading);
    transition: background var(--transition-theme), color var(--transition-theme);
}

body.primary > header {
    height: 100vh;
}

    body.primary > header > div#one {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1vw;
        height: 2vw;
    }

        body.primary > header > div#one > p {
            font-size: 0.8vw;
            text-transform: lowercase;
            color: var(--color-text-primary);
            transition: color var(--transition-theme);
        }

    body.primary > header > div#two {
        height: calc(100% - 2vw - 3vw);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        body.primary > header > div#two > div#background {
            position: absolute;
            top: 2vw;
            left: 0;
            width: 100%;
            height: calc(100% - 2vw - 3vw);
            z-index: 100;
        }

            body.primary > header > div#two > div#background > div#particles-js {
                position: absolute;
                height: 100%;
                width: 100%;
                z-index: 100;
            }

            body.primary > header > div#two > div#background > div#banner {
                position: absolute;
                height: 100%;
                width: 100%;
                /*background: url('../images/banner2.jpg');*/
                background-attachment: fixed;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
            }

        body.primary > header > div#two > img {
            height: 12vw;
            padding: 1vw;
            z-index: 100;
        }

        body.primary > header > div#two > h1 {
            margin-top: 1vw;
            padding: 0.6vw;
            color: #ffffff;
            font-size: 3.5vw;
            text-transform: uppercase;
            letter-spacing: 0.5vw;
            background: rgba(0, 0, 0, 0.55);
            z-index: 100;
        }

        body.primary > header > div#two > h4 {
            margin-top: 0.4vw;
            padding: 0.2vw;
            color: #ffffff;
            font-size: 2vw;
            background: rgba(0, 0, 0, 0.55);
            z-index: 100;
        }

        body.primary > header > div#two > span {
            margin-top: 2.5vw;
            z-index: 100;
            
        }

        body.primary > header > div#two > span::before {
            cursor: pointer;
            color: rgba(0, 0, 0, 0.6);
            font-size: 2vw;
            font-family: 'Icons';
            content: '\e803';
        }

    body.primary > header > div#three {
        height: 3vw;
        z-index: 100;
    }

    body.primary > header > div#three.fixed {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--color-surface-muted);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

        body.primary > header > div#three > ul {
            display: flex;
            align-items: center;
            justify-content: space-around;
            height: 3vw;
        }
            
            body.primary > header > div#three > ul > li {
                height: 100%;
            }
                
                body.primary > header > div#three > ul > li > a {
                    color: var(--color-text-primary);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-transform: uppercase;
                    margin-bottom: calc(0.25vw / 2);
                    padding: 0 0.5vw;
                    font-size: 1vw;
                    height: calc(100% - 0.25vw);
                }

                body.primary > header > div#three > ul > li > a.artical {
                    border-bottom: 0.25vw #7D45FF solid;
                    margin-bottom: 0;
                }

                body.primary > header > div#three > ul > li > a.artical:hover {
                    background: #7D45FF;
                    transition: all 0.5s;
                }

                body.primary > header > div#three > ul > li > a.artical::before {
                    font-family: 'Icons';
                    content: '\e805';
                    margin-right: 0.25vw;
                }

                body.primary > header > div#three > ul > li > a.shop {
                    border-bottom: 0.25vw #8B0FE8 solid;
                    margin-bottom: 0;
                }

                body.primary > header > div#three > ul > li > a.shop:hover {
                    background: #8B0FE8;
                    transition: all 0.5s;
                }

                body.primary > header > div#three > ul > li > a.shop::before {
                    font-family: 'Icons';
                    content: '\e802';
                    margin-right: 0.25vw;
                }

                body.primary > header > div#three > ul > li > a.statistics {
                    border-bottom: 0.25vw #E80FC0 solid;
                    margin-bottom: 0;
                }

                body.primary > header > div#three > ul > li > a.statistics:hover {
                    background: #E80FC0;
                    transition: all 0.5s;
                }

                body.primary > header > div#three > ul > li > a.statistics::before {
                    font-family: 'Icons';
                    content: '\e804';
                    margin-right: 0.25vw;
                }

                body.primary > header > div#three > ul > li > a.forum {
                    border-bottom: 0.25vw #FF095A solid;
                    margin-bottom: 0;
                }

                body.primary > header > div#three > ul > li > a.forum:hover {
                    background: #FF095A;
                    transition: all 0.5s;
                }

                body.primary > header > div#three > ul > li > a.forum::before {
                    font-family: 'Icons';
                    content: '\e806';
                    margin-right: 0.25vw;
                }

body.secondary > header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: var(--gradient-header);
}

    body.secondary > header > div#one {
        height: 3vw;
        z-index: 100;
    }

        body.secondary > header > div#one > ul {
            display: flex;
            align-items: center;
            justify-content: space-around;
            height: 3vw;
        }
            
            body.secondary > header > div#one > ul > li {
                height: 100%;
            }

                    body.secondary > header > div#one > ul > li > a > img {
                        height: 5vw;
                        z-index: 100;
                        margin-top: 3vw;
                    }
                
                body.secondary > header > div#one > ul > li > a {
                    color: var(--color-text-primary);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-transform: uppercase;
                    margin-bottom: calc(0.25vw / 2);
                    padding: 0 0.5vw;
                    font-size: 1vw;
                    height: calc(100% - 0.25vw);
                }

                body.secondary > header > div#one > ul > li > a.artical {
                    border-bottom: 0.25vw #7D45FF solid;
                    margin-bottom: 0;
                }

                body.secondary > header > div#one > ul > li > a.artical:hover {
                    background: #7D45FF;
                    transition: all 0.5s;
                }

                body.secondary > header > div#one > ul > li > a.artical::before {
                    font-family: 'Icons';
                    content: '\e805';
                    margin-right: 0.25vw;
                }

                body.secondary > header > div#one > ul > li > a.shop {
                    border-bottom: 0.25vw #8B0FE8 solid;
                    margin-bottom: 0;
                }

                body.secondary > header > div#one > ul > li > a.shop:hover {
                    background: #8B0FE8;
                    transition: all 0.5s;
                }

                body.secondary > header > div#one > ul > li > a.shop::before {
                    font-family: 'Icons';
                    content: '\e802';
                    margin-right: 0.25vw;
                }

                body.secondary > header > div#one > ul > li > a.statistics {
                    border-bottom: 0.25vw #E80FC0 solid;
                    margin-bottom: 0;
                }

                body.secondary > header > div#one > ul > li > a.statistics:hover {
                    background: #E80FC0;
                    transition: all 0.5s;
                }

                body.secondary > header > div#one > ul > li > a.statistics::before {
                    font-family: 'Icons';
                    content: '\e804';
                    margin-right: 0.25vw;
                }

                body.secondary > header > div#one > ul > li > a.forum {
                    border-bottom: 0.25vw #FF095A solid;
                    margin-bottom: 0;
                }

                body.secondary > header > div#one > ul > li > a.forum:hover {
                    background: #FF095A;
                    transition: all 0.5s;
                }

                body.secondary > header > div#one > ul > li > a.forum::before {
                    font-family: 'Icons';
                    content: '\e806';
                    margin-right: 0.25vw;
                }

/*
 * Category: SEcTION
 * Author: NutellaServ Team
 * Date: 2018
 */
body.primary > div#container {
    padding: 3vw !important;
}

body.secondary > div#container {
    padding: 6vw 3vw 3vw 3vw !important;
}

/*
 * Category: FOOTER
 * Author: NutellaServ Team
 * Date: 2018
 */
footer {
    background: var(--gradient-footer);
    border-top: 0.2vw solid var(--color-border-muted);
    color: var(--color-text-primary);
    transition: background var(--transition-theme), color var(--transition-theme), border-color var(--transition-theme);
}

    footer > div#one {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1vw 1.3vw;
        height: 1.5vw;
    }

        footer > div#one > p {
            font-size: 1vw;
            color: var(--color-text-secondary);
        }

        footer > div#one > p > a {
            color: #FF095A;
        }

        footer > div#one > ul {
            display: flex;
        }

            footer > div#one > ul > li:nth-child(n+2) {
                margin-left: 1vw;
            }

                footer > div#one > ul > li > a {
                    font-size: 1vw;
                    color: var(--color-text-primary);
                }
                
                footer > div#one > ul > li > a.panel-link {
                    color: #7D45FF;
                    font-weight: bold;
                }
                
                footer > div#one > ul > li > a.panel-link:hover {
                    color: #8B0FE8;
                    text-decoration: underline;
                }

/*
 * Category: MODAL
 * Author: NutellaServ Team
 * Date: 2018
 */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-surface-elevated);
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #7D45FF, #8B0FE8);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 2px solid rgba(255, 9, 90, 0.3);
}

.modal-header h2 {
    color: var(--color-heading);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--color-heading);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    padding: 0 0.5rem;
    user-select: none;
}

.close:hover {
    color: #FF095A;
    transform: rotate(90deg) scale(1.1);
}

#panel-iframe {
    width: 100%;
    flex: 1;
    border: none;
    background: var(--color-surface);
}

/*
 * Category: THEME TOGGLE
 * Date: 2025
 */
.theme-toggle {
    position: fixed;
    bottom: 5rem;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: none;
    transform: translateX(calc(100% - 3.5rem));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add a subtle peek indicator */
.theme-toggle::before {
    content: '◀';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-within {
    transform: translateX(0);
}

.theme-toggle:hover::before,
.theme-toggle:focus-within::before {
    opacity: 0;
}

.theme-toggle__button {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px 0 0 999px;
    border: 1px solid var(--color-border-strong);
    border-right: none;
    background: var(--color-surface);
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background-color var(--transition-theme), color var(--transition-theme), box-shadow 0.3s ease, border-color var(--transition-theme);
}

.theme-toggle__button:hover {
    box-shadow: var(--shadow-hover);
}

.theme-toggle__button:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
}

.theme-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    font-size: 1.1rem;
    transition: transform 0.5s ease;
}

.theme-toggle__label {
    display: inline-flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.2;
    color: var(--color-text-secondary);
    transition: color var(--transition-theme);
}

.theme-toggle__title {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.theme-toggle__status {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

body.light-theme .theme-toggle__icon {
    transform: rotate(-20deg);
}

@media (max-width: 1200px) {
    body {
        font-size: 95%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 90%;
    }
    
    header, footer {
        font-size: 1rem;
    }

    body.primary > header {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    body.primary > header > div#one {
        height: auto;
        padding: 0.8rem 1rem;
        background: var(--color-surface-muted);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        order: 1;
        z-index: 200;
    }

    body.primary > header > div#one > p {
        font-size: 0.85rem;
        text-align: center;
    }

    body.primary > header > div#two {
        height: auto;
        min-height: calc(100vh - 6rem);
        padding: 10vh 1rem 2rem 1rem;
        text-align: center;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body.primary > header > div#two > img {
        height: 30vw;
        max-height: 150px;
        padding: 0;
    }

    body.primary > header > div#two > h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
        padding: 0.5rem 1rem;
    }

    body.primary > header > div#two > h4 {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }

    body.primary > header > div#two > span::before {
        font-size: 2rem;
    }

    body.primary > header > div#three,
    body.secondary > header > div#one {
        height: auto;
    }

    body.primary > header > div#three.fixed {
        position: static;
    }

    body.primary > header > div#three {
        position: sticky;
        top: 0;
        background: var(--color-surface-muted);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        z-index: 150;
        order: 3;
    }

    body.primary > header > div#three > ul,
    body.secondary > header > div#one > ul {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 0;
    }

    body.primary > header > div#three > ul > li,
    body.secondary > header > div#one > ul > li {
        width: 100%;
        height: auto !important;
    }

    body.primary > header > div#three > ul > li > a,
    body.secondary > header > div#one > ul > li > a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        height: auto !important;
        justify-content: center;
        border-bottom-width: 2px !important;
    }
    
    body.secondary > header > div#one > ul > li > a > img {
        display: none;
    }

    body.secondary > div#container {
        padding: 4rem 1rem 1rem 1rem !important;
    }

    footer > div#one {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        padding: 1rem;
    }

    footer > div#one > p,
    footer > div#one > ul > li > a {
        font-size: 0.9rem;
    }

    footer > div#one > ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    footer > div#one > ul > li:nth-child(n+2) {
        margin-left: 0;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }
}

html.js-loading body {
    pointer-events: none;
}

html.js-loaded body {
    pointer-events: auto;
}

html.js-loaded header {
    animation: slideDown 0.6s ease-out both;
}

html.js-loaded footer {
    animation: slideUp 0.6s ease-out both;
    animation-delay: 0.2s;
}

html.js-loaded #container {
    animation: contentFadeIn 0.8s ease-out both;
    animation-delay: 0.3s;
}

/*
 * Category: ANIMATIONS & IMPROVEMENTS
 * Author: NutellaServ Team
 * Date: 2025
 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(125, 69, 255, 0.3);
    color: var(--color-text-inverse);
}

::-moz-selection {
    background: rgba(125, 69, 255, 0.3);
    color: var(--color-text-inverse);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 0.8vw;
}

::-webkit-scrollbar-track {
    background: var(--color-page-background-alt);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7D45FF, #FF095A);
    border-radius: 0.4vw;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8B0FE8, #E80FC0);
}

/* Image hover effects */
img {
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Responsive design helpers */
@media (max-width: 1200px) {
    body {
        font-size: 95%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 90%;
    }
    
    header, footer {
        font-size: 1.2vw;
    }

    body.primary > header {
        height: auto;
        min-height: 100vh;
    }

    body.primary > header > div#one {
        height: auto;
        padding: 0.5rem 1rem;
    }

    body.primary > header > div#one > p {
        font-size: 0.8rem;
    }

    body.primary > header > div#two {
        height: auto;
        padding: 10vh 1rem;
        text-align: center;
    }

    body.primary > header > div#two > img {
        height: 30vw;
        max-height: 150px;
        padding: 0;
    }

    body.primary > header > div#two > h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
        padding: 0.5rem 1rem;
    }

    body.primary > header > div#two > h4 {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }

    body.primary > header > div#two > span::before {
        font-size: 2rem;
    }

    body.primary > header > div#three,
    body.secondary > header > div#one {
        height: auto;
    }

    body.primary > header > div#three.fixed {
        position: static;
    }

    body.primary > header > div#three > ul,
    body.secondary > header > div#one > ul {
        flex-direction: column;
        height: auto;
        gap: 0;
    }

    body.primary > header > div#three > ul > li,
    body.secondary > header > div#one > ul > li {
        width: 100%;
    }

    body.primary > header > div#three > ul > li > a,
    body.secondary > header > div#one > ul > li > a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        height: auto;
        justify-content: center;
        border-bottom-width: 2px !important;
    }
    
    body.secondary > header > div#one > ul > li > a > img {
        display: none;
    }

    body.secondary > div#container {
        padding: 4rem 1rem 1rem 1rem !important;
    }

    footer > div#one {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        padding: 1rem;
    }

    footer > div#one > p,
    footer > div#one > ul > li > a {
        font-size: 0.9rem;
    }

    footer > div#one > ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    footer > div#one > ul > li:nth-child(n+2) {
        margin-left: 0;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }
}