@font-face {
    font-family: Figtree-local;
    src: url(/fonts/Figtree-VariableFont_wght.ttf);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #b45aa058, transparent 60%),
    radial-gradient(circle at 70% 20%, #8c46c04d, transparent 60%),
    radial-gradient(circle at 40% 70%, #c878be4d, transparent 60%),
    radial-gradient(circle at 80% 80%, #a03ca052, transparent 60%),
    radial-gradient(circle at 0% 100%, #c878aa40, transparent 70%),
    #121832;
  background-attachment: fixed;
  background-size: cover;
}

body {
    min-height: 100vh;
    user-select: none;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fdf5ff;
    display: flex;
    flex-direction: column;
}

body, * {
    cursor: url("../images/mouse.svg"), pointer;
}

@media (min-width: 901px) {
    .lang-selector-div {
        display: none !important;
    }

    .lang-popup {
        display: none !important;
    }

    .legal-links-mobile-btn {
        display: none !important;
    }

    .legal-links-popup {
        display: none !important;
    }

    body::after {
        display: none !important;
    }
}

select.lang-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    margin: 25px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 28px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #ffffff;
    font-size: 15px;
    font-family: "Figtree-local", sans-serif;
    font-weight: 600;

    backdrop-filter: blur(6px);
    cursor: pointer;

    transition: background 0.15s ease,
                transform 0.15s ease,
                opacity 0.15s ease;

    padding-right: 40px;
    background-position: right 16px center;
    background-repeat: no-repeat;
}

select.lang-selector:hover {
    background-color: rgba(0, 0, 0, 0.30);
    transform: translateY(-2px);
}

select.lang-selector {
    background-image: url("/images/dropdown.svg");
}

select.lang-selector-desktop {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 50;
}

@media (max-width: 900px) {
    select.lang-selector-desktop {
        display: none !important;
    }
}

.lang-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    transition: transform .25s ease;
    pointer-events: none;
}

.lang-selector:focus + .lang-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.topbar {
    width: 100%;
    display: flex;
    justify-content: center;    
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.navbar-glass {
    width: 60%;
    max-width: 1150px;
    padding: 20px 26px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);     
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin-top: 5px;
}

.brand-logo {
    width: 100px;
    height: 100px;

    position: absolute;
    left: 26px;     
    top: 50%;
    transform: translateY(-50%);

    pointer-events: none; 
}

.nav-links {
    display: flex;
    gap: 34px;
    font-family: "Figtree-local", sans-serif;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #f4deff;
    opacity: 0.85;
    font-size: 15px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-icon {
    width: 24px;
    height: 24px;
    transition: transform .25s ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-toggle {
    display: none;
}


.social-bar {
    position: absolute;
    bottom: 25px;         
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 4px 10px; 
    z-index: 20;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;                
    padding: 10px 18px;   
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #ffffff;
    font-size: 13px;        
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;

    backdrop-filter: blur(6px);
}

.social-chip:hover {
    background: rgba(0, 0, 0, 0.30);
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;          
    height: 18px;
}

.language-selector {
    padding: 8px 16px;
    border-radius: 999px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);

    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.imprint-modal {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(246,205,255,0.18), transparent 55%),
                rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    z-index: 999;
}

.hidden {
    display: none !important;
}

.imprint-box {
    width: 680px;
    max-width: 100%;
    max-height: 80vh;
    overflow-y: auto;

    background: rgba(8, 8, 15, 0.95);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(20px);

    padding: 28px 30px 24px;
    border-radius: 24px;
    color: #ffffff;
    font-family: "Figtree-local", sans-serif;
    box-shadow: 0 20px 60px rgba(0,0,0,0.75);

    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}

.imprint-box::-webkit-scrollbar {
    width: 6px;
}
.imprint-box::-webkit-scrollbar-track {
    background: transparent;
}
.imprint-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 999px;
}

.imprint-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
    color: #F6CDFF;
}

.imprint-box > p:first-of-type {
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.imprint-box h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 6px;
    color: #f4deff;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
}

.imprint-box p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 6px;
}

