@font-face {
    font-family: 'SofiaSansExtraCondensed';
    src: url('media/fonts/SofiaSansExtraCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('media/fonts/google_icons_font.woff2') format('woff2');
    font-display: block;
}

.material-icons {
    font-family: 'Material Icons', serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

.container {
    position: relative;
    height: 100svh;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/backgrounds/back.jpg') no-repeat center center fixed;
    background-size: 107% 107%;
    background-position: var(--bg-pos-x, 50%) var(--bg-pos-y, 50%);
    opacity: 0;
    z-index: 1;
    animation: fadeInBackground 1.5s ease-out forwards;
}
body.loaded::before {
    opacity: 1;
}
@keyframes fadeInBackground {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




/* Anicode */
.code-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.code-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0) 50%,
            transparent 100%
    );
    z-index: 2;
}
.code-layer {
    position: absolute;
    width: fit-content;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    white-space: pre;
    pointer-events: none;
    text-align: left;
}
.code-layer-1 {
    font-size: 1.2vmin;
    color: rgba(255, 255, 255, 0.18);
    filter: blur(3px);
    animation: scrollCode 1000s linear infinite;
    left: 30%;
    transform: translateX(-50%);
}
.code-layer-2 {
    font-size: 1.2vmin;
    color: rgba(65, 197, 68, 0.18);
    filter: blur(2px);
    animation: scrollCode 800s linear infinite reverse;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
}
.code-layer-3 {
    font-size: 1.0vmin;
    color: rgba(255, 255, 255, 0.12);
    filter: blur(2px);
    animation: scrollCode 500s linear infinite;
    top: -25%;
    left: 80%;
    transform: translateX(-50%);
}
@keyframes scrollCode {
    0% {
        transform: translate(-50%, 100vh);
    }
    100% {
        transform: translate(-50%, -100%);
    }
}
@media (max-width: 768px) {
    .code-layer-1 {
        font-size: 1.2vmin;
        width: 90%;
    }
    .code-layer-2 {
        font-size: 1.2vmin;
        width: 90%;
    }
    .code-layer-3 {
        font-size: 1.0vmin;
        width: 90%;
    }
    @keyframes scrollCode {
        0% {
            transform: translate(-50%, 150vh);
        }
        100% {
            transform: translate(-50%, -150%);
        }
    }
}
@media (min-height: 1200px) {
    .code-layer-1 {
        font-size: 1.2vmin;
    }
    .code-layer-2 {
        font-size: 1.2vmin;
    }
    .code-layer-3 {
        font-size: 1.0vmin;
    }
}





/* Main anims */
@keyframes slideFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromLeftLogo {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromLeftSlogan {
    from {
        transform: translateX(-100%);
        left: -100vw;
        opacity: 0;
    }
    to {
        transform: translateX(0);
        left: 20vmin;
        opacity: 1;
    }
}

@keyframes trustedKeyOverlayFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes trustedKeyOverlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes trustedKeyModalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 3vmin));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes trustedKeyModalDisappear {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 2vmin));
    }
}




