/*
* Name: SeekWeb CSS
* Author: qSeek
* Website: https://qseek.org
*/
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');


:root {
    --background: #162229;
    --panel: #1C2A33;
    --border-color: #203946;
    --primary-color: #2FB1FF;
    --primary-color-hover: #4db8fa;
    --primary-color-transparent: rgba(47, 177, 255, 0.25);
    --secondary-color: #7636FF;
    --hover: #1C3246;
    --white: #fff;
    --text: #DBF2FF;
    --secondary-text: #BDD1DD;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --shadow: rgb(0, 0, 0, 0.25);
}

.preload * {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}



body {
    background: var(--background);
    font-family: 'Poppins', sans-serif;
    color: var(--text)
}

html {
    scroll-behavior: smooth;
}

.header {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(0deg, var(--panel), transparent);
}

.header__flare {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.header__layout {
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.header__layout>div {
    flex: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.hero__title {
    color: var(--white);
    font-weight: 400;
    font-size: 4em;
	font-family: "Bungee", sans-serif;
	font-style: normal;
    margin-bottom: 0;
}

.hero__title--highlight {
    color: var(--primary-color);
    animation: glowing 4s infinite ease-in-out;
}

@keyframes glowing {
    0% {
        text-shadow: 0px 0px 0px rgba(47, 177, 255, 0.25);
    }
    50% {
        text-shadow: 0px 0px 18px rgba(47, 177, 255, 0.25);
    }
    100% {
        text-shadow: 0px 0px 0px rgba(47, 177, 255, 0.25);
    }
}

.hero__desc {
    color: var(--secondary-text);
    font-size: 1.6em;
}

.hero__buttons {
    display: flex;
    gap: 0.8em;
}

.header-graphic {
    position: relative;
    height: 480px;
}

.header-graphic__img {
    position: absolute;
    
    animation: floating 5s infinite ease-in-out;
    box-shadow: 0px 45px 68px rgb(0,0,0,0.1);
    width: 50rem;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.button {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
}
.button:hover {
    text-decoration: none;
}

.button--primary {
    background: var(--primary-color);
    color: rgb(0, 0, 0, 0.40);
}

.button--primary:hover {
    background: var(--primary-color-hover);
    box-shadow: 0px 0px 12px RGBA(47, 177, 255, 0.25);
}

.button--primary i {
    transition: 0.2s;
}

.button--primary:hover i {
    transform: translateX(5px);
}

.button--secondary {
    background: var(--primary-color-transparent);
    color: var(--primary-color);
}

.button--secondary:hover {
    background: var(--primary-color);
    color: rgb(0, 0, 0, 0.40);
    box-shadow: 0px 0px 12px RGBA(47, 177, 255, 0.25);
}
.button--info {
    background: RGBA(219, 242, 255, 0.15);
    border: 1px solid RGBA(219, 242, 255, 0.15);
    color: var(--white);
}

.button--info:hover {
    box-shadow: 0px 0px 12px RGBA(219, 242, 255, 0.15);
    color: var(--white);    
}
.button--large {
    font-size: 1.2em;
}

.guides {
    display: flex;
    gap: 2.4em;
    margin-bottom: 80px;
}

.guide {
    display: flex;
    gap: 0.8em;
    align-items: center;
    transition: 0.4s;
}

.guide:hover {
    transform: translateY(-8px);
    cursor: default;
}

.guide__icon {
    color: var(--primary-color);
    font-size: 2.1em;
    background: var(--primary-color-transparent);
    width: 64px;
    height: 64px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 8px;
    flex-basis: 64px;
    flex-grow: 0;
    flex-shrink: 0;
}

.guide__title {
    color: var(--white);
    font-weight: bold;
    font-size: 1.4em;
}

.guide__desc {
    color: var(--secondary-text);
}

.section-1 {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.section-1__flare {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: fill;
}

.section-1__title {
    text-align: center;
    font-weight: bold;
    font-size: 3.8em;
    color: var(--white);
    position: relative;
    margin: 0;
}

.section-1__title::after {
    content: "Benchmarks";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 4.8rem;
    z-index: -1;
    opacity: 0.015;
}

.section-1__subtitle {
    color: var(--secondary-text);
    font-size: 1.2em;
    text-align: center;
}

.section_1__viewmore {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 1em 0;
}

.section-1 .creations {
    display: flex;
    gap: 1em;
}
/*
.creation {
    width: 49%;
    background: linear-gradient(145deg, var(--primary), transparent);
    border-radius: 8px;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 30px rgba(11, 33, 74, 0.11), 0 -2px 5px rgba(11, 33, 74, 0.03);
    box-shadow: 0 4px 30px rgba(11, 33, 74, 0.11), 0 -2px 5px rgba(11, 33, 74, 0.03);
    position: relative;
    justify-content: space-between;
    margin: 10px 0;
}
*/

/*
.creationspecial {
    width: 75%;
    background: linear-gradient(145deg, var(--primary), transparent);
    border-radius: 8px;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 30px rgba(11, 33, 74, 0.11), 0 -2px 5px rgba(11, 33, 74, 0.03);
    box-shadow: 0 4px 30px rgba(11, 33, 74, 0.11), 0 -2px 5px rgba(11, 33, 74, 0.03);
    position: relative;
    justify-content: space-between;
    margin: 10px 0;
}
*/

.section-1 .creations {
    margin: 1.5em 0;
}

.section-1 .creationsspecial {
    margin: 3.5em 0;
}

.creation {
    background: RGBA(219, 242, 255, 0.15);
    border: 1px solid RGBA(219, 242, 255, 0.15);
    border-radius: 2px;
    padding: 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.creationspecial {
    background: RGBA(219, 242, 255, 0.15);
    border: 1px solid RGBA(219, 242, 255, 0.15);
    border-radius: 2px;
    padding: 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.creation--portfolio {
    background: var(--panel);
    border: 1px solid var(--border-color);
}

.creation__image {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.creation__specialimage {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.creation__image img {
    width: 100%;
    overflow: hidden;
    transition: 0.2s;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: scale(1);
}

.creation__title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.creation__desc {
    color: var(--secondary-text);

}

.creation__details {
    flex: 1;
}

.creation .title {
    margin: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 3rem;
    line-height: 56px;
    font-variant: small-caps;
    color: #fff;
    text-transform: lowercase;
}

.creation .type {
    opacity: 0.7;
    font-style: normal;
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.creation:hover > .creation__image > img {
    transform: scale(1.1);
}

.creation:hover .details {
    opacity: 0;
    transform: scale(0.8);
}


.section-1 .buttons {
    text-align: center;
    display: block;
    margin: 35px 0;
}

.section-1 .buttons a {
    padding: 15px 50px;
    font-weight: bold;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 50%, #165de2 50%, #165de2 100%);
    background-size: 200%;
    transition: 0.5s;
    text-decoration: none;
}

.section-1 .buttons a:hover {
    background-position: right;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.1rem;
}

.navbar-brand img {
    vertical-align: sub;
    width: 80px;
}

.section-2 {
    padding: 60px 0 100px 0;
    margin-bottom: 50px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background: var(--panel);
    position: relative;
}

.section-2::before {
    content: " ";
    top: -164px;
    position: absolute;
    object-fit: contain;
    width: 100%;
    background: url("/assets/img/section-2.svg") no-repeat;
    height: 164px;
    background-size: contain;
    background-position-y: bottom;
    filter: drop-shadow( 0px -1px 0px var(--border-color));
    z-index: -1;
  }

.section-2__title {
    font-weight: bold;
    font-size: 3.8em;
    color: var(--white);
    position: relative;
    margin: 0;
}

.section-2__title::after {
    content: "Anmeldelser";
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 4.8rem;
    opacity: 0.015;
}

.section-2__subtitle {
    color: var(--secondary-text);
    font-size: 1.2em;
}


.section-2 .reviews {
    display: flex;
    gap: 12px;
    margin-top: 1em;
}
.section-2 .container {
    max-width: 1400px;
}
.section-2 .reviews.slick-initialized .slick-slide {
    padding: 0 14px;
}
.section-2 .reviews.slick-initialized .slick-list {
    margin: 0 -14px;
}

.review {
    background: var(--border-color);
    padding: 1.4em;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    flex: 1;
    border-radius: 8px;
}

.review__quote {
    background: var(--primary-color);
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 1.2em;
}

.review__text {
    color: var(--secondary-text);
    flex: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.6em
}

.author__avatar {
    border-radius: 8px;
    width: 40px;
}

.author__name {
    color: var(--white);
    font-weight: bold;
}

.author__source {
    font-size: 0.85em;
    color: var(--secondary-text);
}


.authorbig {
    display: flex;
    align-items: center;
    gap: 0.6em
}

.section-bench {
    margin-top: 3.5rem;
    position: relative;
}
.section-bench__title {
    font-weight: bold;
    font-size: 3.8em;
    color: var(--white);
    margin: 0;
}
.section-bench__subtitle {
    color: var(--secondary-text);
    font-size: 1.2em;
}
.section-bench .benchmarks-front {
    display: flex;
    gap: 12px;
    margin-top: 1em;
}
.section-bench .container {
    max-width: 1400px;
}
.section-bench .benchmarks-front.slick-initialized .slick-slide {
    padding: 0 14px;
}
.section-bench .benchmarks-front.slick-initialized .slick-list {
    margin: 0 -14px;
}

.section-bench .benchmarks-front.slick-initialized .slick-track {
    display: flex;
}
.section-bench .benchmarks-front.slick-initialized .slick-slide {
    height: inherit;
}
.section-bench .benchmarks-front.slick-initialized .slick-slide > div {
    height: 100%;
}

.section-bench .creation {
    background: rgba(219, 242, 255, 0.06);
    border: 1px solid rgba(219, 242, 255, 0.14);
    border-radius: 16px;
    padding: 14px;
    height: 100%;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.section-bench .creation:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 177, 255, 0.55);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    background: rgba(219, 242, 255, 0.08);
}

.section-bench .creation__image {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}
.section-bench .creation__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.38) 100%);
    pointer-events: none;
}
.section-bench .creation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.section-bench .creation__details {
    margin-top: 12px;
}
.section-bench .creation__title {
    font-size: 1.25rem;
    line-height: 1.15;
}
.section-bench .creation__desc {
    margin-top: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(219, 242, 255, 0.7);
}
.section-bench .button {
    width: 100%;
    margin-top: auto;
    border-radius: 12px;
}

.authorbig__avatar {
    border-radius: 8px;
    width: 40px;
}

.authorbig__name {
    color: var(--white);
    font-weight: bold;
}

.authorbig__source {
    font-size: 0.85em;
    color: var(--secondary-text);
}


.section-3 {
    margin: 120px 0;
}

.section-3 .feature {
    display: flex;
    justify-content: space-between;
    margin: 100px 0;
    overflow-x: hidden;
}

.section-3 .feature .box {
    margin: auto 0;
    max-width: 35%;
}

.section-3 .feature img {
    width: 50%;
    max-width: 100%;
}

.section-3 .feature .box .mdi {
    color: var(--primary-color);
    font-size: 40px;
}

.section-3 .feature .box h1 {
    font-size: 2rem;
    margin: 16px 0;
    color: var(--white);
}

.section-3 .feature .box span {
    font-size: 1.125rem;
    color: var(--secondary-text);
    font-family: 'Open Sans', sans-serif;
}

.section-3 .feature .box ul {
    margin: 0;
    padding: 0;
    margin-top: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--secondary-text);
}

.section-3 .feature .box ul li {
    margin: 5px 0;
    padding-left: 20px;
    list-style-type: none;
    position: relative;
}

.section-3 .feature .box ul li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.section-4 {
    background: linear-gradient(180deg, var(--panel), transparent);
    padding: 50px 0;
}

.section-4 h1 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    display: block;
    margin-bottom: 25px;
}

/*.section-4 .softwares {
    display: flex;
    justify-content: space-around;
    margin: 70px 0;
}
.section-4 .softwares img {
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}*/
.section-5 {
    z-index: 5;
    position: relative;
}

.section-5 .panel {
    background: var(--panel);
    padding: 25px 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.section-5 h1 {
    color: var(--primary-color);
    position: relative;
    font-size: 2rem;
}

.section-5 label {
    font-size: 0.9rem;
}

.section-5 form {
    margin: 24px 0;
}

.section-5 h1:after {
    background: var(--primary-color);
    position: absolute;
    width: 86px;
    height: 4px;
    content: "";
    bottom: -12px;
    left: 0px;
    border-radius: 8px;
}

.section-5 .columns {
    display: flex;
    margin: 20px 0;
}

.section-5 .column {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 15px;
}

.section-5 .column:first-child, .section-5 .column:last-child {
    margin: 0;
}

.section-5 input:not(.button) {
    border: 0;
    background: var(--border-color);
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    color: inherit;
}

.section-5 select {
    -webkit-appearance: none;
    border: 0;
    background: var(--border-color);
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    color: inherit;
}

.section-5 input#details {
    height: 200px;
}


.section-5 textarea {
    border: 0;
    background: var(--border-color);
    border-radius: 4px;
    padding: 8px;
    min-height: 150px;
    color: inherit;
    width: 100%;
}

footer {
    color: var(--text);
    padding: 3em 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--panel), transparent);
    margin-top: 1.2em;
}

footer .socials img {
    width: 28px;
}

footer .socials a {
    margin-right: 15px;
}

footer .columns {
    display: flex;
}

footer .column {
    margin: auto 0;
}

footer .column.right {
    margin-left: auto;
}

@media (max-width: 1200px) {
    .section-2 .reviews {
        flex-direction: column;
    }
    .section-3 .feature:nth-child(1) {
        flex-direction: column-reverse;
    }
    .section-3 .feature:nth-child(2) {
        flex-direction: column;
    }
    .section-3 .feature .box, .section-3 .feature img {
        width: 100%;
        max-width: 100%;
        margin: 25px 0;
    }
}

.portfolio .creations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-title {
    text-align: center;
    margin: 30px;
}

.auth-button {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 30px !important;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 14px !important;
}

.scroll-up {
    position: fixed;
    display: flex;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    color: #fff;
    margin: 0 40px 40px 0;
    border-radius: 50%;
    font-size: 25px;
    height: 60px;
    width: 60px;
    opacity: 0;
    cursor: pointer;
    z-index: 999;
}

.scroll-up span {
    margin: auto;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-toggler {
    border: 0;
}

.page-content {
    background: var(--panel);
    padding: 22px 26px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}


.elipse_big {
    content: "";
    position: absolute;
    background: url('/assets/img/elipse_big.svg') no-repeat;
    width: 320px;
    height: 620px;
    right: 0;
    z-index: -1;
}

.elipse_small {
    content: "";
    position: absolute;
    background: url('/assets/img/elipse_small.svg') no-repeat;
    width: 340px;
    height: 340px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.icon-input>i {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 12px auto 12px;
    height: max-content;
    color: var(--primary-color);
}

.icon-input>input {
    padding-left: 32px;
}

.invalid-feedback {
    display: block;
}

.btn-sleek {
    background: var(--gradient);
    background-size: 150%;
    color: #fff !important;
    padding: 14px 0;
    transition: 0.5s;
    padding: 15px 50px;
    border-radius: 8px;
    display: block;
    width: fit-content;
}

.btn-sleek:hover {
    background-position: right;
    text-decoration: none;
}

.card.auth .form-check-input, .card.auth .form-control {
    border: 2px solid var(--border-color);
    background: var(--panel);
}

.card.auth .form-control {
    padding-top: 21px;
    padding-bottom: 21px;
}

.auth-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.auth-card-header .auth-card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.auth-card-header .auth-card-desc {
    position: relative;
    color: var(--text);
    font-size: 0.8rem;
    margin-left: 16px;
}

.auth-card-header .auth-card-desc:before {
    content: "";
    height: 20px;
    width: 1px;
    background: var(--text);
    display: block;
    position: absolute;
    left: -9px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.alert {
    display: flex;
}

.alert>i {
    padding-right: 12px;
    font-size: 24px;
}

.card {
    background-color: var(--panel);
    border: 1px solid var(--border-color);
}

.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: var(--text);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: var(--text);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--secondary-text)
}

.form-control {
    color: var(--secondary-text);
}

.form-control:focus {
    color: var(--text);
}

.form-control::placeholder {
    color: var(--secondary-text);
}

table, .table {
    color: var(--text);
}

.table thead th, .table th, .table td {
    border-top: 1px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.dropdown-menu {
    background-color: var(--panel);
    border: 1px solid var(--border-color);
    color: var(--text);
}

.dropdown-item {
    color: var(--text);
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--text);
    text-decoration: none;
    background-color: var(--border-color);
}

@media (min-width:767.98px) {
    .nav-item.store {
        background: var(--gradient);
        background-size: 150%;
        border-radius: 6px;
        padding: 0 18px;
        transition: 0.5s;
        margin-left: 10px;
    }

    .nav-item.store:hover {
        background-position-x: right;
        color: #fff;
    }

    .nav-item.store>.nav-link {
        color: #fff;
    }

    .btn-index {
        background: rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 0px 8px;
    }

    .btn-index>a {
        color: #fff !important;
    }

    .alerts:not(.btn-index):after {
        content: "";
        width: 1px;
        height: 32px;
        position: absolute;
        display: block;
        background: var(--text);
        top: 0;
        bottom: 0;
        margin: auto;
        right: -5px;
        opacity: 0.4;
    }
}

@media (max-width:767.98px) {

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }

    .navbar-collapse {
        background: var(--panel);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px 22px;
        position: absolute;
        width: 85%;
        top: 80px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 1;
    }

    .auth-button {
        background: unset;
        color: rgba(0, 0, 0, .5) !important;
        border: 0;
        box-shadow: 0;
        font-weight: normal;
        font-size: 1.1rem !important;
        padding: .5rem 0rem !important;
    }

    .elipse_small {
        display: none;
    }
}

.slick-dots li.slick-active button::before, .slick-dots li button::before {
    color: var(--primary-color);
}

.content-title {
    margin: -24px -26px 24px -26px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.content-title h1 {
    margin-bottom: 0;
    font-size: 1.4em;
    color: var(--primary);
    font-weight: bold;
}

.widget>.content-title {
    color: var(--text);
    font-weight: bold;
    font-size: 1.1em;
}

.widget .categories {
    margin: -24px -26px;
}

.widget .categories .category {
    padding: 14px 26px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    color: var(--secondary-text);
    transition: 0.2s;
}

.widget .categories .category.active, .widget .categories .category:hover {
    background: var(--hover);
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.widget .categories .category:last-child {
    border-bottom: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.resource {
    border: 1px solid var(--border-color);
    padding: 22px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.resource:hover {
    background: var(--hover);
}

.resource .name {
    color: var(--primary-color);
    font-weight: bold;
}

.resource .desc {
    color: var(--secondary-text);
    font-size: 0.9em;
}

.resource .author, .resource .stat {
    font-size: 0.9em;
}

.resource .authorbig, .resource .stat {
    font-size: 0.9em;
}

.resource .stat>i {
    color: var(--primary-color);
}

.resource .stat>.stars {
    color: var(--yellow);
}

.alerts {
    position: relative;
    margin-right: 8px;
}

.alert-danger {
    background: #ff534e;
    border-color: #ff534e;
}
.alert-success {
    background: #34ff8b;
    border-color: #34ff8b;
}
.page-404>.info>h1 {
    color: var(--text);
    font-weight: bold;
}

.page-404>.info>p {
    color: var(--secondary-text);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 50% 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

canvas {
    display: block;
}

@media (max-width: 992px) {
    .header-graphic {
        display: none;
    }
    .guides {
        flex-direction: column;
    }
    .section-1 .creations {
        flex-direction: column;
    }
    .section-2__title::after {
        display: none;
    }
}

.gap-1 {
    gap: 1em;
}

.gap-2 {
    gap: 2em;
}

.gap-3 {
    gap: 3em;
}

.infobox {
    background: var(--gradient);
    padding: 1.2em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.infobox__title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--white);
    margin: 0;
}

.infobox__icon {
    font-size: 4em;
    color: rgb(255,255,255,0.6);
}

.infobox__text {
    font-size: 1.2em;
}

.portfolio-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.portfolio-flex > div {
    flex: 1 1 49%;
}

.portfolio-flex > .infobox {
    flex: 1 1 25%;
}

.page-title {
    background: var(--panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1em;
    padding: 1.2em;
}
.page-title__value {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    position: relative;
    margin: 0;
    text-align: center;
}

.section-3.faq .container {
    max-width: 900px;
    margin: 0 auto;
}
.section-3.faq .feature {
    justify-content: center;
}
.section-3.faq .feature > div {
    max-width: 900px;
}

.page-subtitle {
    color: var(--secondary-text);
    font-size: 1.2em;
}

/* Fluid scaling additions */
:root {
    --space-1: clamp(0.5rem, 0.8vw, 0.8rem);
    --space-2: clamp(0.75rem, 1.2vw, 1.2rem);
    --space-3: clamp(1rem, 2vw, 1.6rem);
    --radius-1: 6px;
    --radius-2: 12px;
    --shadow-1: 0 6px 24px rgba(0,0,0,.15);
}

h1, .section-1__title, .section-2__title {
    font-size: clamp(1.8rem, 3.5vw, 3.8rem);
    line-height: 1.1;
}

.hero__desc, .section-1__subtitle, .section-2__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.creationspecial, .creation {
    border-radius: var(--radius-1);
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform;
}
.creationspecial:hover, .creation:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-1);
}

.features-list {
    margin: var(--space-2) 0 0;
    padding-left: var(--space-2);
    color: var(--secondary-text);
}
.features-list li {
    margin: 6px 0;
}
.product-card__image {
    display: block;
    margin: 0 auto;
    max-width: 380px;
    border-radius: var(--radius-2);
    background: RGBA(219, 242, 255, 0.08);
}
.product-card__img {
    display: block;
    width: 100%;
    height: auto;
}
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: grid;
    place-items: center;
    z-index: 1000;
}
.image-modal[hidden] {
    display: none;
}
.image-modal__content {
    background: var(--panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    padding: var(--space-2);
    position: relative;
    width: 92vw;
    max-width: 980px;
    max-height: 90vh;
}
.image-modal__content--image {
    width: auto;
    max-width: 92vw;
    display: inline-block;
}
.image-modal__img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}
.image-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary-color);
    color: #000;
    border: 0;
    border-radius: var(--radius-1);
    padding: 6px 10px;
    cursor: pointer;
}
.benefits-modal__title {
    color: var(--white);
    margin: 0 0 var(--space-1) 0;
}
.benefits-modal__price {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--space-1);
}
.benefits-modal__desc {
    color: var(--secondary-text);
}
.benefits-modal__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-2);
    align-items: start;
}
.benefits-modal__media {
    background: RGBA(219, 242, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    padding: var(--space-1);
}
.benefits-modal__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-1);
}
.benefits-modal__list {
    color: var(--secondary-text);
    margin: var(--space-2) 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.benefits-modal__list li {
    margin: 0;
    flex: 1 1 45%;
    min-width: 220px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    position: relative;
    padding-left: 14px;
}
.benefits-modal__list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}
@media (max-width: 720px) {
    .benefits-modal__grid {
        grid-template-columns: 1fr;
    }
    .benefits-modal__list li {
        flex: 1 1 100%;
        min-width: 0;
    }
}