.imprint-box ul {
    margin: 4px 0 8px 18px;
    padding: 0;
}

.imprint-box li {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 4px;
}

.imprint-close {
    margin-top: 20px;
    padding: 10px 22px;
    border-radius: 999px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);

    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.imprint-close:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
    .imprint-modal {
        padding: 12px;
    }

    .imprint-box {
        width: 100%;
        max-height: 85vh;
        padding: 22px 18px 18px;
        border-radius: 18px;
    }

    .imprint-box h2 {
        font-size: 20px;
    }

    .imprint-box h3 {
        font-size: 15px;
    }

    .imprint-box p,
    .imprint-box li {
        font-size: 13px;
        line-height: 1.6;
    }

    .imprint-close {
        width: 100%;
        justify-content: center;
    }
}

.legal-links {
    position: absolute;
    bottom: 14px;             
    right: 20px;              
    display: flex;
    gap: 16px;

    z-index: 50;          
}

.legal-links a {
    font-family: "Figtree-local", sans-serif;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.65;

    text-decoration: none;
    padding: 6px 12px;

    border-radius: 999px;
    background: rgba(0,0,0,0.20);             
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);

    transition: opacity .2s ease, transform .2s ease;
}

.legal-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.legal-links.hidden-mobile {
    display: none;
}

.legal-links-mobile-btn {
    position: fixed;
    bottom: 12px;
    left: calc(50% + 8px);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(212, 125, 249, 0.18);
    border: 1px solid rgba(212, 125, 249, 0.35);
    backdrop-filter: blur(8px);
    cursor: pointer;
    z-index: 65;
    font-size: 16px;
    font-weight: 700;
    color: rgba(212, 125, 249, 0.85);
    transition: all 0.2s ease;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px rgba(212, 125, 249, 0.1);
    background: url("/images/info.svg") no-repeat center;
    background-size: 18px, 18px;
}

.legal-links-mobile-btn:hover {
    background: rgba(212, 125, 249, 0.25);
    border-color: rgba(212, 125, 249, 0.5);
    color: rgba(212, 125, 249, 1);
    box-shadow: 0 0 16px rgba(212, 125, 249, 0.2);
    transform: translateY(-2px);
}

.legal-links-popup {
    display: none;
    position: fixed;
    bottom: 56px;
    left: calc(50% + 8px);
    transform: translateX(-50%);
    background: rgba(8, 8, 15, 0.94);
    border: 1px solid rgba(212, 125, 249, 0.25);
    border-radius: 12px;
    padding: 10px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 64;
    min-width: 150px;
}

.legal-links-popup.open {
    display: block;
}

.legal-links-popup a {
    display: block;
    padding: 9px 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
    border-radius: 6px;
    margin: 2px 6px;
    transition: all 0.15s ease;
}

.legal-links-popup a:hover {
    opacity: 1;
    background: rgba(212, 125, 249, 0.12);
}

body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 24, 50, 0.6) 100%);
    z-index: 60;
    pointer-events: none;
    display: none;
}

.lang-trigger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 6, 15, 0.85);
    backdrop-filter: blur(10px);

    background-image: url("/images/dropdown.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;

    cursor: pointer;
    padding: 0;
}

.lang-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 10, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 600;
}

.lang-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lang-overlay-inner {
    width: 86%;
    max-width: 380px;
    padding: 20px 18px 18px;
    border-radius: 18px;

    background: rgba(8, 8, 15, 0.97);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.75);

    font-family: "Figtree-local", sans-serif;
    text-align: left;
    color: #ffffff;
}

.lang-overlay-inner h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #F4DEFF;
}

.lang-overlay-inner p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 14px;
}

.lang-overlay-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.lang-overlay-option {
    width: 100%;
    padding: 9px 14px;
    border-radius: 12px;

    background: rgba(20, 20, 32, 0.9);
    border: 1px solid rgba(255,255,255,0.08);

    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;

    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.lang-overlay-option:hover {
    background: rgba(30, 30, 45, 0.95);
    border-color: rgba(255,255,255,0.16);
}

.lang-overlay-close {
    width: 100%;
    padding: 8px 14px;
    border-radius: 999px;

    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);

    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity .15s ease, background .15s ease;
}

