/* Global & General */

html {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color-scheme: dark;

    --clr-primary: #2a45f8;
    --clr-secondary: #3fb950;
    --clr-tertiary: #f78166;
    --clr-background: #0d1117;
    --clr-background-full-transparent: #0d111700;
    --clr-font: #e6edf3;
    --clr-surface-light: #21262d;
    --clr-surface-medium: #30363d;
    --clr-surface-dark: #30363d;
    --clr-surface-dark-transparent: rgba(48, 54, 61, 0.85);
    --clr-highlight: #30363d;
    --clr-bold: #ffffff;
    --clr-font-strong: #ffffff;
    --clr-base: #21262d;
    --clr-base-transparent: rgba(33, 38, 45, 0.6);
    --clr-light-shadow: rgba(0, 0, 0, 0.3);
    --clr-webbytestudio: #2a45f8;
    --clr-webbytestudio-deviation: rgba(42, 69, 248, 0.8);
    --clr-dunkle-geschichten: #31bacd;
    --clr-buymeacoffee: #ffd60a;
}

/* Navigation */
#navigation {
    background: linear-gradient(135deg, rgba(30, 35, 45, 0.75) 0%, rgba(20, 25, 35, 0.65) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25) !important;
}

#navigation>button,
#navigation>.nav-support-btn {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    color: var(--clr-font) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

#navigation>button:hover,
#navigation>.nav-support-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

#navigation, #navigation * {
    color: var(--clr-font-strong) !important;
}

/* Profile Image Glow */
#introduction>div:first-of-type img {
    box-shadow: 0 0 32px 0 #1a237e, 0 0 8px 2px #00bcd4 !important;
}

/* Project Buttons */
#project-overview .dunkle-geschichten>div>a {
    background: linear-gradient(135deg, rgba(49, 186, 205, 0.75) 0%, rgba(35, 160, 180, 0.6) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(49, 186, 205, 0.25) !important;
}

#project-overview .dunkle-geschichten>div>a:hover {
    background: linear-gradient(135deg, rgba(49, 186, 205, 0.9) 0%, rgba(35, 160, 180, 0.75) 100%) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 20px rgba(49, 186, 205, 0.35) !important;
}

/* Buttons */
.primary-btn {
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.25) 0%, rgba(5, 130, 255, 0.12) 100%) !important;
    color: var(--clr-font-strong) !important;
    font-weight: 500 !important;
    border: 1px solid rgba(5, 130, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.primary-btn:hover {
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.35) 0%, rgba(5, 130, 255, 0.18) 100%) !important;
    color: var(--clr-font-strong) !important;
    border-color: rgba(5, 130, 255, 0.55) !important;
}

.secondary-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    color: var(--clr-font-strong) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    font-weight: 500 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
    color: var(--clr-font-strong) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--clr-font-strong) !important;
}

p {
    color: var(--clr-font) !important;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: var(--clr-background);
    color: var(--clr-font);
}

* {
    box-sizing: border-box;
    font-family: "Gilroy", Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll.visible.delay-1 { animation-delay: 0.1s; }
.animate-on-scroll.visible.delay-2 { animation-delay: 0.2s; }
.animate-on-scroll.visible.delay-3 { animation-delay: 0.3s; }

main {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: calc(100px + 2rem + 2rem);
}

main>section {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

main>section>h1 {
    color: var(--clr-font-strong);
    font-size: 2rem;
    font-family: monospace;
    margin-left: 7.5%;
    margin-bottom: 2.5rem;
}

p {
    line-height: 150%;
}

button {
    cursor: pointer;
}

.primary-btn {
    width: auto;
    min-width: 85px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.22) 0%, rgba(5, 130, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-font-strong);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 18px;
    border: 1px solid rgba(5, 130, 255, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.secondary-btn {
    width: auto;
    min-width: 85px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-font-strong);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.primary-btn:hover {
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.32) 0%, rgba(5, 130, 255, 0.15) 100%);
    border-color: rgba(5, 130, 255, 0.5);
    box-shadow: 0 4px 12px rgba(5, 130, 255, 0.15);
    transform: translateY(-1px);
    cursor: pointer;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    cursor: pointer;
}

.highlight {
    height: 32.5px;
    display: inline-block;
    padding: .3rem .5rem 0 .5rem;
    margin-top: .15rem;
    margin-bottom: .15rem;
    font-weight: bold;
    color: var(--clr-font-strong);
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.15) 0%, rgba(5, 130, 255, 0.08) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(5, 130, 255, 0.2);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(5, 130, 255, 0.25) 0%, rgba(5, 130, 255, 0.15) 100%);
    border-color: rgba(5, 130, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 130, 255, 0.2);
}

