/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://e-development.net/public/lib/notification/notification.css');
@import url('https://e-development.net/public/font.css');

:root {
    --bs-rk-bg-rgb: 7, 7, 7;
    /* Discord Button */
    --bs-btn-hover-discord-bg: #7289da;
    --bs-btn-hover-discord-border-color: #7289da;
}

/* Keyframes */
@-webkit-keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes FadeIn-top {
    from {
        -webkit-transform: translateY(-550px);
        transform: translateY(-550px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes FadeIn-top {
    from {
        -webkit-transform: translateY(-550px);
        transform: translateY(-550px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes FadeIn-left {
    from {
        -webkit-transform: translateX(-550px) scale(0.5);
        transform: translateX(-550px) scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes FadeIn-left {
    from {
        -webkit-transform: translateX(-550px) scale(0.5);
        transform: translateX(-550px) scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes FadeIn-right {
    from {
        -webkit-transform: translateX(550px) scale(0.5);
        transform: translateX(550px) scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes FadeIn-right {
    from {
        -webkit-transform: translateX(550px) scale(0.5);
        transform: translateX(550px) scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Loadingscreen */
.loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 99999999999;
}

.fade-out {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.17em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid white;
    border-right-color: transparent;
}

.loading-image {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background-color: black;
    -webkit-font-smoothing: antialiased;
}

.rk {
    position: relative;
    height: auto;
    overflow: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

.no-anim {
    -webkit-animation: none;
    animation: none;
}

.fade-in {
    -webkit-animation: fade-in 2.5s ease-in-out;
    animation: fade-in 2.5s ease-in-out;
}

.bg-body-rk {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-rk-bg-rgb), 0.0) !important;
}

/* .bg-body-rk::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(20px) !important;
    z-index: -1;
} */

.navbar-brand {
    color: white;
}

.home-nav-item {
    border-radius: 0px !important;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
}

.home-nav-item:first-child {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
}

.home-nav-item:last-child {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
}

.home-nav-item:hover {
    background-color: black;
    color: white;
    border-color: transparent;
}

.btn-outline-discord {
    --bs-btn-color: #7289da;
    --bs-btn-border-color: #7289da;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #7289da;
    --bs-btn-hover-border-color: #7289da;
    --bs-btn-focus-shadow-rgb: 25, 135, 84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7289da;
    --bs-btn-active-border-color: #7289da;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #7289da;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #7289da;
    --bs-gradient: none;
}

.btn-outline-discord:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-discord-bg);
    border-color: var(--bs-btn-hover-discord-border-color);
}

.btn-discord {
    --bs-btn-color: white;
    --bs-btn-bg: #7289da;
    --bs-btn-border-color: #7289da;
    --bs-btn-hover-bg: #7289da;
    --bs-btn-hover-border-color: #7289da;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7289da;
    /* Korrigiert von #white */
    --bs-btn-active-border-color: #7289da;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #7289da;
    --bs-btn-disabled-border-color: #7289da;
}

.btn-discord:hover {
    color: #7289da;
    background-color: white;
}

section {
    position: relative;
    width: 100vw;
    height: 836px;
    background-color: black;
    margin: 0 auto;
    margin-bottom: 0.5em;
}

#sc-two .inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 99%;
    height: 100%;
    gap: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#sc-one .inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    width: 90%;
    height: 100%;
    gap: 0.5em;
    color: white;
    margin-top: 4em;
    text-align: left;
}

.inner-content .header {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    color: white;
    background-color: transparent;
    text-align: center;
}

.inner-content .header h1 {
    font-size: 1.7em;
    font-weight: bold;
}

.inner-content h2 {
    position: relative;
    font-size: 4rem;
    font-weight: bold;
    text-align: start;
    font-family: 'rulekeeper';
    line-height: 4.25rem;
    -webkit-animation: text-reveal 1.5s ease-in forwards;
    animation: text-reveal 1.5s ease-in forwards;
    z-index: 11;
}

.thumb {
    -webkit-perspective: 600px;
    perspective: 600px;
    z-index: 99999;
}

#sc-one-img {
    width: 50% !important;
    border-radius: 15px;
    display: block;
    margin: auto;
    -webkit-transform: rotateY(-15deg) rotateX(0deg) translateY(0);
    transform: rotateY(-15deg) rotateX(0deg) translateY(0);
    -webkit-box-shadow: 40px 0 100px 20px #1d1b2e8c;
    box-shadow: 40px 0 100px 20px #1d1b2e8c;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
    /* animation: text-reveal 2.5s ease-in forwards, fade-in-bottom-smooth 2.9s ease-in-out forwards; */
}

.start-animation {
    -webkit-animation: text-reveal 2.5s ease-in forwards, fade-in-bottom-smooth 2.9s ease-in-out forwards;
    animation: text-reveal 2.5s ease-in forwards, fade-in-bottom-smooth 2.9s ease-in-out forwards;
}

.window-fadein {
    -webkit-animation: fade-in 0.5s ease-in-out forwards;
    animation: fade-in 0.5s ease-in-out forwards;
}

@-webkit-keyframes fade-in-bottom-smooth {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50vh);
        transform: translateY(50vh);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotateY(-15deg) rotateX(0deg) translateY(0);
        transform: rotateY(-15deg) rotateX(0deg) translateY(0);
    }
}

@keyframes fade-in-bottom-smooth {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50vh);
        transform: translateY(50vh);
    }

    100% {
        opacity: 1;
        -webkit-transform: rotateY(-15deg) rotateX(0deg) translateY(0);
        transform: rotateY(-15deg) rotateX(0deg) translateY(0);
    }
}

/* @keyframes box-shadow {
    0% {
        box-shadow: 40px 0 55px 0px #1d1b2e1a;
        transform: rotateY(-15deg) rotateX(0deg);
    }
    50% {
        box-shadow: 40px 0 100px 20px #1d1b2e8c;
        transform: rotateY(-20deg) rotateX(-5deg);
    }
    100% {
        box-shadow: 40px 0 55px 0px #1d1b2e1a;
        transform: rotateY(-15deg) rotateX(0deg);
    }
} */

#sc-one .inner-content span {
    font-size: 0.9em;
    font-weight: bold;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation: text-reveal 2s ease-in forwards;
    animation: text-reveal 2s ease-in forwards;
}

@-webkit-keyframes text-reveal {
    0% {
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes text-reveal {
    0% {
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

/* #first::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://e-development.net/public/background-widget.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: opacity(0.2) contrast(1.5) brightness(0.5) grayscale(2) hue-rotate(45deg);
    z-index: 1;
} */

.widget {
    position: relative;
    width: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    padding: 1em 2em;
    border-radius: 42px;
    background-color: rgba(15, 15, 15, 0.8);
    border: 2px solid rgb(17, 17, 17);
    margin: 0 auto;
    z-index: 100;
}

.widget::before {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    content: '';
    width: 200px;
    height: 90%;
    background-color: rgba(234, 123, 168, 0.5);
    border-radius: inherit !important;
    filter: blur(150px);
    z-index: -1;
}

.bold-text {
    font-weight: bold;
}

.widget-sm {
    height: 600px;
}

.widget-large {
    height: 750px;
}

.widget-content {
    width: 90%;
    margin: 0 auto;
    margin-top: 2em;
}

.widget-text {
    font-size: 0.85em;
}

@-webkit-keyframes scaleIn {
    0% {
        -webkit-transform: scale(0) rotate(0deg);
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        -webkit-transform: scale(0) rotate(0deg);
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Animation für die Check Icons */
.animate-check {
    -webkit-animation: scaleIn 0.8s ease forwards;
    animation: scaleIn 0.8s ease forwards;
}

/* Check-Box einmalig rotieren lassen */
.once-check {
    -webkit-animation: rotate 1.2s linear forwards;
    animation: rotate 1.2s linear forwards;
}

.once-check .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-animation: fadeInCheck 0.8s ease forwards;
    animation: fadeInCheck 0.8s ease forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    /* erscheint nach Abschluss der Rotation */
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fadeInCheck {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

/* FADE-IN ANIMATION */
.fade-left {
    -webkit-animation: FadeIn-left 1.5s ease-in-out;
    animation: FadeIn-left 1.5s ease-in-out;
}

.fade-top {
    -webkit-animation: FadeIn-top 1.5s ease-in-out;
    animation: FadeIn-top 1.5s ease-in-out;
}

.fade-right {
    -webkit-animation: FadeIn-right 1.5s ease-in-out;
    animation: FadeIn-right 1.5s ease-in-out;
}

.card {
    background-color: #1A1F36;
    border: none;
}

.card h4 {
    margin-bottom: 15px;
}

canvas {
    margin-top: 20px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover {
    color: #fff;
    text-decoration: underline;
}


/* BACKGROUND ANIM */
.bg-anim {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgb(109 140 255);
    border-radius: 50%;
    -webkit-filter: blur(250px);
    filter: blur(250px);
    -webkit-transition: all 4s ease-in-out;
    -o-transition: all 4s ease-in-out;
    transition: all 4s ease-in-out;
    z-index: 10;
}

/* COLOR */
.bg-violett {
    background-color: #7A288A;
}


.bg-purple {
    background-color: purple;
}

/* POSITION */
.bg-top-left {
    top: 0;
    left: 0;
}

.bg-bottom-right {
    bottom: 0;
    right: 0;
}

/* BLUR */
.blur-1 {
    -webkit-filter: blur(100px);
    filter: blur(100px);
}

.blur-15 {
    -webkit-filter: blur(150px);
    filter: blur(150px);
}

.blur-2 {
    -webkit-filter: blur(200px);
    filter: blur(200px);
}

.blur-25 {
    -webkit-filter: blur(250px);
    filter: blur(250px);
}

.blur-3 {
    -webkit-filter: blur(300px);
    filter: blur(300px);
}

.blur-35 {
    -webkit-filter: blur(350px);
    filter: blur(350px);
}

.blur-4 {
    -webkit-filter: blur(400px);
    filter: blur(400px);
}

.blur-45 {
    -webkit-filter: blur(450px);
    filter: blur(450px);
}

.modal-content {
    background: rgba(31, 31, 31, 0.85);
    border: none;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    -webkit-box-shadow: 0px 4px 150px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 150px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: -o-linear-gradient(315deg, #0f0f0f, #1a1f36);
    background: linear-gradient(135deg, #0f0f0f, #1a1f36);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: visible;
}

.bg-modal {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: #4B7DE9;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.modal-title {
    font-weight: 600;
    color: #ffffff;
    z-index: 999999;
}

.modal-body {
    background: -o-linear-gradient(315deg, #0f0f0f, #1a1f36);
    background: linear-gradient(135deg, #0f0f0f, #1a1f36);
    color: #ddd;
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: -o-linear-gradient(315deg, #0f0f0f, #1a1f36);
    background: linear-gradient(135deg, #0f0f0f, #1a1f36);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btn-primary {
    background-color: #7289da;
    border: none;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #5865f2;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    background-color: #5a6268;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.form-control,
.form-select {
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
}

.form-control::-webkit-input-placeholder {
    color: #aaa;
}

.form-control::-moz-placeholder {
    color: #aaa;
}

.form-control:-ms-input-placeholder {
    color: #aaa;
}

.form-control::-ms-input-placeholder {
    color: #aaa;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus,
.form-select:focus {
    -webkit-box-shadow: 0px 0px 8px rgba(114, 137, 218, 0.8);
    box-shadow: 0px 0px 8px rgba(114, 137, 218, 0.8);
    border-color: #7289da;
    outline: none;
}

.modal-sidebar {
    width: 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-sidebar .nav-link:hover,
.modal-sidebar .nav-link.active {
    color: #fff;
    background-color: #7289da;
}

.config-section {
    display: none;
}

.config-section.active {
    display: block;
}

/* BTN */
.btn-close {
    --bs-btn-close-color: #ffffff;
    --bs-btn-close-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e);
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
    fill: white;
}

.btn-admin,
.btn-logout,
.btn-dashboard {
    --bs-btn-color: rgb(128, 128, 128);
    --bs-btn-bg: #1b1b1b;
    --bs-btn-border-color: white;
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(70, 70, 70);
    --bs-btn-hover-border-color: white;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: white;
    /* Korrigiert von #white */
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: white;
    --bs-btn-disabled-border-color: white;
}

.btn-admin:hover,
.btn-logout:hover,
.btn-dashboard:hover {
    background-color: #141414;
}

/* Team Container */
#third {
    position: relative;
    height: auto;
    min-height: 1200px;
    margin-top: 3rem;
}

#third #sc-three {
    width: 90%;
    margin: 0 auto;
}

#third .content .inner-content .header {
    position: relative;
    margin-left: 1rem;
    margin-bottom: 2rem;
}

#third .content .inner-content .header h2 {
    font-size: 2.7rem;
}

.team-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    z-index: 10;
}

.team-container .team-item {
    width: 397px;
    height: 465px;
    background-color: rgba(11, 11, 11, 0.75);
    border-radius: 36px;
    cursor: default;
    animation: text-reveal 2.5s ease-in forwards;
    z-index: 10;
}

.team-container .team-item .user-content .team-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 217px;
    height: 217px;
    background-color: #77A4FA;
    opacity: 0.9;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    z-index: -1;
}

/* .team-bg.snikitivegas {
    filter: blur(500px) !important;
    background-repeat: repeat;
    background-size: cover;
} */

.team-container .team-item .user-content {
    position: relative;
    width: 385px;
    height: 278px;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    /* background-color: aqua; */
    margin: 0 auto;
    margin-top: 5px;
}

.team-container .team-item .user-content .profile-img {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(113px + 14px);
    height: calc(113px + 14px);
    border-radius: 50%;
    background-color: #0F0F0F;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.team-container .team-item .user-content .profile-img img {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    margin: 0 auto;
    pointer-events: none;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5), 0 10px 4px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5), 0 10px 4px rgba(0, 0, 0, 0.5) inset;
}

.team-container .team-item .user-content .bottom-container {
    position: absolute;
    width: 100%;
    height: 64px;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
    background-color: rgba(16, 16, 16, 0);
    -webkit-filter: opacity(0.95);
    filter: opacity(0.95);
    background-image: url(https://e-development.net/public/card-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.team-container .team-item .user-content .profile-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 0 auto;
}

.team-container .team-item .user-content .profile-banner img {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    z-index: 0;
}

.team-container .team-item .team-info {
    position: relative;
    width: 385px;
    height: 165px;
    background-color: rgba(15, 15, 15, 0.7);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin: 0 auto;
    margin-top: calc(17px / 2);
    text-align: center;
    color: white;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.team-container .team-item .team-info::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://e-development.net/public/template/basic/vod/output.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    filter: brightness(0.1) opacity(0.4);
    z-index: -1;
}

.team-container .team-item .team-info .team-info-item {
    position: absolute;
    width: 100%;
    top: 10px;
}

/* RuleKeeper Application */
#fourthly {
    position: relative;
    height: auto;
    min-height: 700px;
    /* margin-top: 1rem; */
    margin-bottom: 5rem;
    background-color: rgb(0, 0, 0);
    overflow: visible;
}

#fourthly .content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#fourthly .content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 11;
}

/* #fourthly .content .grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://e-development.net/public/images/grid.png);
    background-position: center;
    background-repeat: repeat;
    background-size: 300px;
    z-index: 3;
} */

.squared {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;

    /* horizontale Linien */
    background-image:
      repeating-linear-gradient(
        to right,
        transparent,
        transparent calc(20px - 1px),
        rgba(0, 0, 0, 0.2) calc(20px - 1px),
        rgba(0, 0, 0, 0.2) 20px
      ),
      /* vertikale Linien */
      repeating-linear-gradient(
        to bottom,
        transparent,
        transparent calc(20px - 1px),
        rgba(0, 0, 0, 0.2) calc(20px - 1px),
        rgba(0, 0, 0, 0.2) 20px
      );
    background-size: 20px 20px;
    z-index: 10;
}s

/* #fourthly::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 3;
} */

/* #fourthly::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://e-development.net/public/template/basic/vod/output.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(25px) opacity(0.2) brightness(0.4);
    opacity: 0.3;
    overflow: visible;
    z-index: 2;
} */

#fourthly #sc-four {
    width: 90%;
    margin: 0 auto;
}

#fourthly .content .inner-content .header {
    position: relative;
    margin-bottom: 2rem;
}

#fourthly .content .inner-content .header h2 {
    text-align: center;
}

#fourthly .content .inner-content .rk-app {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 3em;
    margin-top: 5rem;
    user-select: all !important;
    animation: text-reveal 2.5s ease-in forwards;
    z-index: 999999;
}

#fourthly .content .inner-content .rk-app .app-icon img {
    width: 128px;
    height: 128px;
}

#fourthly .content .inner-content .rk-app .download-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

#fourthly .content .inner-content .rk-app .download-content .download-button {
    /*     padding: 0.5em 1em 0.5em 1em;
    background-image: linear-gradient(190deg, #00C8AF, #9146FF);
    border-radius: 12px;
    border: outset 1px #; */
}

#fourthly .content .inner-content .rk-app .download-content .download-button {
    display: flex;
    /* justify-content: center; */
    gap: 1em;
    align-items: center;
    width: auto;
    height: auto;
    padding: 1em;
    padding-left: 2em;
    padding-right: 2em;
    position: relative;
    border: 1px solid transparent;
    border-radius: 10px;
    background-clip: padding-box;
    background-color: rgba(10, 15, 22, 0.95);
    text-decoration: none;
    color: rgb(134, 175, 209);
    font-size: 0.75em;
    text-align: left;
    /* filter: brightness(none); */
    transition: background-color .2s, color .2s ease-in-out, all .2s ease-in-out;
}

#fourthly .content .inner-content .rk-app .download-content .download-button .download-text {
    font-family: 'rulekeeper';
    font-size: 2em;
    color: white;
}

#fourthly .content .inner-content .rk-app .download-content .download-button:hover {
    background-color: rgba(10, 15, 22, 0.9);
    color: white;
}

#fourthly .content .inner-content .rk-app .download-content .download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, #00c8af, #9146FF);
}