/* LOGO */
.logo {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20vmin;
    height: 20vmin;
    object-fit: contain;
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
    border-top-right-radius: 10% 10%;
    animation: slideFromLeftLogo 1s ease-out 0.3s both;
    z-index: 3;

    mask:
            linear-gradient(0deg, black 90%, transparent 100%),
            linear-gradient(30deg, black 70%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 90%, rgb(0 0 0 / 0), 100%),
            linear-gradient(30deg, black 70%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}





/* SLOGAN */
.slogan {
    position: absolute;
    left: 20vmin;
    height: 10vmin;
    bottom: -1vmin;
    right: 15dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #081421;
    padding: 2vmin;
    border-top-right-radius: 20% 100%;
    cursor: pointer;
    touch-action: manipulation;
    z-index: 3;
    animation: slideFromLeftSlogan 1s ease-out 0.5s both;

    mask:
            linear-gradient(0deg, black 80%, transparent 100%),
            linear-gradient(15deg, black 80%, transparent 90%),
            linear-gradient(90deg, black 90%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 80%, rgb(0 0 0 / 0), 100%),
            linear-gradient(45deg, black 80%, rgb(0 0 0 / 0), 90%),
            linear-gradient(90deg, black 90%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.slogan-text {
    font-size: 3vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.1vmin;
    margin-right: 12dvw;
    margin-top: 2vmin;

    background: linear-gradient(to right, #c9ffeb, #74a9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* TRUSTED PERSONS */
.trusted-persons {
    position: absolute;
    left: calc((100dvw - 15dvw) / 2);
    bottom: 10vmin;
    height: 5vmin;
    min-width: 46vmin;
    max-width: calc(100dvw - 18vmin);
    display: flex;
    text-align: center;
    background: #081421;
    padding: 2vmin 4vmin;
    cursor: pointer;
    touch-action: manipulation;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 12vmin));
    transition:
            transform 0.7s ease-in-out,
            opacity 0.4s ease-in-out,
            visibility 0.4s ease-in-out;
    z-index: 2;

    mask:
            linear-gradient(0deg, black 85%, transparent 100%),
            linear-gradient(90deg, black 85%, transparent 100%),
            linear-gradient(180deg, black 85%, transparent 100%),
            linear-gradient(270deg, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(90deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 85%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.trusted-persons.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    z-index: 4;
}
.trusted-persons-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.trusted-persons-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.55vmin;

    background: linear-gradient(to left, #c9ffeb, #74a9d3, #c9ffeb, #74a9d3);
    background-size: 200% 100%;
    background-position: 0% 0%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
}
.trusted-persons:hover .trusted-persons-text {
    animation: bowlingTextFlow 1s ease-in-out infinite alternate;
}

.trusted-key-overlay {
    position: fixed;
    inset: 0;
    z-index: 12;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4vmin;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.trusted-key-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    animation: trustedKeyOverlayFade 0.24s ease-out both;
}

.trusted-key-overlay-backdrop.closing {
    animation: trustedKeyOverlayFadeOut 0.24s ease-in both;
}

.trusted-key-overlay-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

.trusted-key-modal,
.trusted-secret-modal {
    pointer-events: auto;
}

.trusted-key-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(72vmin, calc(100dvw - 8vmin));
    max-width: 92vw;
    background: #050c17;
    box-shadow: 0 1.8vmin 4vmin rgba(0, 0, 0, 0.42);
    animation: trustedKeyModalAppear 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;

    mask:
            linear-gradient(0deg, black 96%, transparent 100%),
            linear-gradient(90deg, black 96%, transparent 100%),
            linear-gradient(180deg, black 96%, transparent 100%),
            linear-gradient(270deg, black 96%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 96%, rgb(0 0 0 / 0), 100%),
            linear-gradient(90deg, black 96%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 96%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 96%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.trusted-key-modal.closing {
    animation: trustedKeyModalDisappear 0.24s ease-in both;
}

.trusted-key-modal-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8vmin;
    padding: 4vmin 4.5vmin 4.2vmin;
}

.trusted-key-title {
    width: 100%;
    font-size: 3.4vmin;
    font-weight: bold;
    line-height: 1.1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.35vmin;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to left, #c9ffeb, #74a9d3, #c9ffeb);
    background-size: 180% 100%;
    background-position: 0% 0%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.trusted-key-subtitle {
    width: 100%;
    font-size: 1.8vmin;
    line-height: 1.2;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.38vmin;
    color: rgba(201, 255, 235, 0.76);
    text-transform: uppercase;
    text-align: center;
}

.trusted-key-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 255, 235, 0.4) 18%,
            rgba(116, 169, 211, 0.95) 50%,
            rgba(201, 255, 235, 0.4) 82%,
            transparent 100%
    );
    box-shadow:
            0 0 10px rgba(116, 169, 211, 0.28),
            0 0 18px rgba(201, 255, 235, 0.14);
}

.trusted-key-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.6vmin;
}

.trusted-key-input {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(116, 169, 211, 0.28);
    background: rgba(3, 10, 18, 0.72);
    color: #dcfff2;
    padding: 1.7vmin 2vmin;
    font-size: 2.5vmin;
    line-height: 1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.34vmin;
    text-align: center;
    outline: none;
    transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            background 0.25s ease;
}

.trusted-key-input::placeholder {
    color: rgba(145, 190, 220, 0.62);
    text-align: center;
}

.trusted-key-input:focus {
    border-color: rgba(201, 255, 235, 0.72);
    background: rgba(5, 14, 24, 0.9);
    box-shadow:
            0 0 0 0.25vmin rgba(116, 169, 211, 0.12),
            0 0 2.4vmin rgba(116, 169, 211, 0.22);
}

.trusted-key-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 22vmin;
    padding: 1.2vmin 3.4vmin;
    border: 1px solid rgba(201, 255, 235, 0.2);
    background: linear-gradient(90deg, rgba(12, 28, 43, 0.96), rgba(25, 58, 84, 0.96));
    color: #e8fff5;
    font-size: 2.2vmin;
    font-weight: bold;
    line-height: 1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.42vmin;
    text-transform: uppercase;
    cursor: pointer;
    transition:
            border-color 0.25s ease,
            background 0.25s ease,
            box-shadow 0.25s ease;
}

.trusted-key-submit:hover {
    border-color: rgba(201, 255, 235, 0.42);
    background: linear-gradient(90deg, rgba(18, 40, 60, 0.98), rgba(41, 92, 130, 0.98));
    box-shadow: 0 0 2.4vmin rgba(116, 169, 211, 0.18);
}

.trusted-key-submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.trusted-key-status {
    width: 100%;
    margin: 0;
    font-size: 1.8vmin;
    line-height: 1.35;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.16vmin;
    text-align: center;
}

.trusted-key-status-info {
    color: rgba(213, 242, 255, 0.82);
}

.trusted-key-status-error {
    color: #ffd8d8;
}

.trusted-key-blocked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8vmin;
    width: 100%;
}

