﻿@import url('variables.css'); @import url('navigation-bar.css'); @import url('cards.css'); @import url('collection-query-controls.css'); @layer reset,base,components,utilities,properties; @layer reset{*, *::after, *::before { margin: 0; padding: 0; box-sizing: border-box; }}@layer base{body, html {
        font-family: "Inter", sans-serif;
        color: white;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
        background-image: linear-gradient(-45deg, #005a87 0%, #002940 100%);
        background-attachment: fixed;
        user-select: none;
    }

    img {
        user-drag: none;
        -webkit-user-drag: none;
    }

    main {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .wrapper {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 0px;
    }

    mobile-nav {
        display: flex;
        align-items: center;
        height: 50px;
        padding: 0 16px;
        position: relative;
    }

        mobile-nav::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--card-border), var(--accent-color), var(--card-border), transparent);
            pointer-events: none;
        }

    a {
        color: white;
        align-content: center;
    }

    input {
        width: 100%;
        background: var(--card-bg);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
        padding: 12px 15px;
        outline: none;
        transition: all 0.2s ease;
    }

        input:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(167, 243, 193, 0.5);
            box-shadow: 0 0 0 3px rgba(167, 243, 193, 0.2);
        }

        input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active {
            -webkit-background-clip: text;
            -webkit-text-fill-color: white;
            transition: background-color 5000s ease-in-out 0s;
        }

        input[type=password] {
            padding-right: 40px;
        }

        input[type="search"]::-webkit-search-decoration,
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-results-button,
        input[type="search"]::-webkit-search-results-decoration {
            -webkit-appearance: none;
        }

    button {
        border: 0;
        border-radius: var(--border-radius);
        cursor: pointer;
    }

    dialog.enhanced-dialog {
        padding: 0;
        border: none;
        width: 100vw;
        height: 100vh;
        max-width: none;
        max-height: none;
        inset: 0;
        margin: 0;
        background: transparent;
    }

        dialog.enhanced-dialog[open] {
            display: block;
        }

        dialog.enhanced-dialog::backdrop {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background-color: rgba(15, 23, 42, 0.8);
        }

    select {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
        padding: 12px 15px;
        appearance: none;
        cursor: pointer;
        outline: none;
        transition: all 0.2s ease;
        min-height: 44px;
    }

        select:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(167, 243, 193, 0.5);
            box-shadow: 0 0 0 3px rgba(167, 243, 193, 0.2);
        }

        select option {
            background-color: #004a6e;
            color: white;
            padding: 12px 15px;
            cursor: pointer;
        }

    body.SwWide {
        .wrapper {
            padding: 20px 40px;
        }

        mobile-nav {
            padding: 0 24px;
        }

        dialog.enhanced-dialog[open] {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        select {
            font-size: 0.95rem;
            padding: 8px 15px;
            min-height: auto;
        }
    }

    .input-wrapper {
        position: relative;
    }

    .input-form {
        display: grid;
        gap: 10px;
        margin-bottom: 10px;
    }

    .title {
        display: grid;
        place-items: center;
    }
}@layer components{.btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--card-bg);
        color: var(--text-color);
        border: 1px solid var(--card-border);
        border-radius: var(--border-radius);
        padding: 10px 20px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.45px;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        height: auto;
        user-select: none;
        transition: all 0.2s ease;
    }

        .btn:hover {
            background-color: var(--card-hover-bg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-color);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

    .btn-primary {
        color: #81b0ff;
        background: rgba(49, 130, 206, 0.15);
        border-color: rgba(49, 130, 206, 0.4);
    }

        .btn-primary:hover {
            background: rgba(49, 130, 206, 0.25);
            border-color: rgba(49, 130, 206, 0.6);
        }

        .btn-primary:active {
            background: rgba(49, 130, 206, 0.3);
        }

        .btn:disabled,
        .btn-primary:disabled {
            opacity: 0.65;
            pointer-events: none;
            transform: translateY(0);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            cursor: not-allowed;
            filter: saturate(0.8);
        }

    .btn-loading {
        color: transparent !important;
        position: relative;
        pointer-events: none;
    }

        .btn-loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 18px;
            height: 18px;
            margin: -9px 0 0 -9px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-top-color: white;
            animation: spin 0.8s infinite linear;
        }

    .btn:not(.btn-primary).btn-loading::before {
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-top-color: #3182ce;
    }

    .btn-secondary {
        color: white;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
        border-color: var(--accent-hover);
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #5b8af8, var(--accent-color));
            border-color: var(--accent-color);
        }

        .btn-secondary:active {
            background: linear-gradient(135deg, var(--accent-hover), #2d4da6);
        }

    .btn-success {
        color: white;
        background: linear-gradient(135deg, #38a169 0%, #276749 100%);
        border: 1px solid rgba(39, 103, 73, 0.4);
    }

        .btn-success:hover {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        }

        .btn-success:active {
            background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
        }

    .btn-danger {
        color: white;
        background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        border: 1px solid rgba(197, 48, 48, 0.4);
    }

        .btn-danger:hover {
            background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
        }

        .btn-danger:active {
            background: linear-gradient(135deg, #c53030 0%, #9b2c2c 100%);
        }

    .btn-back {
        width: 18px;
        height: 18px;
        mask-image: url('../../hypnos/icons/arrow-left.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        border: none;
    }

    .btn-plus {
        mask-image: url('../../hypnos/icons/plus.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background: var(--text-color);
    }

        .btn-plus:hover {
            background: rgba(255, 255, 255, 0.70);
        }

    .btn-minus {
        mask-image: url('../../hypnos/icons/minus.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background: var(--text-color);
    }

        .btn-minus:hover {
            background: rgba(255, 255, 255, 0.70);
        }

    .toggle-password-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        mask-image: url('../../hypnos/icons/eye.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .toggle-password-btn:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        .toggle-password-btn.visible {
            mask-image: url('../../hypnos/icons/eye-slash.svg');
        }

    .randomize-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        mask-image: url('../../hypnos/icons/dice.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .randomize-btn:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

    .load-more-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        padding-top: 10px;
    }

    .load-more-btn {
        width: auto;
        min-width: 180px;
        margin: 0;
        margin-top: 20px;
        padding: 15px;
    }

        .load-more-btn.hidden {
            display: none;
        }

    .social-btn {
        width: 30px;
        height: 30px;
        mask-size: 30px 30px;
        mask-repeat: no-repeat;
        background-color: white;
    }

        .social-btn:hover {
            transition: all .35s;
            transition-timing-function: cubic-bezier( 0.310, -0.105, 0.430, 1.590 );
        }

    .x-twitter {
        position: relative;
        mask-image: url('../../hypnos/icons/square-x-twitter.svg');
    }

        .x-twitter:hover {
            transform: scale(1.1);
        }

    .facebook {
        mask-image: url('../../hypnos/icons/square-facebook.svg');
    }

        .facebook:hover {
            transform: scale(1.1);
        }

    .whatsapp {
        mask-image: url('../../hypnos/icons/square-whatsapp.svg');
    }

        .whatsapp:hover {
            transform: scale(1.1);
        }

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

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

    
    .enhanced-dialog-surface {
        padding: 0;
        width: auto;
        height: 100%;
        max-height: none;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        border: none;
        border-radius: 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
        color: white;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

        .enhanced-dialog-surface .dialog-body {
            overflow: auto;
            padding: 24px;
            flex: 1 1 auto;
        }

        .enhanced-dialog-surface::-webkit-scrollbar {
            width: 6px;
        }

        .enhanced-dialog-surface::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 10px;
        }

        .enhanced-dialog-surface::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

    .dialog-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

        .dialog-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
        }

    .dialog-body.loading {
        position: relative;
        min-height: 200px;
        pointer-events: none;
    }

        .dialog-body.loading::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 10;
            border-radius: 8px;
        }

        .dialog-body.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            margin: -20px 0 0 -20px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            border-top-color: #0077be;
            animation: spin 0.8s ease-in-out infinite;
            z-index: 11;
        }

    .dialog-footer {
        padding: 12px 24px;
        background: rgba(0, 0, 0, 0.2);
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .dialog-description {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .first-step,
    .second-step {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .close-dialog-btn {
        width: 22px;
        height: 22px;
        mask-size: 22px 22px;
        mask-image: url('../../hypnos/icons/xmark.svg');
        mask-repeat: no-repeat;
        background-color: white;
        border-radius: 0;
        margin-left: auto;
    }

    
    .avatar-upload {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .avatar-dropzone {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 24px;
        min-height: 180px;
        background: var(--card-bg);
        border: 2px dotted rgba(255, 255, 255, 0.35);
        border-radius: 12px;
        cursor: pointer;
        text-align: center;
        transition: var(--transition);
    }

        .avatar-dropzone:hover {
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.06);
        }

        .avatar-dropzone.Dragging {
            opacity: 0.6;
        }

            .avatar-dropzone.Dragging::before {
                content: 'Drop Here';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--card-hover-bg);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                border-radius: 12px;
                font-size: 1.5rem;
                font-weight: 600;
                color: white;
                text-transform: uppercase;
                letter-spacing: 2px;
                z-index: 5;
                animation: dropHereOverlay 0.3s ease-out;
            }

    @keyframes dropHereOverlay {
        from {
            opacity: 0;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .avatar-dropzone.Selecting {
        border-color: var(--accent-color);
        animation: dropzonePulse 1.5s ease-in-out infinite;
    }

    @keyframes dropzonePulse {
        0%, 100% {
            transform: scale(1);
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0 rgba(78, 125, 247, 0.4);
        }

        50% {
            transform: scale(1.01);
            border-color: #6c8cff;
            box-shadow: 0 0 0 8px rgba(78, 125, 247, 0);
        }
    }


    .avatar-dropzone-icon {
        width: 56px;
        height: 56px;
        background-color: rgba(255, 255, 255, 0.6);
        mask-image: url('../hypnos/icons/image-user.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
    }

    .avatar-dropzone p {
        color: var(--secondary-text);
        font-size: 0.95rem;
    }

    .avatar-preview {
        display: none;
        border-radius: 12px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        padding: 8px;
    }

    .avatar-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    
    .card {
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 20px 25px;
        transition: var(--transition);
        border: 1px solid var(--card-border);
        box-shadow: var(--card-shadow);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

        .card .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .card .title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-color);
            transition: var(--transition);
        }

        .card:hover .card .title {
            color: white;
        }

        .card .points {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-color), #6c8cff);
            color: white;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(78, 125, 247, 0.3);
            transition: var(--transition);
        }

        .card:hover .card .points {
            box-shadow: 0 6px 15px rgba(78, 125, 247, 0.5);
            transform: scale(1.05);
        }

        .card .description {
            color: var(--secondary-text);
            font-size: 1rem;
            line-height: 1.6;
            transition: var(--transition);
        }

        .card:hover .card .description {
            color: var(--text-color);
        }

    .tag {
        display: inline-block;
        background-color: var(--tag-bg-color);
        color: var(--tag-color);
        padding: 6px 12px;
        border-radius: 8px;
        border: var(--tag-border);
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.4;
        text-wrap: balance;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
        animation: tagFadeIn 0.3s ease-out;
    }

        .tag.visible {
            opacity: 1;
        }

        .tag:hover {
            box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
        }

    .tag-with-icon {
        position: relative;
        padding-left: 32px;
    }

        .tag-with-icon::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            mask-image: var(--tag-icon);
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;
            background-color: var(--tag-color);
        }

    @keyframes tagFadeIn {
        from {
            opacity: 0;
            transform: translateY(5px);
        }

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

    .tag-red {
        --tag-bg-color: rgba(220, 38, 38, 0.12);
        --tag-color: #dc2626;
        --tag-border: 1px solid rgba(220, 38, 38, 0.25);
    }

    
    .not-found {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 10px;
        transition: all 1s;
        overflow-x: hidden;
    }

    .not-found-info {
        display: flex;
        flex-direction: column;
        width: 400px;
        animation: none;
    }

    @keyframes not-found-slide-in {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0%);
        }
    }

    .not-found-info a {
        cursor: pointer;
        margin-block: 15px;
    }

    .back-btn-row {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-top: 10px;
        border-top: 1px solid var(--text-color);
        border-bottom: 1px solid var(--text-color);
    }

    .arrow-right-btn {
        width: 15px;
        height: 15px;
        mask-image: url('../../hypnos/icons/arrow-right.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background-color: var(--text-color);
    }

    
    .site-footer {
        position: relative;
        z-index: 10;
        padding: 40px 0 20px;
        background: rgba(0, 30, 47, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section.brand {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(90deg, #4e7df7, #6c8cff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        margin-bottom: 10px;
    }

    .footer-tagline {
        color: var(--secondary-text);
        line-height: 1.6;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .footer-links-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .footer-links span {
            color: white;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            position: relative;
        }

            .footer-links span::after {
                content: "";
                position: absolute;
                background: white;
                clip-path: polygon(50% 75%, 0% 25%, 100% 25%);
                right: 0;
                margin-left: 10px;
                width: 10px;
                height: 10px;
                transition: transform 0.3s ease;
            }

            .footer-links span[data-expanded="true"]::after {
                transform: rotate(180deg);
            }

        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
            display: none;
            cursor: pointer;
        }

            .footer-links a.slide-in-link {
                display: block;
                animation: slideInLink 0.3s ease forwards;
            }

            .footer-links a.slide-out-link {
                animation: slideOutLink 0.3s ease forwards;
            }

            .footer-links a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                width: 0;
                height: 1px;
                background-color: var(--accent-color);
                transform: translateY(-50%);
                opacity: 0;
                transition: width 0.3s ease, opacity 0.3s ease;
            }

            .footer-links a:hover {
                color: white;
                padding-left: 12px;
            }

                .footer-links a:hover::before {
                    width: 6px;
                    opacity: 1;
                }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright {
        text-align: center;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        align-content: center;
    }

    .footer-legal-links {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

        .footer-legal-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .footer-legal-links a:hover {
                color: white;
            }

    
    .page-freeze-overlay {
        cursor: wait;
        pointer-events: all;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9998;
        background: transparent;
    }

    .page-transition-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

        .page-transition-loader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 30, 47, 0.65);
            z-index: -1;
        }

        .page-transition-loader.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            animation: loaderFadeIn 0.3s forwards;
        }

    .loader-content {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
        border-radius: 16px;
        padding: 30px 40px;
        max-width: 85%;
        width: 320px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .page-transition-loader.visible .loader-content {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.1s;
    }

    .loader-spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        border-top-color: #0077be;
        animation: loadSpinner 1s ease-in-out infinite;
        margin-bottom: 16px;
    }

    .loader-text {
        font-weight: 500;
        color: white;
        font-size: 1rem;
        letter-spacing: 0.5px;
        text-align: center;
        margin: 0;
    }

    .no-image {
        mask-image: url('../hypnos/icons/image-slash.svg');
        mask-repeat: no-repeat;
        mask-size: 28px 28px;
        background: white;
        width: 28px;
        height: 28px;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        position: relative;
    }

    .logo-link {
        background: linear-gradient(90deg, var(--accent-color), #6c8cff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        text-decoration: none;
        padding: 5px 0;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    
    .detail-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding: 24px 16px;
        position: relative;
    }

        .detail-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--card-border), var(--accent-color), var(--card-border), transparent);
        }

    .detail-info {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .detail-meta {
        flex-direction: column;
        padding: 0;
    }

    .detail-meta, .detail-desc {
        display: flex;
        gap: 20px;
    }

        .detail-meta > .meta-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            color: var(--secondary-text);
        }

    .meta-info > span {
        font-weight: 500;
    }

    .meta-info > .meta-chat-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        background-color: var(--accent-color);
    }

    .meta-chat-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        mask-image: url('../../hypnos/icons/messages.svg');
    }

    .meta-chat-text:hover {
        cursor: pointer;
        text-decoration: underline;
    }

    
    SysWeaver-ServerBlock {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 9999;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: all 0.3s ease;
        pointer-events: auto;
        user-select: none;
    }

    SysWeaver-ServerImage {
        display: none;
    }

    SysWeaver-ServerTitle {
        margin-top: 2em;
        font-size: clamp(1.35rem, 3vw, 3rem);
        font-weight: bold;
        color: var(--text-color);
    }

    SysWeaver-ServerText {
        margin-top: 1em;
        font-size: clamp(0.75rem, 2vw, 1.5rem);
        color: var(--text-color);
    }

    SysWeaver-ServerWaiting {
        display: none;
    }

    SysWeaver-ServerTime {
        margin-top: 1em;
        font-weight: bold;
        color: var(--text-color);
        font-size: clamp(1rem, 2vw, 2rem);
    }

    @keyframes loadSpinner {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes loaderFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    body.SwWide {
        .social-btn {
            width: 36px;
            height: 36px;
            mask-size: 36px 36px;
        }

        .enhanced-dialog-surface {
            width: min(90%, 480px);
            height: auto;
            max-height: 85vh;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
        }

        .not-found {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .not-found-info {
            animation: not-found-slide-in 1s linear forwards;
        }

        .site-footer {
            padding: 50px 0 20px;
        }

        .footer-container {
            padding: 0 30px;
        }

        .footer-content {
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .footer-links-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .footer-links span::after {
            display: none;
        }

        .footer-links a {
            display: block;
        }

            .footer-links a.slide-in-link,
            .footer-links a.slide-out-link {
                animation: none;
            }

        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            text-align: left;
        }

        .footer-legal-links {
            justify-content: flex-end;
        }

        .detail-header-content {
            flex: 1;
        }

        .detail-info {
            flex-direction: row;
            justify-content: space-between;
        }

        .detail-meta {
            padding: 20px 0 0 0;
            flex-direction: row;
        }

            .detail-meta > .meta-star {
                margin-left: auto;
            }
    }
}@layer utilities{.show {
        display: block;
    }

    .mb-10 {
        margin-bottom: 10px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .mb-30 {
        margin-bottom: 30px;
    }

    .g-10 {
        gap: 10px;
    }

    .g-20 {
        gap: 20px;
    }

    .g-30 {
        gap: 30px;
    }

    .w-100 {
        width: 100%;
    }

    .underline {
        text-decoration: underline;
    }

    .font-smaller {
        font-size: smaller;
    }

    .pointer {
        cursor: pointer;
    }

    .default-cursor {
        cursor: default !important;
    }

    .row {
        display: flex;
        flex-direction: row;
    }

    .space-between {
        justify-content: space-between;
    }

    .space-around {
        justify-content: space-around;
    }

    .flex-end {
        justify-content: flex-end;
    }

    .align-text-center {
        align-content: center;
    }

    .align-text-right {
        text-align: right;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    .hidden {
        display: none !important;
    }

    .no-overflow {
        overflow: hidden;
    }
}@layer properties{@property --angle {
        syntax: "<angle>";
        initial-value: 0deg;
        inherits: false;
    }
}