#fourthly .content .inner-content .rk-app .download-content .download-count i {
    font-size: 9px;
}

#fourthly .content .inner-content .rk-app .download-content .download-count span {
    font-family: 'rulekeeper';
    font-size: 9px;
    color: rgb(133, 133, 133);
}

#fourthly .content .inner-content .rk-app .application-screen {
    position: relative;
    perspective: 1200px;
    perspective-origin: center center;
}

#fourthly .content .inner-content .rk-app .application-screen img {
    width: 800px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg) translateZ(30px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#fourthly .content .inner-content .rk-app .application-screen img:hover {
    transform:
        rotateY(0deg) rotateX(0deg) translateZ(60px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

footer {
    position: relative;
    /* bottom: 0; */
    z-index: 99999999999;
}

footer .footer-content {
    width: 80%;
    height: 150px;
    margin: 0 auto;
}

footer .footer-left {
    position: relative;
}

footer .footer-left img {
    position: relative;
    z-index: 1;
}

footer .footer-bottom {
    position: absolute;
    width: inherit;
    bottom: 0;
    color: white;
    text-align: center;
}

footer .footer-text {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    /* background-color: aqua; */
    text-align: center;
    /*     line-height: 4em; */
    z-index: -1;
}

footer .footer-text h1 {
    position: absolute;
    font-weight: bold;
    color: transparent;
    font-size: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 10%, rgba(55, 55, 55, 0));
    background-clip: text;
    opacity: 0.05;
    z-index: -1;
}

/* footer .footer-bottom .footer-bg {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: calc(64px / -2 * 0.5);
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7DE9;
    filter: blur(100px);
} */

footer .footer-bottom span {
    font-size: 0.7rem;
}

footer .footer-bottom .bottom-text::before {
    position: absolute;
    content: '';
    width: 64px;
    height: 64px;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #4B7DE9;
    -webkit-filter: blur(100px);
    filter: blur(100px);
}

.footer-links {
    margin-top: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
}

.footer-links .footer-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.footer-links .footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.footer-links .footer-link:hover {
    color: #7289da;
}

.footer-links .footer-link:hover::after {
    width: 100%;
}

/* Sidebar */
.sidebar {
    display: flex;
    background: #131316d2;
    height: calc(100vh - (1rem * 2));
    width: 250px;
    margin-top: 1rem;
    margin-left: 1rem;
    border-radius: 12px;
    overflow-y: scroll;
    padding: 20px 0;
    z-index: 99999;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar .invite-link {
    /* position: absolute; */
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .invite-link a {
    display: block;
    width: 90%;
    height: auto;
    padding: 1rem;
    position: relative;
    border: 1px solid transparent;
    border-radius: 10px;
    background-clip: padding-box;
    background-color: rgba(10, 15, 22, 0.95);
    text-decoration: none;
    color: rgb(134, 175, 209);
    font-size: 0.75em;
    text-align: center;
    transition: background-color .2s, color .2s ease-in-out;
}

.sidebar .invite-link a:hover {
    background-color: rgba(10, 15, 22, 0.9);
    color: white;
}

.sidebar .invite-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, #00c8af, #9146FF);
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: #fff;
    background: #1f1f1f;
    border-radius: 8px;
}

.sidebar .nav-link i {
    margin-right: 10px;
}

.user-info-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    padding: 1em;
    border-radius: 60px;
    opacity: 0.95;
    background-color: #1d1d1d;
}

.user-info-container .home-avatar {
    position: relative;
    width: 40px;

    right: 0.5em;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* User Info Sidebar */
#user-info-sidebar {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    pointer-events: auto;
}

#user-info-sidebar img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

#user-info .right-item-user {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#user-info .right-item-user a {
    border: none;
    outline: none;
}