.trusted-key-blocked-image {
    width: min(34vmin, 100%);
    max-width: 320px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    image-rendering: auto;
}

.trusted-key-blocked-text {
    margin: 0;
    max-width: 42vmin;
    font-size: 2.1vmin;
    line-height: 1.2;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.22vmin;
    text-align: center;
    color: #fff0d9;
}

.trusted-secret-modal {
    position: relative;
    width: min(124vmin, calc(100dvw - 8vmin));
    margin: 3vmin 0 5vmin;
    background:
        linear-gradient(180deg, rgba(7, 16, 31, 1) 0%, rgba(4, 10, 20, 1) 100%);
    box-shadow: 0 2vmin 4.8vmin rgba(0, 0, 0, 0.42);
    z-index: 13;

    mask:
            linear-gradient(0deg, black 98.2%, transparent 100%),
            linear-gradient(90deg, black 98.2%, transparent 100%),
            linear-gradient(180deg, black 98.2%, transparent 100%),
            linear-gradient(270deg, black 98.2%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 98.2%, rgb(0 0 0 / 0), 100%),
            linear-gradient(90deg, black 98.2%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 98.2%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 98.2%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.trusted-secret-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 2.6vmin;
    padding: 4vmin;
}

.trusted-secret-hero {
    display: flex;
    flex-direction: column;
    gap: 1vmin;
}

.trusted-secret-title {
    font-size: 3vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.5vmin;
    text-align: center;
    background: linear-gradient(to left, #c9ffeb, #74a9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trusted-secret-subtitle {
    font-size: 2vmin;
    line-height: 1.2;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.12vmin;
    text-align: center;
    color: rgba(201, 255, 235, 0.78);
}

.trusted-secret-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 255, 235, 0.38) 18%,
            rgba(116, 169, 211, 0.95) 50%,
            rgba(201, 255, 235, 0.38) 82%,
            transparent 100%
    );
    box-shadow:
            0 0 10px rgba(116, 169, 211, 0.28),
            0 0 18px rgba(201, 255, 235, 0.14);
}

.trusted-secret-tabs {
    display: flex;
    align-items: flex-end;
    gap: 0.6vmin;
    padding: 0;
    position: relative;
}

.trusted-secret-tab {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-height: 6.4vmin;
    padding: 1.3vmin 1.8vmin 1.2vmin;
    border: 1px solid rgba(116, 169, 211, 0.2);
    border-bottom-color: rgba(116, 169, 211, 0.18);
    border-radius: 1.4vmin 1.4vmin 0 0;
    background: linear-gradient(180deg, rgba(11, 25, 40, 0.84), rgba(7, 17, 30, 0.92));
    color: rgba(228, 244, 255, 0.7);
    font-size: 1.9vmin;
    line-height: 1.15;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.1vmin;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin: 0;
    z-index: 1;
    transition:
        border-color 0.18s ease,
        color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.trusted-secret-tab:hover,
.trusted-secret-tab:focus-visible {
    border-color: rgba(201, 255, 235, 0.34);
    color: #f4fcff;
    transform: translateY(-0.12vmin);
}

.trusted-secret-tab-active {
    transform: none;
    margin-bottom: -1px;
    padding-bottom: 1.35vmin;
    border-color: rgba(116, 169, 211, 0.26);
    border-bottom-color: rgba(8, 19, 34, 0.98);
    background: linear-gradient(180deg, rgba(14, 37, 60, 0.98), rgba(8, 19, 34, 0.98));
    color: #ffffff;
    z-index: 2;
    box-shadow:
        0 -0.3vmin 0 rgba(116, 169, 211, 0.12) inset;
}

.trusted-secret-tab-active::after {
    content: none;
}

.trusted-secret-panel {
    display: flex;
    flex-direction: column;
    gap: 2vmin;
    padding: 2.8vmin;
    background: linear-gradient(180deg, rgba(6, 15, 28, 0.92), rgba(8, 19, 34, 0.78));
    border: 1px solid rgba(116, 169, 211, 0.18);
    margin-top: 0;
    position: relative;
}

.trusted-secret-section {
    display: flex;
    flex-direction: column;
    gap: 1.5vmin;
}

.trusted-secret-section-centered {
    align-items: center;
}

.trusted-secret-copy {
    margin: 0;
    font-size: 2.2vmin;
    line-height: 1.32;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.08vmin;
    text-align: center;
    color: #eef9ff;
}

.trusted-secret-copy-left {
    text-align: left;
}

.trusted-secret-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 5.4vmin;
    border: 1px solid rgba(201, 255, 235, 0.28);
    background: linear-gradient(90deg, rgba(14, 38, 58, 0.98), rgba(39, 98, 141, 0.96));
    color: #e8fff5;
    padding: 0.9vmin 2.4vmin;
    font-size: 2.1vmin;
    line-height: 1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.16vmin;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
    will-change: transform;
}

