@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #00FF9D;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #010B0B;
    --background-color: #010B0B;
    --text-color: #849A9A;
    --text-color-hover: #ffffff;
}

* {
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: var(--background-color) !important;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    overflow-y: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 100px;
    overflow: visible;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: all 0.2s ease-out;
    width: 100%;
    height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.navbar.scrolled {
    background-color: rgba(0,0,0,0.10);
    height: 70px;
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
    -ms-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: transparent;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler .navbar-toggler-icon {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler.is-active .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.is-active .navbar-toggler-icon::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler.is-active .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color) !important;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 0;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-link:hover {
    color: #FFFFFF !important;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    transition: all 0.2s ease-out;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link-iconsai {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(to right, #37FC17, #14EEEE);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #37FC17;
    height: 100%;
    padding: 0;
}

.nav-link-ultimate {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #0057FF, #14EEEE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #14EEEE;
    height: 100%;
    padding: 0;
}

.nav-link-ultimate p {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.ultimate-icon-svg {
    display: block;
    height: 20px;
    width: 20px;
    margin: 0 5px 0 0;
    vertical-align: middle;
    color: #14EEEE;
    filter: drop-shadow(0 0 4px #14EEEE);
    transition: filter 0.3s, color 0.3s;
}

.nav-link-ultimate:hover .ultimate-icon-svg {
    filter: drop-shadow(0 0 8px #14EEEE);
}

.nav-link-iconsai p {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.navbar:not(.scrolled) .navbar-brand,
.navbar:not(.scrolled) .nav-link {
    color: var(--text-color) !important;
}

.navbar:not(.scrolled) .nav-link:hover {
    color: #FFFFFF !important;
}

.navbar-collapse {
    transition: all 0.2s ease-out;
}

@media (max-width: 768px) {
    .container {
        background-color: transparent;
        padding: 0 15px;
    }

    .dashboard-card {
        margin-bottom: 15px;
    }

    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar.scrolled {
        height: auto;
    }

    .navbar-collapse {
        background: rgba(1, 11, 11, 0.95);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1rem;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.2s ease-out;
        display: block !important;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .navbar-collapse.collapsing {
        opacity: 0;
        transform: translateY(-10px);
        visibility: visible;
    }

    .navbar-nav {
        height: auto !important;
        margin: 0;
        padding: 0.5rem 0;
    }

    .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .nav-link {
        height: auto;
        padding: 10px 15px;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease-out;
    }

    .nav-link-unfocusedbtn,
    .nav-link-focusedbtn {
        width: 100%;
        margin: 0.5rem 0;
        height: 45px;
        border-radius: 8px;
        justify-content: center;
    }

    .navbar-nav:last-child {
        flex-direction: column;
        width: 100%;
    }

    .navbar-nav:last-child .nav-item {
        width: 100%;
    }

    .navbar-nav:last-child .nav-item a {
        width: 100%;
        margin-right: 0;
    }

    .nav-link-unfocusedbtn,
    .nav-link-focusedbtn {
        justify-content: center;
        padding: 0 15px;
    }

    .navbar-nav:first-child {
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .hero-title {
        font-size: 30px !important;
    }

    .hero-description {
        font-size: 14px !important;
    }

    .hero-button {
        width: 100%;
        max-width: 200px;
    }

    .navbar-toggler {
        padding: 0.5rem;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='0' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        transition: all 0.2s ease-out;
    }

    .auth-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link-iconsai {
        justify-content: center;
        height: auto !important;
        padding: 0.5rem 0;
    }

    .navbar-toggler-icon {
        transition: all 0.2s ease-out;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: none !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: rgba(1, 11, 11, 0.95);
        border-radius: 8px;
        padding: 1rem;
    }

    .nav-link-focusedbtn {
        width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        position: static !important;
    }

    .navbar-nav {
        flex-direction: row !important;
    }

    .nav-item {
        width: auto !important;
        margin: 0 10px !important;
    }

    .auth-nav {
        margin-left: auto !important;
    }

    .nav-link-unfocusedbtn,
    .nav-link-focusedbtn {
        width: auto !important;
        margin: 0 5px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse:not(.show) {
        display: none !important;
    }
}

.nav-link-unfocusedbtn {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 150px;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: var(--text-color);
    vertical-align: middle;
    margin-right: 10px;
    border: none !important;
    outline: none !important;
    transition: all 0.2s ease-out;
}

.nav-link-unfocusedbtn p {
    margin: 0;
    text-decoration: none !important;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link-unfocusedbtn:hover {
    color: var(--text-color-hover);
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.nav-link-unfocusedbtn:hover img {
    filter: brightness(0) invert(1);
    transition: all 0.2s ease-out;
}

.nav-link-focusedbtn {
    background-color: var(--primary-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: auto;
    min-width: 150px;
    padding: 0 20px;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: var(--dark-color);
    vertical-align: middle;
    margin-right: 10px;
    border: none !important;
    outline: none !important;
    transition: all 0.2s ease-out;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.nav-link-focusedbtn p {
    margin: 0;
    text-decoration: none !important;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link-focusedbtn:hover {
    color: var(--dark-color);
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
    transform: translateY(-1px);
}

.nav-link-focusedbtn:hover img {
    transform: translateX(2px);
    transition: all 0.2s ease-out;
}

.footermenu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(to bottom, #00000000, #000000);
    min-height: 315px;
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 2;
}

.footerdiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    min-width: 200px;
}

.logo-branding-footer {
    max-width: 200px;
    height: auto;
}

.footer-title {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: white;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-color);
    margin-top: 10px;
    font-size: 14px;
}

.footer-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px !important;
    margin-top: 8px;
    transition: color 0.2s ease-out;
}

.footer-link:hover {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footermenu {
        padding: 30px 15px;
    }

    .footermenu .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footerdiv {
        width: 100%;
        align-items: center;
        padding: 15px 0;
        min-width: unset;
    }

    .footerdiv:first-child {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo-branding-footer {
        max-width: 180px;
    }

    .footer-title {
        margin-bottom: 10px;
    }

    .footer-link {
        margin-top: 6px;
    }

    .custom-spacer {
        height: 3px !important;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .footermenu .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footerdiv {
        width: calc(33.333% - 30px);
        margin: 15px;
    }

    .footerdiv:first-child {
        width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-section {
    margin-top: 50px;
    padding: 0 15px;
}

.hero-title {
    font-size: 40px !important;
    font-weight: 700 !important;
    background: linear-gradient(78deg, #FFFFFF, #CECECE);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFFFFF;
    animation: gradientAnimation 3s ease infinite;
    background-size: 200% 200%;
}

.hero-description {
    margin-top: 10px;
    font-size: 15px !important;
    color: var(--text-color-hover) !important;
}

.small-spacer {
    margin: 10px 0;
}

.medium-spacer {
    margin: 50px 0;
}

.hero-link {
    text-decoration: none;
    width: 200px;
}

.hero-arrow {
    margin-left: 5px;
    height: 14px;
    width: 14px;
    vertical-align: middle;
}

.hero-button {
    background: linear-gradient(78deg, #00FF9D, #00995E);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 200px;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: var(--dark-color);
    vertical-align: middle;
    border: none !important;
    outline: none !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: gradientAnimation 3s ease infinite;
    background-size: 200% 200%;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button p {
    margin: 0;
    text-decoration: none !important;
    line-height: 1;
    display: flex;
    align-items: center;
}

.big-spacer {
    height: 200px;
    width: 1px;
}

.large-spacer {
    height: 100px;
    width: 1px;
}

.showcase-section {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.showcase-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    position: relative;
    overflow: visible;
}

.showcase-section svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    overflow: hidden;
    position: relative;
}

.showcase-section .container {
    position: relative;
}

.showcase-section .showcase-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1475px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    z-index: 1;
}

.showcase-section svg {
    position: relative;
    z-index: 2;
}

.showcase-section svg g[filter="url(#filter0_f_2112_69)"] path,
.showcase-section svg g[filter="url(#filter1_f_2112_69)"] path {
    animation: glowPulse 3s ease-in-out infinite;
    transform-origin: center;
}

.showcase-section svg g[filter="url(#filter2_d_2112_69)"] {
    animation: none !important;
}

.showcase-section svg {
    filter: url(#colorFilter1);
}

.showcase-section svg defs {
    filter: none;
}

@keyframes glowPulse {
    0% {
        filter: saturate(1.8) brightness(1.3) hue-rotate(0deg);
        opacity: 0.8;
    }

    50% {
        filter: saturate(2.2) brightness(1.5) hue-rotate(30deg);
        opacity: 1;
    }

    100% {
        filter: saturate(1.8) brightness(1.3) hue-rotate(0deg);
        opacity: 0.8;
    }
}

.showcase-description-section {
    margin-top: -250px;
    padding: 0 15px;
}

.showcase-description {
    font-size: 15px !important;
    color: var(--text-color-hover) !important;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .showcase-section {
        height: auto;
        min-height: 50vh;
    }

    .showcase-section svg .glow-effects {
        display: none;
    }

    .showcase-section svg .main-content {
        filter: none;
    }

    .showcase-section svg {
        height: auto;
        min-height: 0;
    }

    .showcase-description {
        font-size: 14px !important;
    }

    .showcase-description-section {
        margin-top: 10px;
    }
}

@media (max-width: 1199px) {
    .showcase-section {
        display: none;
    }

    .showcase-description-section {
        margin-top: 10px;
    }

    .mini-showcase {
        display: block;
        width: auto;
        max-width: 960px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .showcase-section svg g[filter="url(#filter0_f_2112_69)"],
    .showcase-section svg g[filter="url(#filter1_f_2112_69)"] {
        display: none;
    }

    .showcase-section svg g[filter="url(#filter2_d_2112_69)"] rect:first-child {
        width: 100%;
        height: 100%;
        x: 0;
        y: 0;
        rx: 0;
    }

    .showcase-section svg g[filter="url(#filter2_d_2112_69)"] rect:last-child {
        display: none;
    }
}

@media (min-width: 1920px) {
    .showcase-section .container {
        max-width: none;
    }

    .showcase-section svg {
        width: 1920px;
    }
}

@media (max-width: 1919px) {
    .showcase-description-section {
        margin-top: 10px !important;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mini-showcase {
    margin-top: 10px !important;
    max-width: 960px;
    display: none;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent !important;
    position: relative;
    overflow: visible;
    margin-left: auto !important;
    margin-right: auto !important;
}

.mini-showcase .container {
    width: 100%;
    max-width: 960px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto !important;
    margin-right: auto !important;
}

.mini-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

.showcase-section svg g[filter="url(#filter2_d_2112_69)"] rect:first-child {
    fill: url('../images/preview.png');
}

@media (max-width: 576px) {
    body {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-link-unfocusedbtn,
    .nav-link-focusedbtn {
        font-size: 14px !important;
        height: 40px;
    }

    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 20px;
    }
}

@supports (-webkit-touch-callout: none) {
    .navbar.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: rgba(0,0,0,0.10);
    }

    .nav-link-iconsai,
    .hero-title,
    .downloads-titel,
    .downloads-description,
    .highlight {
        background: none;
        color: inherit;
        -webkit-text-fill-color: initial;
    }
}

@-moz-document url-prefix() {
    .nav-link-iconsai,
    .hero-title,
    .downloads-titel,
    .downloads-description,
    .highlight {
        background-clip: text;
        -moz-background-clip: text;
    }
}

.mini-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .showcase-section {
        display: none;
    }

    .mini-showcase {
        display: block;
        width: auto;
        max-width: 960px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mini-showcase {
        width: 100%;
        max-width: 960px;
        padding: 0 15px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.branding-band {
    margin-top: 50px;
    margin-left: auto !important;
    margin-right: auto !important;
    height: auto;
    width: 100%;
    text-align: center;
}

.walktrough-selection {
    display: flex;
    justify-content: center;
    width: 100%;
}

.walktrough-headling {
    font-size: 40px !important;
    font-weight: 700 !important;
    background: linear-gradient(78deg, #FFFFFF, #CECECE);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 200%;
    text-align: center;
    width: 100%;
}

.tutorial-section {
    background-color: transparent !important;
    width: 100%;
    height: auto;
}

.fade-out-up {
    background: linear-gradient(to top, #000000, transparent);
    height: 90px;
    width: 100%;
}

.features-hero {
    width: 100%;
    background-color: black;
    background-image: url('../images/features-bg.png') !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: auto;
    padding-top: 45px;
    padding-bottom: 45px;
}

.fade-out-down {
    background: linear-gradient(to bottom, #000000, transparent);
    height: 90px;
    width: 100%;
}

.downloads-titel {
    font-size: 40px !important;
    font-weight: bold !important;
    background: linear-gradient(to bottom, #FFFFFF, #515151);
    -webkit-background-clip: text;
    background-clip: #ffffff;
    color: transparent;
    text-align: center;
}

.downloads-description {
    font-size: 24px !important;
    font-weight: medium !important;
    background: linear-gradient(to bottom, #FFFFFF, #515151);
    -webkit-background-clip: text;
    background-clip: #ffffff;
    color: transparent;
    text-align: center;
    margin-top: 10px;
}

.supported-games-selection {
    display: flex;
}

.overview-image {
    width: 100%;
    height: auto;
    max-width: 876px;
    max-height: 547px;
}

.vertical-viewport {
    flex-direction: column;
    display: flex;
    margin-left: 25px;
}

.overview-title {
    font-size: 36px !important;
    font-weight: 500 !important;
    color: #FFFFFF;
}

.highlight {
    font-size: 36px !important;
    font-weight: 900 !important;
    background: linear-gradient(to right, #52FFBC, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1400px) {
    .supported-games-selection {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vertical-viewport {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .supported-gamelibs {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .game-library-item {
        margin-top: 0px;
        margin-right: 5px;
    }

    .overview-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .vertical-viewport-right {
        order: 1;
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
        align-items: center;
    }

    .overview-description {
        text-align: center;
    }

    .vertical-viewport {
        order: 0;
        width: 100%;
    }

    .features-selection {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .overview-title {
        font-size: 24px !important;
    }

    .highlight {
        font-size: 24px !important;
    }

    .overview-image {
        max-width: 100%;
        max-height: auto;
    }

    .vertical-viewport-right {
        text-align: center;
        margin-right: 0;
        margin-top: 20px;
    }
}

.overview-description {
    font-size: 15px !important;
    margin-top: 10px;
    color: #FFFFFF;
}

.supported-gamelibs {
    display: flex;
    flex-direction: column;
}

.game-library-item {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.library-icon {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

.library-name {
    color: white;
    margin: 0px;
    font-size: 20px !important;
    justify-content: center;
}

.supported-gameslib-info {
    font-size: 16px !important;
    color: #FFFFFF;
}

.vertical-viewport-right {
    flex-direction: column;
    display: flex;
    margin-right: 25px;
    text-align: right;
}

.features-selection {
    display: flex;
}

.dropdown-menu-dark {
    background-color: #1a1d21;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    position: fixed !important;
    top: 60px !important;
    margin-top: 0 !important;
    min-width: 240px;
    transform-origin: top;
    z-index: 1000;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-size: 14px;
    padding: 12px 16px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-user-info {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-user-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.dropdown-user-email {
    color: #6c757d;
    font-size: 13px;
}

.dropdown-menu-dark .dropdown-item {
    color: #e9ecef;
    padding: 8px 16px;
    font-size: 14px;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.dropdown-menu-dark .dropdown-item.text-danger {
    color: #ff4d4d !important;
}

.dropdown-menu-dark .dropdown-item.text-danger:hover {
    background-color: rgba(255,77,77,0.1);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.newsletter-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.newsletter-container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    background: linear-gradient(78deg, #FFFFFF, #CECECE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.newsletter-description {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 20px;
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-button {
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.alert-error {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
}

@media (max-width: 576px) {
    .newsletter-container {
        padding: 25px;
    }
    
    .newsletter-title {
        font-size: 24px !important;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    user-select: none;
    align-items: center;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--dark-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkmark 0.2s ease-in-out;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.cookies-section {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}