.btn-admin,
.btn-logout,
.btn-discord {
    border-radius: 50px;
}

/* #server-grid {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    height: calc(100% - 10em);
    max-height: 100%;
} */


/* =========================================
   RESPONSIVE STYLES
   ========================================= */
@media (max-width: 1200px) {
    #fourthly #sc-four {
        width: 95%;
    }

    #fourthly .content .inner-content .rk-app {
        gap: 2em;
    }

    #fourthly .content .inner-content .rk-app .download-content .download-button {
        width: 100%;
        justify-content: center;
    }

    #fourthly .content .inner-content .rk-app .application-screen img {
        display: none;
    }
}

@media (max-width: 992px) {
    #fourthly #sc-four {
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    #fourthly .content .inner-content .rk-app {
        flex-direction: column;
        gap: 1.5em;
        margin-top: 3rem;
    }

    #fourthly .content .inner-content .rk-app .download-content .download-button {
        width: 100%;
        padding: 0.75em;
        font-size: 0.85em;
    }

    #fourthly .content .inner-content .rk-app .application-screen img {
        display: none;
    }
}

@media (max-width: 768px) {
    /* 
      Ab hier sprechen wir meistens von Tablets (Hochformat) 
      und große Smartphones. 
    */

    /* 1) Höhe der Section nicht fest, sondern auto */
    section {
        height: auto;
        margin-bottom: 2rem;
        /* etwas Luft am Ende */
    }

    /* 2) Die inner-content im #sc-two soll von row auf column switchen */
    #sc-two .inner-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
        /* etwas größeren Abstand zwischen den Widgets */
    }

    /* 3) Bilder nicht zu breit: (d-block w-50 wird für Mobile meist zu schmal) */
    #sc-one-img,
    .thumb img {
        display: none !important;
        width: 80% !important;
        margin: 0 auto;
    }

    /* 4) .widget sollte nicht starr 600px sein, sondern an den Bildschirm anpassen */
    .widget {
        width: 90%;
        margin: 0 auto 1.5rem auto;
        /* zentrieren und unten etwas Abstand */
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        /* Widgets untereinander statt nebeneinander */
        padding: 1em;
        /* Reduziertes Padding für kleinere Bildschirme */
    }

    /* 5) Große Überschriften etwas skalieren */
    .inner-content h2 {
        font-size: 2.3rem;
        line-height: 2.5rem;
    }

    /* Falls du die Header-Höhe reduzieren willst */
    .inner-content .header h1 {
        font-size: 1.5em;
    }

    /* 6) Sidebar für kleinere Bildschirme anpassen */
    .sidebar {
        flex-direction: row;
        /* Höhe nur 100px kann zu wenig sein, 
           wenn du viele Links nebeneinander hast */
        height: auto;
        /* evtl. so, damit man alles sieht */
        width: 95%;
        /* oder flexibler als 250px */
        margin: 0 auto;
        margin-top: 1rem;
        border-radius: 12px;
        padding: 20px 0;
    }

    .sidebar .nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        /* Bei Bedarf:
           flex-wrap: wrap;  
           -> wenn du willst, dass sie umbrechen */
    }

    .sidebar .nav-link {
        margin: 0;
        border-radius: 6px;
    }

    .avatar-sidebar {
        display: block;
    }

    #user-info-sidebar {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.7rem;
        pointer-events: auto;
    }

    #user-info-sidebar img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    #user-info {
        width: 100%;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #user-info .right-item-user {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    #user-info .home-nav-item {
        display: flex;
        flex-direction: column;
    }

    #user-info .home-avatar {
        /*         position: absolute;
        right: 1rem; */
        display: none;
    }

    /* 7) Flexbox für Dashboard anpassen */
    .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* 8) Server-Grid anpassen */
    .server-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    /* 9) Navbar anpassen */
    .navbar {
        width: 95%;
        padding: 0.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .navbar-brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-brand img {
        width: 40px;
        /* Verkleinert das Logo */
    }

    .btn-admin,
    .btn-discord,
    .btn-logout {
        width: 100%;
        text-align: center;
        padding-top: 0.78rem;
        padding-bottom: 0.78rem;
        border-radius: 0px;
    }

    /* 10) Modal anpassen */
    .modal-dialog {
        width: 95%;
        margin: 1rem auto;
    }

    .modal-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-content-area {
        padding: 1rem;
    }

    /* 11) Schriftgrößen für kleinere Bildschirme */
    .widget-text {
        font-size: 0.75em;
    }

    .server-card {
        padding: 20px;
        height: auto;
    }

    .server-header h1 {
        font-size: 1.5rem;
    }

    .server-header .search-box input {
        padding: 8px 30px 8px 10px;
    }

    .server-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden !important;
    }

    /* 
      Hierunter fallen die meisten Smartphones 
      (iPhone 5 bis iPhone 8 etc.).
    */

    /* Noch kompaktere Überschrift */
    .inner-content h2 {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    /* Den Margin-Top verringern für #sc-one .inner-content */
    #sc-one .inner-content {
        margin-top: 2rem;
    }

    .widget {
        width: 95%;
    }

    /* Weitere Anpassungen für sehr kleine Bildschirme */
    .navbar {
        padding: 0.5rem;
    }

    .sidebar {
        display: none;
        /* Sidebar auf sehr kleinen Bildschirmen ausblenden */
    }

    .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .server-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .server-card {
        padding: 15px;
    }

    .modal-sidebar {
        display: none;
        /* Sidebar im Modal auf kleinen Bildschirmen ausblenden */
    }

    .modal-content-area {
        padding: 1rem;
    }

    #fourthly #sc-four {
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    #fourthly .content .inner-content .rk-app {
        flex-direction: column;
        gap: 1.5em;
        margin-top: 3rem;
    }

    #fourthly .content .inner-content .rk-app .download-content .download-button {
        width: 100%;
        padding: 0.75em;
        font-size: 0.85em;
    }

    #fourthly .content .inner-content .rk-app .application-screen img {
        display: none;
    }
}