.trusted-secret-download-button:hover:enabled,
.trusted-secret-download-button:focus-visible:enabled {
    transform: scale(1.05);
    border-color: rgba(201, 255, 235, 0.46);
    box-shadow: 0 1.6vmin 2.8vmin rgba(6, 22, 36, 0.36);
}

.trusted-secret-download-button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.trusted-secret-link {
    align-self: center;
    max-width: 100%;
    font-size: 2vmin;
    line-height: 1.2;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: #8cd5ff;
    text-decoration: underline;
    text-underline-offset: 0.22vmin;
    text-align: center;
    word-break: break-all;
    transition: color 0.18s ease;
}

.trusted-secret-link:hover,
.trusted-secret-link:focus-visible {
    color: #d6f2ff;
}

.trusted-secret-conf-card {
    display: flex;
    flex-direction: column;
    gap: 0.9vmin;
    padding: 1.6vmin 1.8vmin;
    background: rgba(7, 17, 30, 0.84);
    border: 1px solid rgba(116, 169, 211, 0.22);
}

.trusted-secret-conf-label {
    font-size: 1.55vmin;
    line-height: 1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.28vmin;
    text-transform: uppercase;
    color: rgba(201, 255, 235, 0.62);
}

.trusted-secret-conf-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9vmin;
    align-items: stretch;
}

.trusted-secret-conf-value {
    display: block;
    min-height: 5.4vmin;
    padding: 1.1vmin 1.4vmin;
    background: rgba(1, 6, 13, 0.7);
    border: 1px solid rgba(116, 169, 211, 0.16);
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 1.65vmin;
    line-height: 1.34;
    color: #f0fbff;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.trusted-secret-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5vmin;
    min-width: 5vmin;
    padding: 0;
    border: 1px solid rgba(116, 169, 211, 0.22);
    background: rgba(10, 25, 40, 0.88);
    cursor: pointer;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.trusted-secret-copy-button:hover,
.trusted-secret-copy-button:focus-visible {
    transform: translateY(-0.12vmin);
    border-color: rgba(201, 255, 235, 0.34);
    background: rgba(13, 34, 55, 0.96);
}

.trusted-secret-copy-button-manual {
    width: 5vmin;
    min-width: 5vmin;
    min-height: 4.4vmin;
}

.trusted-secret-copy-icon {
    width: auto;
    height: auto;
    display: inline-block;
    flex-shrink: 0;
    font-size: 2.5vmin;
    color: #dcefff;
}

.trusted-secret-copy-icon-success {
    color: #67d77d;
}

.trusted-secret-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8vmin;
}

.trusted-secret-image-card {
    display: flex;
    flex-direction: column;
    gap: 1vmin;
    padding: 1.7vmin;
    background: rgba(7, 17, 30, 0.84);
    border: 1px solid rgba(116, 169, 211, 0.18);
}

.trusted-secret-image-step {
    font-size: 1.45vmin;
    line-height: 1;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.18vmin;
    text-transform: uppercase;
    color: rgba(201, 255, 235, 0.72);
}

.trusted-secret-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.32);
}

.trusted-secret-manual-list {
    display: flex;
    flex-direction: column;
    gap: 0.9vmin;
}