.lang-overlay-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.04);
}

.load-blur {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(28px);
    opacity: 1;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 2s ease, backdrop-filter 2s ease;
}

.load-blur.fade-out {
    opacity: 0;
    backdrop-filter: blur(0px);
}

.seo-intro {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.001;
    height: 0;
    overflow: hidden;
}

.seo-keywords {
    font-size: 12px;
    opacity: 0.03;
    text-align: center;
    height: 0;      
    margin: 0;       
    padding: 0;
    overflow: hidden;    
    pointer-events: none;
}

/* ===========================
   Mobile Layout
   =========================== */
@media (max-width: 900px) {

    .navbar-glass {
        width: 92%;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;    
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .legal-links {
        display: none !important;
    }

    .legal-links-mobile-btn {
        display: flex !important;
    }

    .lang-selector-div {
        position: fixed;
        bottom: 12px;
        left: calc(50% - 44px);
        z-index: 65;
        margin: 0;
    }

    .lang-selector-btn {
        width: 32px;
        height: 32px;
        padding: 0;
        margin: 0;
        border-radius: 999px;
        background: rgba(125, 165, 249, 0.18);
        border: 1px solid rgba(125, 165, 249, 0.35);
        backdrop-filter: blur(8px);
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 0 12px rgba(125, 165, 249, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        background: url("/images/lang.svg") no-repeat center;
        background-size: 18px, 18px;
    }

    .lang-selector-btn:hover {
        background: rgba(125, 165, 249, 0.25);
        border-color: rgba(125, 165, 249, 0.5);
        box-shadow: 0 0 16px rgba(125, 165, 249, 0.2);
        transform: translateY(-2px);
    }

    select.lang-selector {
        display: none !important;
    }

    .lang-trigger {
        display: none !important;
    }

    .lang-popup {
        display: none;
        position: fixed;
        bottom: 56px;
        left: calc(50% - 44px);
        background: rgba(8, 8, 15, 0.94);
        border: 1px solid rgba(125, 165, 249, 0.25);
        border-radius: 12px;
        padding: 8px 0;
        backdrop-filter: blur(12px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        z-index: 64;
        min-width: 140px;
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.95);
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .lang-popup.open {
        display: block;
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        pointer-events: auto;
    }

    .lang-popup-option {
        display: block;
        width: 100%;
        padding: 9px 14px;
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        opacity: 0.8;
        border-radius: 6px;
        margin: 2px 6px;
        background: rgba(125, 165, 249, 0.05);
        border: 1px solid rgba(125, 165, 249, 0.15);
        cursor: pointer;
        transition: all 0.15s ease;
    }

    .lang-popup-option:hover {
        opacity: 1;
        background: rgba(125, 165, 249, 0.12);
        border-color: rgba(125, 165, 249, 0.3);
        transform: translateX(3px);
    }
}

@media (max-width: 480px) {
    .lang-selector-div {
        bottom: 6px;
        left: calc(50% - 40px);
        position: fixed;
    }

    .lang-selector-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .legal-links-mobile-btn {
        bottom: 6px;
        left: calc(50% + 6px);
        width: 30px;
        height: 30px;
        font-size: 13px;
        right: auto;
        position: fixed;
    }

    .legal-links-popup {
        bottom: 42px;
        left: calc(50% + 6px);
        transform: translateX(-50%);
        min-width: 130px;
        padding: 8px 0;
    }

    .legal-links-popup a {
        padding: 8px 12px;
        font-size: 11px;
        margin: 2px 5px;
    }

    .lang-popup {
        bottom: 42px;
        left: calc(50% - 40px);
        min-width: 130px;
        padding: 8px 0;
    }

    .lang-popup-option {
        padding: 8px 12px;
        font-size: 11px;
        margin: 2px 5px;
    }
}

.scroll-shadow {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(184, 90, 160, 0.3), rgba(140, 70, 192, 0.3));
    box-shadow: 0 -10px 30px rgba(200, 120, 190, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.scroll-shadow.visible {
    opacity: 1;
}