/* Navigation */

#nav-area {
    width: 100%;
    height: calc(100px);
    position: fixed;
    z-index: 1;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(25px);
}

#nav-area::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, var(--clr-background), var(--clr-background-full-transparent));
    pointer-events: none;
    z-index: -1;
}

#navigation {
    width: 35%;
    min-width: 430px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
}

#navigation>* {
    margin-left: .6rem;
    margin-right: .6rem;
}

#navigation * {
    color: var(--clr-font-light);
}

#navigation>a {
    text-decoration: none;
    font-size: .85rem;
    transition: all 0.25s ease;
    position: relative;
}

#navigation>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: all 0.25s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

#navigation>a:hover::after,
#navigation>a.active::after {
    width: 100%;
}

#navigation>.nav-support-btn::after {
    display: none;
}

#navigation>a:hover {
    color: var(--clr-highlight);
}

#navigation>button,
#navigation>.nav-support-btn {
    width: 90px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    color: var(--clr-font-light);
    border-radius: 14px;
    font-weight: 500;
    font-size: .8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#navigation>button:hover,
#navigation>.nav-support-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--clr-font-light);
}

#navigation>span {
    font-weight: lighter;
}

#navigation>div {
    width: 2px;
    height: 12.5px;
    background-color: var(--clr-surface-medium);
    border-radius: 1px;
}

#navigation .active {
    font-weight: 500;
    color: var(--clr-base);
}

/* Introduction */

#introduction {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#introduction>div {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: colum;
}

#introduction>div h1 {
    font-weight: normal;
    font-size: 2rem;
}

#introduction>div>h1 strong {
    color: var(--clr-font-strong);
}

#introduction img {
    width: auto;
    height: 47.5px;
    border-radius: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
    outline: 1px solid var(--clr-base);
    box-shadow: 0 0 15px var(--clr-light-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#introduction img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 25px var(--clr-light-shadow);
}

#introduction>div:first-of-type>div {
    position: relative;
}

#introduction>div:first-of-type>div>div {
    width: 10px;
    height: 10px;
    position: absolute;
    top: .5px;
    right: 1rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(56, 142, 60, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

#introduction>div:first-of-type img {
    box-shadow: 1.5px 3px 6px #db7e73;
}

#introduction>div:nth-of-type(2) img {
    box-shadow: 1.5px 3px 6px var(--clr-primary);
}

#introduction>div:last-of-type img {
    box-shadow: 1.5px 3px 6px var(--clr-surface-dark);
}

.important-text {
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    text-align: center;
    font-size: 1.2rem;
}

#introduction>article {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

#introduction>article>* {
    margin-left: .25rem;
    margin-right: .25rem;
}

/* Main Project Overview */

#project-overview {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 4.5rem;
    transition: .5s;
}

#project-overview>section {
    width: 85%;
    height: auto;
    min-height: 700px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    padding-bottom: 2.25rem;
    border-radius: 60px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#project-overview>section:hover {
    transform: translateY(-8px);
}