.right-elements {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3em;
}

.right-elements .navbar-download {
    position: relative;
    display: flex;
    flex-direction: column;
}

.right-elements .navbar-download .download-button {
    display: flex;
    /* justify-content: center; */
    gap: 1em;
    align-items: center;
    width: auto;
    height: auto;
    padding: 1em;
    padding-left: 2em;
    padding-right: 2em;
    position: relative;
    border: 1px solid transparent;
    border-radius: 10px;
    background-clip: padding-box;
    background-color: rgba(10, 15, 22, 0.95);
    text-decoration: none;
    color: rgb(134, 175, 209);
    font-size: 0.75em;
    text-align: left;
    /* filter: brightness(none); */
    transition: background-color .2s, color .2s ease-in-out, all .2s ease-in-out;
}

.right-elements .navbar-download .download-button img {
    width: 16px;
    height: 16px;
}

.right-elements .navbar-download .download-button .download-text {
    font-family: 'rulekeeper';
    font-size: 0.75em;
    color: white;
}

.right-elements .navbar-download .download-button:hover {
    background-color: rgba(10, 15, 22, 0.9);
    color: white;
}

.right-elements .navbar-download .download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, #00c8af, #9146FF);
}

/* Zusätzliche Responsive Anpassungen */

/* Flexbox Anpassungen */
@media (max-width: 768px) {
    #sc-three .header h2 {
        text-align: center;
    }

    .right-elements {
        width: 100%;
    }

    .navbar {
        position: relative;
        width: 100vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .topbar {
        border-radius: 10px !important;
        background-color: transparent !important;
    }

    /* Stack Navbar Items */
    .navbar .container-fluid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .navbar .container-fluid .topbar-item {
        position: relative;
        width: 95%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .navbar .container-fluid .topbar-item:first-child {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom: 1px solid #ccc;
    }

    .navbar .container-fluid .topbar-item:last-child {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top: 1px solid #ccc;
    }

    /* Center Logo */
    .navbar-brand {
        margin-bottom: 1rem;
    }

    /* Widgets untereinander */
    #sc-two .inner-content .widget {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* Server Grid */
    .server-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    /* Modal */
    .modal-dialog {
        max-width: 100%;
    }

    /* Team Section */
    #third .content .inner-content .header {
        position: relative;
        text-align: center;
        margin: 0 auto;
    }

    #third .content .inner-content .header h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {

    /* Smartphones */
    #fourthly #sc-four {
        width: 95%;
        margin: 0 auto 1rem;
    }

    #fourthly .content .inner-content .rk-app {
        gap: 1em;
        margin-top: 2rem;
    }

    #fourthly .content .inner-content .rk-app .download-content .download-button {
        width: 100%;
        padding: 0.6em;
        font-size: 0.75em;
    }

    #fourthly .content .inner-content .rk-app .application-screen img {
        display: none;
    }
}