.benchmarks {
    margin-top: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.benchmarks__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.benchmarks__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.benchmarks-pill {
    border: 1px solid var(--border-color);
    background: rgba(219, 242, 255, 0.08);
    color: var(--secondary-text);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}
.benchmarks-pill:hover {
    background: rgba(219, 242, 255, 0.12);
}
.benchmarks-pill--active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: rgba(0, 0, 0, 0.65);
    font-weight: 700;
}
.benchmarks__search.icon-input {
    position: relative;
}
.benchmarks__search.icon-input > input {
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 12px 14px 12px 40px;
    min-width: 240px;
    color: var(--text);
}
.benchmarks__games {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 12px;
    scroll-snap-type: x mandatory;
}
.benchmarks__games::-webkit-scrollbar {
    height: 10px;
}
.benchmarks__games::-webkit-scrollbar-thumb {
    background: rgba(219, 242, 255, 0.12);
    border-radius: 999px;
}
.benchmarks-game {
    flex: 0 0 auto;
    min-width: 220px;
    width: 220px;
    height: 112px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--panel);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 12px;
    display: flex;
    align-items: flex-end;
    text-align: left;
    scroll-snap-align: start;
    transition: 0.2s;
}
.benchmarks-game__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 90%);
}
.benchmarks-game__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.benchmarks-game__name {
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.1;
}
.benchmarks-game__cats {
    color: rgba(219, 242, 255, 0.8);
    font-size: 0.75rem;
}
.benchmarks-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}
.benchmarks-game--active {
    border-color: rgba(47, 177, 255, 0.55);
    box-shadow: 0 0 0 2px rgba(47, 177, 255, 0.25), var(--shadow-1);
}
.benchmarks__panel {
    width: 100%;
}
.benchmarks-panel {
    background: var(--panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--space-2);
}
.benchmarks-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.benchmarks-panel__title {
    margin: 0;
    color: var(--white);
    font-size: 1.6rem;
}
.benchmarks-panel__headline {
    margin-top: 6px;
    color: var(--secondary-text);
    font-size: 1rem;
}
.benchmarks-panel__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.benchmarks-tag {
    border: 1px solid rgba(219, 242, 255, 0.18);
    background: rgba(219, 242, 255, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--text);
    font-size: 0.8rem;
}
.benchmarks-panel__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 1fr;
    gap: var(--space-2);
    margin-top: var(--space-2);
    align-items: start;
}
.benchmarks-compare__frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(219, 242, 255, 0.06);
}
.benchmarks-compare__before,
.benchmarks-compare__after img,
.benchmarks-compare__single img {
    width: 100%;
    height: auto;
    display: block;
}
.benchmarks-compare__after {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.benchmarks-compare__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.benchmarks-compare__before {
    height: 100%;
    object-fit: cover;
}
.benchmarks-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.benchmarks-compare__labels {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}
.benchmarks-compare__labels span {
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.benchmarks-compare__range {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--primary-color);
}
.benchmarks-panel__desc {
    color: var(--secondary-text);
}
.benchmarks-block {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid var(--border-color);
}
.benchmarks-block__title {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.benchmarks-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.benchmarks-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(219, 242, 255, 0.06);
    border: 1px solid rgba(219, 242, 255, 0.12);
    padding: 10px 12px;
    border-radius: 12px;
}
.benchmarks-result__label {
    color: rgba(219, 242, 255, 0.92);
    font-weight: 600;
}
.benchmarks-result__values {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-variant-numeric: tabular-nums;
}
.benchmarks-result__before {
    color: rgba(219, 242, 255, 0.7);
}
.benchmarks-result__after {
    color: var(--primary-color);
    font-weight: 800;
}
.benchmarks-kv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.benchmarks-kv__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(219, 242, 255, 0.06);
    border: 1px solid rgba(219, 242, 255, 0.12);
}
.benchmarks-kv__k {
    color: rgba(219, 242, 255, 0.78);
    font-weight: 600;
}
.benchmarks-kv__v {
    color: var(--text);
    text-align: right;
}
.benchmarks-list {
    margin: 0;
    padding-left: 18px;
    color: var(--secondary-text);
}
.benchmarks-empty {
    background: rgba(219, 242, 255, 0.06);
    border: 1px solid rgba(219, 242, 255, 0.12);
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--secondary-text);
}
@media (max-width: 992px) {
    .benchmarks-panel__grid {
        grid-template-columns: 1fr;
    }
    .benchmarks-game {
        width: 200px;
        min-width: 200px;
    }
}