#project-overview>section.mshift {
    background: linear-gradient(165deg, rgba(42, 69, 248, 0.9) 0%, rgba(30, 50, 200, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(42, 69, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

#project-overview>section.mshift::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 60px 60px 0 0;
    pointer-events: none;
}

/* GhostCrypt */

#project-overview>section.ghostcrypt {
    background: linear-gradient(165deg, rgba(3, 21, 57, 0.95) 0%, rgba(2, 15, 40, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(3, 21, 57, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.12),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

#project-overview>section.ghostcrypt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 60px 60px 0 0;
    pointer-events: none;
}

#project-overview>section.ghostcrypt::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 58px;
    pointer-events: none;
}

#project-overview .ghostcrypt>div>a {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

#project-overview .ghostcrypt>div>a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

#project-overview .ghostcrypt>div>h1 {
    font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
}

#project-overview>section>div {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
}

#project-overview>section>div>img {
    width: 75px;
    height: 75px;
}

#project-overview>section>div>h1 {
    margin-top: 1.35rem;
    margin-bottom: .5rem;
    padding-left: .35rem;
    font-size: 3.175rem;
    font-family: "Lora", "Gilroy", Helvetica, Arial, sans-serif;
    color: var(--clr-base);
}

#project-overview>section>div>p {
    width: 45%;
    font-size: 1.1rem;
    padding-left: .35rem;
    padding-right: .35rem;
    padding-top: 1.5rem;
    color: var(--clr-base);
    font-weight: 700;
}

#project-overview>section>div>a {
    width: 150px;
    height: 40px;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-base);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

#project-overview>section>div>a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

#project-overview>section>article {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    right: 3rem;
    top: 0;
}

#project-overview>section>article>img {
    width: auto;
    height: 85%;
    transform: translateY(.85rem);
    transition: transform 0.4s ease;
}

#project-overview>section:hover>article>img {
    transform: translateY(.85rem) scale(1.03);
}

#project-overview .dunkle-geschichten>article {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    right: 0;
    z-index: -1;
}

#project-overview .dunkle-geschichten {
    padding: 0;
    border: 1px solid rgba(49, 186, 205, 0.4);
    box-shadow: 
        0 8px 32px rgba(49, 186, 205, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

#project-overview .dunkle-geschichten::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 60px 60px 0 0;
    pointer-events: none;
    z-index: 1;
}

#project-overview .dunkle-geschichten>article>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    transform: unset;
}

#project-overview .dunkle-geschichten>article>img:last-of-type {
    visibility: hidden;
}

#project-overview .dunkle-geschichten>div>h1 {
    font-family: "Cormorant Garamond", "Lora", Helvetica, Arial, sans-serif;
}

#project-overview .dunkle-geschichten>div>a {
    background: linear-gradient(135deg, rgba(49, 186, 205, 0.75) 0%, rgba(35, 160, 180, 0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #1a1a1a;
    box-shadow: 0 2px 12px rgba(49, 186, 205, 0.25);
    transition: all 0.25s ease;
}

#project-overview .dunkle-geschichten>div>a:hover {
    background: linear-gradient(135deg, rgba(49, 186, 205, 0.9) 0%, rgba(35, 160, 180, 0.75) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(49, 186, 205, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {

    #project-overview>section {
        width: 95%;
    }

}

@media (max-width: 915px) {

    #project-overview>section>div {
        width: 100%;

    }

    #project-overview>section>div>p {
        width: 100%;
    }

    #project-overview>section>article:not(.responsive-exclusion) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        top: unset;
        right: unset;
        padding-top: 2rem;
    }

    #project-overview>section>article>img:not(.responsive-exclusion) {
        width: auto;
        height: 600px;
    }

    #project-overview .dunkle-geschichten>article>img:last-of-type {
        visibility: visible;
    }


    #project-overview .dunkle-geschichten>article>img:first-of-type {
        visibility: hidden;
    }

}

@media (max-width: 700px) {

    #introduction>div>h1 {
        font-size: 1.5rem;
    }

    #introduction>div img {
        height: 42.5px;
        border-radius: 15px;
    }

    #introduction>div {
        height: 52.5px;
    }

    .important-text {
        width: 85%;
        font-size: 1rem;
    }

    #project-overview>section>div>h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    #project-overview>section>div>img {
        width: 50px;
        height: 50px;
    }

    #project-overview>section>div>p {
        font-size: 1rem;
    }

    .highlight {
        height: 28px;
        padding: .2rem .3rem 0 .3rem;
    }

}