.trusted-secret-manual-row {
    display: grid;
    grid-template-columns: 18vmin minmax(0, 1fr) auto;
    align-items: center;
    gap: 1vmin;
    padding: 1.1vmin 1.4vmin;
    background: rgba(7, 17, 30, 0.84);
    border: 1px solid rgba(116, 169, 211, 0.18);
}

.trusted-secret-manual-row-static {
    grid-template-columns: 18vmin minmax(0, 1fr);
}

.trusted-secret-manual-name {
    font-size: 1.5vmin;
    line-height: 1.15;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.2vmin;
    text-transform: uppercase;
    color: rgba(201, 255, 235, 0.62);
}

.trusted-secret-manual-text {
    display: flex;
    align-items: center;
    min-height: 3.2vmin;
    padding: 0.75vmin 1vmin;
    background: rgba(1, 6, 13, 0.7);
    border: 1px solid rgba(116, 169, 211, 0.16);
    word-break: break-all;
    font-size: 1.55vmin;
    line-height: 1.25;
    color: #f0fbff;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.trusted-secret-manual-text-hint {
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.08vmin;
}

@media (max-width: 768px) {
    .trusted-key-overlay {
        padding: 5vmin;
    }

    .trusted-key-modal {
        width: calc(100dvw - 10vmin);
    }

    .trusted-key-modal-inner {
        gap: 2.8vmin;
        padding: 6vmin 5.5vmin 5.8vmin;
    }

    .trusted-key-title {
        font-size: 6vmin;
        letter-spacing: 0.48vmin;
    }

    .trusted-key-subtitle {
        font-size: 3.4vmin;
        letter-spacing: 0.42vmin;
    }

    .trusted-key-input {
        max-width: min(100%, 18ch);
        padding: 2.8vmin 3vmin;
        font-size: 4.8vmin;
        letter-spacing: 0.44vmin;
    }

    .trusted-key-submit {
        width: 100%;
        min-width: 0;
        padding: 2.4vmin 3vmin;
        font-size: 4.2vmin;
        letter-spacing: 0.5vmin;
    }

    .trusted-key-status {
        font-size: 3.8vmin;
        letter-spacing: 0.12vmin;
    }

    .trusted-key-blocked {
        gap: 4vmin;
    }

    .trusted-key-blocked-image {
        width: min(64vmin, 100%);
    }

    .trusted-key-blocked-text {
        max-width: none;
        font-size: 4.8vmin;
        letter-spacing: 0.12vmin;
    }

    .trusted-secret-modal {
        width: calc(100dvw - 10vmin);
        margin: 5vmin 0 6vmin;
    }

    .trusted-secret-modal-inner {
        gap: 4.4vmin;
        padding: 5.4vmin;
    }

    .trusted-secret-title {
        font-size: 3vmin;
        letter-spacing: 0.5vmin;
    }

    .trusted-secret-subtitle {
        font-size: 3.8vmin;
        letter-spacing: 0.08vmin;
    }

    .trusted-secret-tabs {
        align-items: stretch;
        gap: 1.2vmin;
        padding: 0;
        overflow: visible;
    }

    .trusted-secret-tab {
        flex: 1 1 0;
        width: 100%;
        min-width: 0;
        min-height: 12.6vmin;
        padding: 2.6vmin 2.4vmin 2.3vmin;
        border-radius: 3.2vmin 3.2vmin 0 0;
        font-size: 3.9vmin;
        line-height: 1.12;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
        text-wrap: balance;
    }

    .trusted-secret-tab-active {
        margin-bottom: -1px;
        padding-bottom: 2.6vmin;
    }

    .trusted-secret-panel {
        gap: 3.6vmin;
        padding: 4vmin 3.6vmin;
    }

    .trusted-secret-section {
        gap: 2.8vmin;
    }

    .trusted-secret-copy {
        font-size: 4.4vmin;
    }

    .trusted-secret-download-button {
        width: 100%;
        min-height: 12.8vmin;
        font-size: 4.4vmin;
        padding: 2.6vmin 3vmin;
    }

    .trusted-secret-link {
        font-size: 3.7vmin;
    }

    .trusted-secret-conf-card,
    .trusted-secret-image-card {
        gap: 2.2vmin;
        padding: 2.8vmin;
    }

    .trusted-secret-conf-label,
    .trusted-secret-manual-name,
    .trusted-secret-image-step {
        font-size: 3vmin;
        letter-spacing: 0.18vmin;
    }

    .trusted-secret-conf-row {
        grid-template-columns: 1fr;
    }

    .trusted-secret-conf-value,
    .trusted-secret-manual-text {
        min-height: 9.8vmin;
        padding: 2.1vmin 2.3vmin;
        font-size: 3.2vmin;
    }

    .trusted-secret-copy-button-manual {
        width: 100%;
        min-width: 0;
        min-height: 9.8vmin;
    }

    .trusted-secret-manual-list {
        gap: 1.8vmin;
    }

    .trusted-secret-manual-row {
        grid-template-columns: 1fr;
        gap: 1.6vmin;
        padding: 2.6vmin;
    }

    .trusted-secret-copy-button {
        width: 100%;
        min-width: 0;
        min-height: 9.8vmin;
    }

    .trusted-secret-copy-icon {
        font-size: 6vmin;
    }

    .trusted-secret-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .trusted-secret-tab {
        padding: 2.4vmin 1.8vmin 2.2vmin;
        font-size: clamp(3.2vmin, 3.5vw, 3.8vmin);
        letter-spacing: 0.06vmin;
    }
}






