/* ================================================================== */
/* ======================== 1. CORE & FONTS ========================= */
/* ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(https://db.onlinewebfonts.com/c/d0e21a989d6dcbb3d227ce1c2f351e05?family=FiveByFive);
@import url('https://fonts.cdnfonts.com/css/ss-headline');

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url('../img/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

body.loaded {
    overflow: auto;
    overflow-x: hidden;
}

h1 {
    font-family: 'SS Headline', sans-serif;
    color: white;
    font-weight: 100;
    font-size: 48px;
    line-height: 60px;
}

h1 img {
    height: 50px;
    transform: translateY(7px);
}

h2 {
    color: #C4C4C4;
    font-size: 16px;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 250px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 50px; /* Miejsce na kropki paginacji */
}

.swiper-pagination-bullet {
    background-color: #fff !important;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    width: 30px !important;
    border-radius: 10px !important;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* Arrows */
.arrows {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.arrows img { width: 30px; }
.arrows img:nth-of-type(1) { animation: arrowsAnim1 2s infinite; }
.arrows img:nth-of-type(2) { animation: arrowsAnim1 2s infinite 0.1s; }
.arrows img:nth-of-type(3) { animation: arrowsAnim1 2s infinite 0.2s; }

@keyframes arrowsAnim1 {
  0%   {transform: translateY(0);}
  50%  {transform: translateY(15px);}
  100% {transform: translateY(0);}
}

/* --- PAGE LOADER --- */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
    width: 8vw;
    max-width: 100px;
    margin-bottom: 2vw;
    animation: loaderPulse 2s infinite ease-in-out;
}

.progress-container {
    width: 20vw;
    min-width: 200px;
    height: 6px;
    background: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8403fc, #6c53ff);
    border-radius: 10px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(141, 54, 255, 0.4);
}

.progress-text {
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.progress-text span {
    color: #fff;
    font-weight: 700;
}

.progress-container-video {
    flex-grow: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-fill {
    height: 100%;
    background-color: #8f49ff;
    width: 0%;
    border-radius: 5px;
    position: relative;
    pointer-events: none;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(143, 73, 255, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

body.loaded #page-loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes loaderPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.mobile-block {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 0;
    height: 100%;
    position: fixed;
    width: 100%;
    margin: 0;

    background-image: url('assets/img/bg.png');
    background-size: cover;
    z-index: 9999999;
    background-color: black;
}

.mobile-block-content {
    width: 600px;
    height: 350px;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* --- COOKIES --- */
.cookie-card {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 9999;
    max-width: 500px;
    padding: 1.5rem;
    background-color: #0f0f0fde;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: inherit;
    backdrop-filter: blur(5px);
    animation: slideIn 0.5s ease-out forwards;
}

.cookie-card .title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-card .description {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4rem;
    color: #b0b0b0;
}

.cookie-card .description a {
    color: #845be5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-card .description a:hover {
    color: #8aaeff;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(155, 91, 229, 0.5);
}

.cookie-card .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1.2rem;
}

.cookie-card .accept {
    font-size: 0.85rem;
    background-color: #ffffff;
    color: #000;
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-card .accept:hover {
    background-color: #805be5;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(91, 134, 229, 0.2);
}

.cookie-card .accept:active { transform: scale(0.95); }

@media (max-width: 600px) {
    .cookie-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }
}

/* Styl dla zablokowanych przycisków - Czarno-białe i nieaktywne */
button:disabled, .btn-default:disabled {
    background-color: #333 !important;
    color: #999 !important;
    cursor: not-allowed;
    border: 1px solid #444 !important;
    box-shadow: none !important;
    transform: none !important;
    filter: grayscale(100%); /* Efekt czarno-biały */
    opacity: 0.7;
    z-index: 999;
}

/* Styl dla zablokowanej zakładki Render */
.editor-content-config-keys-placeholder.locked-render-tab {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
    pointer-events: none;
}

.logout {
    width: 20px;
    margin-left: -40px;
}


/* ================================================================== */
/* =================== POWIADOMIENIA (TOASTS) ======================= */
/* ================================================================== */

#notification-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.notification-toast {
    /* Styl tła zgodny z resztą strony */
    background-color: rgba(15, 15, 20, 0.85);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(143, 73, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Obramowanie i kształt */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    
    /* Wymiary i układ */
    width: 550px; /* Szerszy kafelek */
    max-width: 90vw;
    padding: 25px 30px; /* Większy padding */
    
    display: flex;
    align-items: flex-start;
    gap: 20px;
    
    position: relative;
    overflow: hidden; /* Ważne dla paska postępu na dole */
    pointer-events: all;
    
    /* Animacja wejścia */
    transform: translateX(120%);
    animation: slideInToast 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    
    /* Typografia */
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.notification-toast.hide {
    animation: slideOutToast 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* --- IKONA --- */
.toast-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px; /* Wyrównanie optyczne z tekstem */
}
.toast-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px currentColor); /* Neonowy blask ikony */
}

/* --- TREŚĆ --- */
.toast-content {
    flex-grow: 1;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.toast-content strong {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: -15px;
    font-family: 'SS Headline', sans-serif; /* Opcjonalnie nagłówek w Twoim foncie */
    letter-spacing: 0.5px;
}

.toast-content a {
    color: #a384ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
.toast-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
    text-shadow: 0 0 10px rgba(163, 132, 255, 0.6);
}

/* --- PRZYCISK ZAMKNIĘCIA --- */
.toast-close {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 5px;
    margin-top: -5px;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.toast-close svg {
    width: 18px;
    height: 18px;
}

/* --- PASEK POSTĘPU --- */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Wysokość paska */
    background: rgba(255, 255, 255, 0.05);
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    /* Kolor jest nadawany dynamicznie przez klasy typu, ale tu baza: */
    background-color: currentColor; 
    box-shadow: 0 -2px 10px currentColor; /* Glow nad paskiem */
    transform-origin: left;
}

/* --- WARIANTY KOLORYSTYCZNE --- */

/* SUKCES (Zielony/Fioletowy blend lub czysty neonowy zielony) */
.toast-success {
    border-left: 1px solid rgba(76, 175, 80, 0.3); /* Subtelne zabarwienie lewej krawędzi */
}
.toast-success .toast-icon { color: #00ff88; }
.toast-success .toast-progress-bar { background-color: #00ff88; box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }

/* BŁĄD (Czerwony) */
.toast-error {
    border-left: 1px solid rgba(244, 67, 54, 0.3);
}
.toast-error .toast-icon { color: #ff4d4d; }
.toast-error .toast-progress-bar { background-color: #ff4d4d; box-shadow: 0 0 10px rgba(255, 77, 77, 0.5); }

/* INFO (Twój branding fioletowy) */
.toast-info {
    border-left: 1px solid rgba(143, 73, 255, 0.3);
}
.toast-info .toast-icon { color: #8f49ff; }
.toast-info .toast-progress-bar { background-color: #8f49ff; box-shadow: 0 0 10px rgba(143, 73, 255, 0.5); }

/* --- ANIMACJE --- */
@keyframes slideInToast {
    0% {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOutToast {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
}

/* Responsywność dla mobile */
@media (max-width: 600px) {
    #notification-container {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        align-items: center;
    }
    .notification-toast {
        width: 100%;
        max-width: 100%;
        animation: slideInBottom 0.4s forwards;
    }
    
    @keyframes slideInBottom {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}


/* ================================================================== */
/* ======================= 2. UI COMPONENTS ========================= */
/* ================================================================== */

/* --- BUTTONS --- */
.btn-default {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: #bd84ff;
    --btn-bg-2: #6e32dd;
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 17px;
    cursor: pointer;
    padding: 0 40px;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: 1px solid rgba(255, 255, 255, 0.089);
    border-radius: var(--radii);
    color: var(--btn-bg-color);
}

.btn-default:hover {
    background-position: right top;
    transform: scale(1.02);
}

.btn-default:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
    .btn-default:hover { transition: linear; }
}

.btn-discord {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: #8497ff;
    --btn-bg-2: #3268dd;
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--btn-bg-color);
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: 1px solid rgba(255, 255, 255, 0.089);
    border-radius: var(--radii);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.btn-discord img {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.btn-discord span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateX(-10px);
}

.btn-discord:hover {
    width: 240px;
    background-position: right top;
    justify-content: flex-start;
    padding-left: 32px;
}

.btn-discord:hover span {
    max-width: 150px;
    opacity: 1;
    margin-left: 10px;
    transform: translateX(0);
}

.btn-discord:hover img {
    transform: scale(1.1);
}

.btn-discord:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}

.btn-readonly {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: #A384FF;
    --btn-bg-2: #5D32DD;
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 17px;
    cursor: pointer;
    width: 50%;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: 1px solid rgba(255, 255, 255, 0.089);
    border-radius: var(--radii);
    color: var(--btn-bg-color);
}

.btn-readonly:hover {
    cursor: default;
}

.btn-purple-gradient {
    background: linear-gradient(135deg, #8f49ff 0%, #6a30c5 100%);
    border: none;
    border-radius: 16px;
    padding: 14px 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-purple-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 73, 255, 0.3);
}

.btn-purple-download {
    display: block;
    width: 100%;
    background-color: #8f49ff;
    color: white;
    text-align: center;
    padding: 12px 0;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-purple-download:hover {
    background-color: #7a3ee0;
}

.btn-link-wrapper { width: 100%; text-decoration: none; display: block; z-index: 999; }
.btn-link-wrapper button { width: 100%;  z-index: 999; }

/* --- PROFILE & PILLS --- */
.profile-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    background-color: rgba(129, 88, 242, 0);
    border: 1px solid rgba(255, 255, 255, 0.089);
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    min-width: 180px
}

.profile-pill:hover {
    background-color: rgba(129, 88, 242, 0.2);
    border-color: rgba(121, 88, 242, 0.5);
    transform: scale(1.01);
}

.profile-pill img:nth-of-type(1) {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8158f2ff;
}

.profile-pill img:nth-of-type(2) {
    height: 10px;
    margin-left: 10px;
}

.profile-pill span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.profile-pill button { display: none; }

/* --- SWITCHES & CHECKBOXES --- */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.164);
    background-color: rgba(255, 255, 255, 0.137);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8f49ff;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.cr-wrapper {
    display: table;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 50px;
}

.cr-wrapper *, .cr-wrapper *::before, .cr-wrapper *::after { box-sizing: content-box !important; }

.cr-wrapper input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cr-wrapper span { font-size: 16px; color: #C4C4C4; }

.cr-wrapper input[type="checkbox"] ~ .cr-input,
.cr-wrapper input[type="radio"] ~ .cr-input {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    transform: translateY(-50%);
    transition: background 250ms;
}

.cr-wrapper input[type="checkbox"] ~ .cr-input { border-radius: 12px; }
.cr-wrapper input[type="radio"] ~ .cr-input { border-radius: 20px; }

.cr-wrapper input[type="checkbox"] ~ .cr-input::after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.cr-wrapper input[type="radio"] ~ .cr-input::after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);
}

.cr-wrapper input:checked ~ .cr-input::after { display: block; }
.cr-wrapper input:checked ~ .cr-input {
    background-color: #493CFF;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);
}

.cr-wrapper input:disabled ~ .cr-input,
.cr-wrapper input:disabled ~ span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- INPUTS --- */
.dark-input {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    width: 250px;
    outline: none;
    transition: border-color 0.2s;
}

.dark-input:focus { border-color: rgba(143, 73, 255, 0.5); }
.dark-input::placeholder { color: #666; }

.hidden-file-input { display: none; }
.element-hidden { display: none !important; }


/* ================================================================== */
/* =========================== 3. LAYOUT ============================ */
/* ================================================================== */

/* --- NAVBAR --- */
.nav {
    display: flex;
    z-index: 999;
    position: relative;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 0 0;
    height: 100px;
    z-index: 999;
}

.nav-content-left {
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
    gap: 30px;
}

.nav-content-left img {
    height: 99px;
    animation-name: logoAnim1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.nav-content-left img:hover { cursor: pointer; }

.nav-content-left h1 {
    font-size: 28px;
    height: 45px;
}

.nav-content-left-text {
    display: flex;
    flex-direction: column;
}

.nav-content-left-text a {
    color: #C4C4C4 !important;
    transition: all .2s ease-in-out;
}

.nav-content-left-text a:hover {
    color: white !important;
    transition: all .2s ease-in-out;
}

.nav-content-right {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 50%;
}

.nav-content-right a {
    text-decoration: none;
    color: rgb(209, 209, 209);
    transition: all 0.2s ease;
    width: 100px;
}

.nav-content-right a:hover {
    color: rgb(243, 243, 243);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.nav-content-right button { width: 280px; }

.login-btn {
    animation-name: loginAnim1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* --- COOKIES --- */
.cookie-card {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 9999;
    max-width: 500px;
    padding: 1.5rem;
    background-color: #0f0f0fde;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: inherit;
    backdrop-filter: blur(5px);
    animation: slideIn 0.5s ease-out forwards;
}

.cookie-card .title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-card .description {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4rem;
    color: #b0b0b0;
}

.cookie-card .description a {
    color: #845be5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-card .description a:hover {
    color: #8aaeff;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(155, 91, 229, 0.5);
}

.cookie-card .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1.2rem;
}

.cookie-card .accept {
    font-size: 0.85rem;
    background-color: #ffffff;
    color: #000;
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-card .accept:hover {
    background-color: #805be5;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(91, 134, 229, 0.2);
}

.cookie-card .accept:active { transform: scale(0.95); }

@media (max-width: 600px) {
    .cookie-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }
}

a:hover {
    cursor: pointer;
}


/* ================================================================== */
/* ===================== 4. PAGES: HOME & GENERAL =================== */
/* ================================================================== */

.home {
    display: flex;
    padding: 100px 0;
    z-index: 997;
}

.home-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 0 10px 0;
    width: 100%;

    gap: 100px;
}

.home-content-left {
    width: 600px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-content-left h1 {
    font-size: 70px;
}

.home-content-left h2 {
    display: flex;
    align-items: center;
    gap: 10px;

    color: white;
    opacity: 0.9;

    transition: all .2s ease-out;
}

.home-content-left h2 img {
    height: 20px;
}

.home-content-left-buttons {
    display: flex;
    gap: 20px;
}

.home-content-left-buttons a:nth-of-type(1) {
    width: 300px;
}

.home-content-right {
    width: 700px;
    height: 260px;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.home-content-right:hover {
    cursor: pointer;
}

.home-content-right h1 {
    font-size: 30px;
}

.home-content-right img {
    width: 200px;
}

.home-content-right a {
    margin-top: 20px;
}

.home-content-right-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-content-right span {
    background-color: hsla(230, 100%, 65%, 0.151);
    border-radius: 35px;
    border: 1px solid #493CFF;
    color: #B1BBFF;
    padding: 1px 20px;
    font-size: 13px;
    font-weight: 400;
}

.background {
    position: absolute;
    width: 100%;
    z-index: -1;

    margin-top: -300px;
    filter: blur(10px);
}

.history_link:hover {
    cursor: pointer;
    opacity: 1;
}

/* ================================================================== */
/* ============================= TRUST ============================== */
/* ================================================================== */

.trust {
    display: flex;
    padding: 50px 0;
    z-index: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    padding: 100px 0 50px 0;
    width: 100%;

    gap: 30px;
}

.trust-content-creators {
    width: 100%;
    height: 100px;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px 25px;

    overflow: hidden;
}

.trust-content-creators img {
    width: 60px;
    border-radius: 19px;
    border: 1px solid rgba(255, 255, 255, 0.301);
    transition: all .2s ease-in-out;
}

.trust-content-creators img:hover {
    transform: scale(1.03);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.trust-content-servers {
    width: 100%;
    height: 100px;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px 25px;

    overflow: hidden;
}

/* ================================================================== */
/* ============================= PROJECTS =========================== */
/* ================================================================== */

.projects {
    display: flex;
    padding: 50px 0 100px;
    z-index: 0;
}

.projects-content {
    display: flex;
    flex-direction: column;
    padding: 100px 0 50px 0;
    width: 100%;

    gap: 30px;
}

.projects-headline {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
}

.projects-container {
    margin-top: 30px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.projects-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.projects-card button {
    width: 400px;
    margin-top: 20px;
}

.projects-card-premium {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    padding: 35px 25px 35px 10px;
}

.projects-container .projects-card:nth-of-type(even) .projects-card-premium {
    flex-direction: row-reverse;
}

.projects-card-premium img {
    width: 100%;
    transform: scale(1.2);
}

.projects-card-premium-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 55px;
}

.projects-card-premium-text h3 {
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
}

.projects-card-premium-text h5 {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
    color: #ebebeb;
}

.projects-card-premium-text p {
    overflow: auto;
    min-height: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #CDCDCD;

}

.projects-card-premium-text p::-webkit-scrollbar {
    width: 4px;
}
  
.projects-card-premium-text p::-webkit-scrollbar-track {
    background: #111111;
}

.projects-card-premium-text p::-webkit-scrollbar-thumb {
    background: #ffffff;
}

.projects-card-standards {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;

    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.projects-card-standard {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;

    transition: 0.3s;
}

.projects-card-standard:hover {
    cursor: pointer;
}

.img-wrapper {
    height: 200px;
    width: 330px;
    
    overflow: hidden; 
    
    border-radius: 35px;
    border: 1px solid rgb(255, 255, 255, 0.34);
    
    transition: 0.3s ease;
    
    transform: translateZ(0); 
}

.img-wrapper2 {
    width: 850px;
    height: 300px;
    overflow: hidden;
    border-radius: 17px;
    border: 1px solid rgb(255, 255, 255, 0.34);
    transition: 0.3s ease;
    transform: translateZ(0);
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.projects-card-standard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-card-standard:hover p {
    color: #FFFFFF;
}

.projects-card-standard:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.projects-card-standard:hover .img-wrapper {
    border-color: rgb(255, 255, 255, 0.8);
}

.projects-card-standard:hover svg {
    transform: translateX(-0.2vw);
}

.projects-card-standard-text {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-card-standard-text p {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;

    transition: 0.3s;
}

.projects-card-standard-text svg {
    width: 0.4vw;
    height: auto;

    transition: 0.3s;
}

.projects-showmore {
    width: 100%;
    height: auto;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-showmore button, a {
    width: 300px !important;
}

/* ================================================================== */
/* ============================= FOOTER ============================= */
/* ================================================================== */

.footer {
    display: flex;
    padding: 50px 0 100px;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 50px 0 0;

    gap: 30px;
}

.footer-content-up {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-content-up img {
    width: 28px;
    height: 28px;
    transition: all .2s ease-in-out;
}

.footer-content-up img:hover {
    transform: scale(1.02);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.footer-content-up img:nth-of-type(1) {
    width: 94px;
    height: 74px;
}

.footer-content-up span {
    width: 100%;
    height: 1px;
    background: #3A3A3A;
}

.footer-content-down {
    display: flex;
    justify-content: space-between;
}

.footer-content-down-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.footer-content-down-left p {
    color: #B7B7B7;
    font-size: 14px;
    font-weight: 400;
}

.footer-content-down-right {
    display: flex;
    justify-content: flex-end;
    gap: 100px;
    width: 50%;
}

.footer-content-down-right-menu {
    display: flex;
    flex-direction: column;
}

.footer-content-down-right-menu h1 {
    color: white;
    font-size: 24px;
    font-weight: 500;
}

.footer-content-down-right-menu ul {
    list-style: none;
}

.footer-content-down-right-menu li {
    margin-top: 10px;
}

.footer-content-down-right-menu a {
    color: #B7B7B7;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.footer-content-down-right-menu a:hover {
    color: #dddddd;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

/* ================================================================== */
/* ============================= CONTACT ============================ */
/* ================================================================== */

.contact {
    display: flex;
    padding: 50px 0;
    z-index: 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 10px 0;
    width: 100%;

    gap: 100px;
}

.contact-content iframe {
    width: 600px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.171);
}

.contact-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.contact-content-left-power {
    display: flex;
    gap: 20px;
    height: 60px;
    margin-top: 40px;
}

.contact-content-left-power img { 
    height: 100%;
}

.contact-content-left-power-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.contact-content-left-power-text h2 {
    color: white;
    font-weight: 500;
    font-size: 17px;
}

.contact-content-left-power-text h3 {
    color: #C4C4C4;
    font-weight: 400;
    font-size: 16px;
}




/* ================================================================== */
/* ============================ PARTNERS ============================ */
/* ================================================================== */

.partners {
    display: flex;
    padding: 50px 0;
    z-index: 0;
}

.partners-content {
    display: flex;
    flex-direction: column;
    padding: 100px 0 10px 0;
    width: 100%;

    gap: 20px;
}

.partners-content-tiles {
    width: 100%;
    display: flex;
    gap: 60px;
}

.partners-content-tiles-tile {
    width: 750px;
    padding: 40px;
    gap: 20px;

    display: flex;
    flex-direction: column;

    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) -20%, rgba(211, 164, 255, 0.1) 100%);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.089);

    margin-top: 20px;

    transition: all 0.2s ease-in-out;
}

.partners-content-tiles-tile img {
    width: 30%;
}

.partners-content-tiles-tile button, a {
    width: 250px !important;
}

.partners-content-tiles-tile-up {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-content-tiles-tile-center {
    display: flex;
    align-items: center;
    gap: 7px;
}

.partners-content-tiles-tile-center span {
    background-color: rgba(77, 106, 255, 0.151);
    border-radius: 35px;
    border: 1px solid #493CFF;
    color: #B1BBFF;
    padding: 1px 20px;
    font-size: 13px;
    font-weight: 400;
}

.partners-content-tiles-tile-desc {
    color: #C4C4C4;
    font-size: 16px;
    font-weight: 400;
}