@media (max-width: 550px) {

    #project-overview>section>div>h1 {
        font-size: 2rem;
    }

    #project-overview>section>div>p {
        font-size: .9rem;
    }

    #project-overview>section>article>img:not(.responsive-exclusion) {
        height: 500px;
    }

    #project-overview>section {
        min-height: 525px;
    }

    #introduction>div>h1 {
        font-size: 1.25rem;
    }

    #introduction>div {
        height: 45px;
    }

    #introduction>div>img {
        height: 37.5px;
    }

    .important-text {
        width: 90%;
        font-size: .95rem;
    }

}

@media (max-width: 450px) {

    :root {
        font-size: 14px;
    }

    .highlight {
        height: 24px;
        padding: .3rem .3rem 0 .3rem;
    }

}

#certificates>.container {
    width: 85%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#certificates>.container .row {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

#certificates>.container .row .col-3 {
    width: 22.5%;
    min-width: 250px;
    height: 175px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

#certificates>.container .row .col-3:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px) scale(1.02);
}

#certificates>.container .row .col-3 img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

#certificates>.container .row .col-3:hover img {
    transform: scale(1.1) rotate(-5deg);
}

#certificates>.container .row .col-3 h1 {
    font-size: 1.3rem;
    font-family: monospace;
    color: var(--clr-font-strong);
    margin: 0;
}

#certificates>.container .row .col-3>span {
    align-self: flex-end;
    font-size: 0.9rem;
}

/* Large Image Preview */

#large-image-preview {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
}

#large-image-preview>img {
    max-width: 90%;
    max-height: 85%;
    width: auto;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

#large-image-preview>button {
    height: 40px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-font-strong);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

#large-image-preview>button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade_out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 530px) {

    #navigation {
        min-width: unset;
        width: 90%;
    }

    #navigation>* {
        margin-left: .3rem;
        margin-right: .3rem;
    }

}

/* About me */

#about-me>p {
    text-align: left;
}

/* support */

#support {
    width: 85%;
    height: auto;
    min-height: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    padding-top: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 3rem;
    background: linear-gradient(165deg, rgba(255, 214, 10, 0.75) 0%, rgba(255, 180, 0, 0.65) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(255, 200, 0, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 75px;
    color: var(--clr-font-strong);
    position: relative;
    overflow: hidden;
}

#support::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 75px 75px 0 0;
    pointer-events: none;
}

#support::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 73px;
    pointer-events: none;
}

#support>h1 {
    font-family: monospace;
    position: relative;
    z-index: 1;
}

#support>p {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

#support>a {
    width: 200px;
    height: 45px;
    margin-top: .75rem;
}

/* Footer */

#footer {
    width: 100%;
    height: 70px;
    margin-top: 5rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#footer>span {
    position: absolute;
    left: 2rem;
    color: var(--clr-base)
}

#footer>a {
    position: absolute;
    right: 2rem;
    text-decoration: none;
    color: var(--clr-base)
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {

    img[src*="mpgg.svg"] {
        filter: brightness(0) invert(1);
    }

    #project-overview>section.mshift>div>a {
        background: linear-gradient(135deg, rgba(26, 47, 143, 0.85) 0%, rgba(20, 40, 120, 0.75) 100%) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
    }

    #support {
        background: linear-gradient(135deg, rgba(255, 214, 10, 0.9) 0%, rgba(255, 200, 0, 0.8) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    #support>h1,
    #support>p {
        color: #000000 !important;
    }

    .highlight {
        background: linear-gradient(135deg, rgba(5, 130, 255, 0.22) 0%, rgba(5, 130, 255, 0.12) 100%) !important;
        border: 1px solid rgba(5, 130, 255, 0.3) !important;
    }

    #footer {
        background: linear-gradient(135deg, rgba(30, 35, 45, 0.75) 0%, rgba(20, 25, 35, 0.65) 100%) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    #footer>span,
    #footer>a {
        color: #ffffff !important;
    }

    #large-image-preview>button {
        background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(20, 20, 20, 0.75) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
    }

}