/* SOLUTIONS */
.solutions {
    position: absolute;
    left: 0;
    height: 50vmin;
    top: 0;
    width: 5vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #081421;
    padding: 2vmin;
    border-bottom-right-radius: 20% 100%;
    z-index: 3;
    cursor: pointer;
    touch-action: manipulation;
    animation: slideFromTop 1s ease-out 0.9s both;

    mask:
            linear-gradient(90deg, black 80%, transparent 100%),
            linear-gradient(150deg, black 70%, transparent 100%),
            linear-gradient(180deg, black 90%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(90deg, black 80%, rgb(0 0 0 / 0), 100%),
            linear-gradient(150deg, black 70%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 90%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.solutions-text {
    font-size: 3vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: -0.5vmin;
    margin-right: 1vmin;
    margin-bottom: 10vmin;

    background: linear-gradient(to bottom, #c9ffeb, #74a9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}






/* CONTACTS */
.contacts {
    position: absolute;
    right: 0;
    height: 5vmin;
    top: 0;
    width: 60vmin;
    cursor: pointer;
    display: flex;
    text-align: center;
    background: #081421;
    padding: 2vmin;
    border-bottom-left-radius: 20% 100%;
    z-index: 3;
    transition: all 0.7s ease-in-out;
    animation: slideFromRight 1s ease-out 0.7s both;

    mask:
            linear-gradient(180deg, black 80%, transparent 100%),
            linear-gradient(210deg, black 70%, transparent 100%),
            linear-gradient(270deg, black 90%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(180deg, black 80%, rgb(0 0 0 / 0), 100%),
            linear-gradient(210deg, black 70%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 90%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.contacts:hover,
.contacts.active {
    height: 13vmin;
    transition: all 0.7s ease-in-out;
}
.contacts-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #081421;
    align-items: center;
    text-align: center;
    margin-left: 6vmin;
    transition: all 0.7s ease-in-out;

    mask:
            linear-gradient(180deg, black 80%, transparent 100%),
            linear-gradient(210deg, black 70%, transparent 100%),
            linear-gradient(270deg, black 90%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(180deg, black 80%, rgb(0 0 0 / 0), 100%),
            linear-gradient(210deg, black 70%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 90%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.contacts-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.5vmin;
    background: linear-gradient(to left, #c9ffeb, #74a9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    transition: all 0.7s ease-in-out;
    margin-bottom: 1.5vmin;
}
.contacts-separator {
    height: 1px;
    width: 30vmin;
    background: linear-gradient(90deg,
    transparent 0%,
    #f6f6e6 20%,
    #ececab 50%,
    #f6f6e6 80%,
    transparent 100%);
    box-shadow: 0 0 8px #ffff00, 0 0 12px rgba(255, 255, 255, 0.5);
    transform: scaleX(0);
    transition: all 0.7s ease 0.1s;
    margin-bottom: 1.5vmin;
    opacity: 0;
}
.contacts:hover .contacts-separator,
.contacts.active .contacts-separator {
    opacity: 100;
    transform: scaleX(1);
    transition: all 0.7s ease-in-out;
    margin-bottom: 1.5vmin;
}
.contacts-email {
    flex: 1;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2.5vmin;
    font-weight: bold;
    font-family: 'SofiaSansExtraCondensed', serif;
    background: linear-gradient(0deg, #6ab6f6, #c0f8e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateY(10px);
    transition: all 0.7s ease 0.2s;
    letter-spacing: 0.5vmin;
    margin-bottom: 1.5vmin;
    opacity: 0;
}
.contacts:hover .contacts-email,
.contacts.active .contacts-email {
    opacity: 100;
    font-size: 2.5vmin;
    transform: translateY(0);
    transition: all 0.7s ease-in-out;
    margin-bottom: 1.5vmin;
}
.contacts-email:hover {
    background: linear-gradient(0deg,#bfffea, whitesmoke);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 10px rgba(168, 255, 120, 0.3);
}






/* RUST*/
.rust {
    position: absolute;
    right: 0;
    height: 50vmin;
    bottom: 0;
    width: 3vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #081421;
    padding: 2vmin;
    border-top-left-radius: 20% 100%;
    z-index: 3;
    animation: slideFromBottom 1s ease-out 0.5s both;

    mask:
            linear-gradient(270deg, black 70%, transparent 100%),
            linear-gradient(330deg, black 85%, transparent 100%),
            linear-gradient(0deg, black 95%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(270deg, black 70%, rgb(0 0 0 / 0), 100%),
            linear-gradient(330deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(0deg, black 95%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.rust-text-container {
    font-size: 2vmin;
    letter-spacing: -0.5vmin;
    margin-top: 7vmin;
    cursor: default;
}
.rust-text {
    margin-left: 1.7vmin;
    font-family: 'SofiaSansExtraCondensed', serif;
    background: linear-gradient(to bottom, #c9ffeb, #74a9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    writing-mode: vertical-lr;
    text-orientation: upright;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.rust-symbol {
    width: 3vmin;
    height: 3vmin;
    margin-top: 3vmin;
    margin-left: 1.4vmin;
    background-image: url('media/svg/crab.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}





/* Bowling */
.bowling {
    position: absolute;
    left: 5vmin;
    top: 10vmin;
    height: 5vmin;
    min-width: 56vmin;
    cursor: pointer;
    display: flex;
    text-align: center;
    background: #081421;
    padding: 2vmin 3vmin;
    transform: translateX(calc(-100% - 12vmin));
    transition: all 0.7s ease-in-out;
    z-index: 3;

    mask:
            linear-gradient(0deg, black 85%, transparent 100%),
            linear-gradient(90deg, black 85%, transparent 100%),
            linear-gradient(180deg, black 85%, transparent 100%),
            linear-gradient(270deg, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(90deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 85%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 85%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.bowling.active {
    left: 5vmin;
    transform: translateX(0);
    transition: all 0.7s ease-in-out;
}
.bowling-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*background: #081421;*//*do not set this. its do bright backround*/
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 0;
    transition: all 0.1s ease-in-out;
}
@keyframes bowlingTextFlow {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}
.bowling-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vmin;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'SofiaSansExtraCondensed', serif;
    letter-spacing: 0.5vmin;

    background: linear-gradient(to right, #c9ffeb, #74a9d3, #c9ffeb, #74a9d3);
    background-size: 200% 100%;
    background-position: 0% 0%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.bowling:not(.expanded):hover .bowling-text {
    animation: bowlingTextFlow 1s ease-in-out infinite alternate;
}
.bowling.expanded {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 10;
    background: #050c17;

    /* Применяем переменные или запасные варианты */
    width: var(--target-width, 85vw);
    height: var(--target-height, auto);


    /* Ограничения для безопасности */
    max-width: 95vw;
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3vmin;
}
.bowling.expanded {
    mask:
            linear-gradient(0deg, black 97%, transparent 100%),
            linear-gradient(90deg, black 97%, transparent 100%),
            linear-gradient(180deg, black 97%, transparent 100%),
            linear-gradient(270deg, black 97%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask:
            linear-gradient(0deg, black 97%, rgb(0 0 0 / 0), 100%),
            linear-gradient(90deg, black 97%, rgb(0 0 0 / 0), 100%),
            linear-gradient(180deg, black 97%, rgb(0 0 0 / 0), 100%),
            linear-gradient(270deg, black 97%, rgb(0 0 0 / 0), 100%);
    -webkit-mask-composite: source-in;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}
.bowling.expanded .bowling-inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1vmin;
}
.bowling.expanded .bowling-text {
    margin: 0;
    flex: 0 0 auto;
    font-size: 2.5vmin;
    text-align: center;
    width: 100%;
    min-height: 4vmin;

    background: linear-gradient(to right, #c9ffeb, #74a9d3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bowling-separator {
    height: 1px;
    width: 50%;
    background: linear-gradient(90deg,
    transparent 0%,
    #f6f6e6 20%,
    #ececab 50%,
    #f6f6e6 80%,
    transparent 100%);
    box-shadow: 0 0 8px #ffff00, 0 0 12px rgba(255, 255, 255, 0.5);
    transform: scaleX(1);
    flex: 0 0 auto;
    margin: 1vmin 0;
}
.bowling-description {
    flex: 0 0 auto;
    color: white;
    font-size: 1vmax;
    font-family: 'SofiaSansExtraCondensed', serif;
    text-align: center;
    padding: 1vmin 0;
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.7s ease-in-out;

    background: linear-gradient(to bottom, #fff8db, #83ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.bowling.expanded .bowling-description {
    opacity: 1;
    transform: translateY(0);
}
.bowling-image-container {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 0;
    max-height: 70vh;
}
.bowling.expanded .bowling-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
@keyframes expandBowling {
    0% {
        width: 50vmin;
        height: 5vmin;
        top: 10vmin;
        left: 5vmin;
        transform: translate(0, 0);
    }
    50% {
        width: 50vmin;
        height: 5vmin;
        top: 10vmin;
        left: 50%;
        transform: translate(-50%, 0);
    }
    100% {
        position: fixed;
        width: var(--target-width, auto);
        height: var(--target-height, auto);
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
        max-width: 85vw;
        max-height: 75vh;
    }
}
@keyframes fadeOutBowling {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
.bowling.animating-expand {
    position: fixed;
    width: var(--target-width, auto);
    height: var(--target-height, auto);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    max-width: 85vw;
    max-height: 75vh;
    animation: expandBowling 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.bowling.animating-close {
    animation: fadeOutBowling 0.3s ease forwards;
}
.bowling:not(.expanded) .bowling-image,
.bowling:not(.expanded) .bowling-separator,
.bowling:not(.expanded) .bowling-image-container,
.bowling:not(.expanded) .bowling-description {
    display: none;
}
.bowling:not(.expanded):not(.animating-expand):not(.animating-close) {
    transition: all 0.5s ease-in-out;
}
@supports (-moz-appearance:none) {
    @keyframes expandBowling {
        0% {
            width: 50vmin;
            height: 5vmin;
            top: 10vmin;
            left: 5vmin;
            transform: translate(0, 0);
        }
        100% {
            position: fixed;
            width: var(--target-width, auto);
            height: var(--target-height, auto);
            top: 40%;
            left: 50%;
            transform: translate(-50%, -40%);
            max-width: 85vw;
            max-height: 75vh;
        }
    }
    .bowling.expanded .bowling-inner {
        min-height: 0;
    }
    .bowling.expanded .bowling-image-container {
        min-height: 0;
        display: flex;
    }
    .bowling.animating-expand {
        animation: expandBowling 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
}
.bowling-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    display: none;
}
.bowling.expanded .bowling-link-overlay {
    display: block;
}
.bowling.expanded {
    cursor: pointer;
}
.bowling.expanded .bowling-inner,
.bowling.expanded .bowling-text,
.bowling.expanded .bowling-separator,
.bowling.expanded .bowling-description,
.bowling.expanded .bowling-image-container,
.bowling.expanded .bowling-image {
    cursor: pointer;
}

/* gray scrolling */
.thin-gray-scrolling {
    --thin-gray-scroll-size: 8px;
    --thin-gray-scroll-track: #f3f4f6;
    --thin-gray-scroll-thumb: #d1d5db;
    --thin-gray-scroll-thumb-hover: #9ca3af;
    scrollbar-width: thin;
    scrollbar-color: var(--thin-gray-scroll-thumb) var(--thin-gray-scroll-track);
}
.trusted-key-overlay.thin-gray-scrolling,
.trusted-secret-modal.thin-gray-scrolling {
    --thin-gray-scroll-track: rgba(64, 64, 64, 0.92);
    --thin-gray-scroll-thumb: rgba(115, 115, 115, 0.96);
    --thin-gray-scroll-thumb-hover: rgba(163, 163, 163, 0.98);
}
.thin-gray-scrolling::-webkit-scrollbar {
    width: var(--thin-gray-scroll-size);
    height: var(--thin-gray-scroll-size);
}
.thin-gray-scrolling::-webkit-scrollbar-corner {
    background: var(--thin-gray-scroll-track);
}
.thin-gray-scrolling::-webkit-scrollbar-track {
    border-radius: 9999px;
    background: var(--thin-gray-scroll-track);
}
.thin-gray-scrolling::-webkit-scrollbar-thumb {
    min-height: 24px;
    border-radius: 9999px;
    border: 2px solid var(--thin-gray-scroll-track);
    background: var(--thin-gray-scroll-thumb);
    background-clip: padding-box;
}
.thin-gray-scrolling::-webkit-scrollbar-thumb:hover {
    background: var(--thin-gray-scroll-thumb-hover);
}
