html {
        height: 100%;
        margin: 0;
        background: #1a1a1a;
        overflow-y: overlay;
        overflow-y: auto;
    }
    :root {
       --site-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
       --blur-bg: rgba(255, 255, 255, 0.1);
       --blur-fg: rgba(255, 255, 255, 0.5);
       --reveal-bg: rgba(255, 255, 255, 0.05);
    }
    body {
        min-height: 100%;
        margin: 0;
        font-family: var(--site-font);
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
        background: transparent;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    html.loading-cursor,
    html.loading-cursor *,
    body.loading-cursor,
    body.loading-cursor *,
    body.navigating,
    body.navigating * {
        cursor: progress !important;
    }
    html.loading-cursor :is(a[href], button, [role="button"], label, summary, select, input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"]):not(:disabled):not(.is-disabled),
    body.loading-cursor :is(a[href], button, [role="button"], label, summary, select, input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"]):not(:disabled):not(.is-disabled),
    body.navigating :is(a[href], button, [role="button"], label, summary, select, input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"]):not(:disabled):not(.is-disabled) {
        cursor: pointer !important;
    }
    @media (min-width: 769px) {
        body {
            font-family: var(--site-font);
        }
    }
    button,
    input,
    select,
    textarea,
    optgroup {
        font: inherit;
    }
    .nick-gradient-animated {
       --nick-gradient-color1: #ff59d0;
       --nick-gradient-color2: #7c72ff;
       background-image: linear-gradient(90deg, var(--nick-gradient-color1), var(--nick-gradient-color2));
       background-repeat: no-repeat;
       -webkit-background-clip: text;
       background-clip: text;
       -webkit-text-fill-color: transparent;
       color: transparent;
       text-shadow: none !important;
     }
    .spoiler { 
       position: relative; 
       display: inline-block; 
       vertical-align: middle;
       border-radius: 6px; 
       cursor: pointer; 
       background: var(--blur-bg); 
       color: transparent; 
       padding: 2px 6px; 
       user-select: none; 
       transition: background .25s ease; 
       overflow: hidden; 
     } 
     .spoiler > span { 
       filter: blur(6px); 
       transition: filter .35s ease, color .35s ease; 
       color: var(--blur-fg); 
       white-space: pre-wrap; 
     } 
     .spoiler.revealed { 
       background: var(--reveal-bg); 
       cursor: default; 
     } 
     .spoiler.revealed > span { 
       filter: blur(0); 
       color: #eaeaea; 
     } 
     .hint { 
       margin-top: 10px; 
       font-size: 13px; 
       color: #8a8a8a; 
     } 
     .bubble { 
       position: absolute; 
       border-radius: 50%; 
       pointer-events: none; 
       opacity: 0.6; 
     }
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    }
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        z-index: 9998;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s ease-out, visibility 0s 0s;
        pointer-events: none;
    }
    body.loaded::before {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-out, visibility 0s 0.2s;
    }
    body.navigating::before {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.11s ease-in, visibility 0s 0.11s;
    }
    body.navigating::after {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.11s ease-in, visibility 0s 0s;
    }
    .nav-loader {
        position: fixed;
        inset: 0;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(26, 26, 26, 0.94);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2147483647;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.11s ease-in, visibility 0s 0.11s;
    }
    body.navigating .nav-loader {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.11s ease-in, visibility 0s 0s;
    }
    html.page-preloading .nav-loader {
        opacity: 1;
        visibility: visible;
        transition: none;
    }
    .nav-loader-brand {
        display: inline-flex;
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        width: max-content;
        max-width: calc(100vw - 32px);
    }
    .nav-loader-text {
        position: relative;
        display: block;
        margin: 0;
        padding: 0 6px;
        overflow: visible;
        clip: auto;
        white-space: nowrap;
        border: 0;
        color: #fff;
        font-family: var(--site-font);
        font-size: clamp(54px, 12vw, 132px);
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0;
        text-shadow:
            1px 1px rgba(0, 0, 0, 0.3),
            0 0 28px rgba(255, 255, 255, 0.18);
    }
    .nav-progress-bar {
        --nav-progress: 18%;
        --nav-transition: 0.28s ease;
        width: 100%;
        height: 2px;
        background: transparent;
        border-radius: 999px;
        overflow: hidden;
        position: relative;
    }
    .nav-progress-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: var(--nav-progress);
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, #ffffff 58%, rgba(255, 255, 255, 0.72) 100%);
        opacity: 0;
        border-radius: 999px;
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
        transition: width var(--nav-transition), opacity 0.08s ease-out;
    }
    body.navigating .nav-progress-bar::after {
        opacity: 1;
    }
    html.page-preloading .nav-progress-bar::after {
        opacity: 1;
    }
    body.navigating .nav-progress-bar {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.11s ease-in, visibility 0s 0s;
    }
    ::selection {
        background: #007AFF;
        color: white;
        text-shadow: none;
    }
    ::-moz-selection {
        background: #007AFF;
        color: white;
        text-shadow: none;
    }
    a[href^="tel:"] {
        pointer-events: none;
        color: inherit !important;
        text-decoration: none !important;
    }
    #global-tooltip {
        position: fixed;
        z-index: 2147483647;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        color: #fff;
        padding: 7px 11px;
        border-radius: 11px;
        font-size: 13px;
        font-weight: normal;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
        white-space: nowrap;
        border: 1px solid rgba(255,255,255,0.2);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.15s ease;
        font-family: var(--site-font);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: none;
        box-sizing: border-box;
    }
    [title]:hover::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #1a1a1a;
        z-index: 1000000;
        margin-bottom: -5px;
        opacity: 0;
        animation: tooltipFadeIn 0.3s ease forwards;
        pointer-events: none;
    }
    @keyframes tooltipFadeIn {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
    .background {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background:
            url('/static/Preloader_background.png') center center / cover no-repeat,
            #141414;
        z-index: -1;
    }
    .background-grain {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(circle at 0 0, rgba(255,255,255,0.0015) 0, transparent 50%),
            radial-gradient(circle at 100% 0, rgba(255,255,255,0.001) 0, transparent 55%),
            radial-gradient(circle at 0 100%, rgba(255,255,255,0.001) 0, transparent 55%),
            radial-gradient(circle at 100% 100%, rgba(255,255,255,0.00125) 0, transparent 50%);
        pointer-events: none;
        z-index: 1;
        mix-blend-mode: normal;
    }
    .background-grain::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.015);
        -webkit-mask-image:
            repeating-linear-gradient(45deg, #000 0 4px, transparent 4px 39px),
            repeating-linear-gradient(135deg, #000 0 4px, transparent 4px 39px);
        -webkit-mask-composite: source-over;
        mask-image:
            repeating-linear-gradient(45deg, #000 0 4px, transparent 4px 39px),
            repeating-linear-gradient(135deg, #000 0 4px, transparent 4px 39px);
        mask-composite: add;
        pointer-events: none;
    }
    .background::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.82);
        pointer-events: none;
    }
    .background::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 0,
            transparent 12%,
            transparent 88%,
            rgba(255, 255, 255, 0.08) 100%
        );
        pointer-events: none;
        z-index: 2;
    }
    header {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        z-index: 1;
        position: relative;
    }
    header img.logo {
        height: 50px;
        width: auto;
    }
    main {
        width: 95%;
        max-width: 1440px;
        margin: 27px auto;
        position: relative;
        z-index: 1;
    }
    body > footer,
    body > .footer {
        margin-top: auto;
    }
    .ad-footer-container {
        width: 95%;
        max-width: 1440px;
        margin: 27px auto;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        overflow: hidden;
        padding: 16px;
        box-sizing: border-box;
        text-align: center;
        color: #fff;
        font-size: 14px;
        display: none;
    }
    main table {
        width: auto;
        max-width: 100%;
        border-collapse: collapse;
        table-layout: auto;
    }
    td, th {
        padding: 8px;
        text-align: left;
        overflow: visible;
        text-overflow: unset;
        white-space: normal;
        max-width: none;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
    img.media-loading,
    video.media-loading,
    iframe.media-loading {
        background:
            linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.13) 50%, transparent 65%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
        background-size: 220% 100%, 100% 100%;
        animation: mediaSkeletonShimmer 1.25s linear infinite;
    }
    img.media-loaded,
    video.media-loaded,
    iframe.media-loaded {
        animation: none;
        background: transparent;
    }
    @keyframes mediaSkeletonShimmer {
        0% {
            background-position: 120% 0, 0 0;
        }
        100% {
            background-position: -120% 0, 0 0;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        img.media-loading,
        video.media-loading,
        iframe.media-loading {
            animation: none;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
        }
    }
    .custom-alert-modal {
        display: none;
        position: fixed;
        z-index: 200000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        align-items: center;
        justify-content: center;
        padding: 18px;
        box-sizing: border-box;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    .custom-alert-content {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        margin: 0;
        padding: 0;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 18px;
        width: 90%;
        max-width: 450px;
        color: #fff;
        animation: customAlertSlideIn 0.15s ease-out;
        box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
        overflow: hidden;
    }
    @keyframes customAlertSlideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    .custom-alert-header {
        background: rgba(0,86,122,0.25);
        padding: 14px 18px;
        border-radius: 18px 18px 0 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    .custom-alert-header.confirm-header {
        background: rgba(122, 86, 0, 0.25);
    }
    .custom-alert-header h3 {
        margin: 0;
        font-size: 16px;
        color: #fff;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
    }
    .custom-alert-body {
        padding: 18px;
        text-align: center;
    }
    .custom-alert-body p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #fff;
    }
    .custom-alert-footer {
        padding: 14px 18px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .custom-alert-btn-secondary {
        background: transparent;
        color: #ccc;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 11px;
        font-size: 14px;
        font-weight: bold;
        padding: 9px 22px;
        cursor: pointer;
        transition: all 0.15s;
    }
    .custom-alert-btn-secondary:hover {
        background: rgba(255,255,255,0.05);
        color: #fff;
    }
    .custom-alert-btn {
        background: linear-gradient(180deg, #404040 80%, #2a2a2a 100%);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 11px;
        font-size: 14px;
        font-weight: bold;
        padding: 9px 22px;
        cursor: pointer;
        transition: background 0.15s;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
    }
    .custom-alert-btn:hover {
        background: linear-gradient(180deg, #505050 80%, #3a3a3a 100%);
    }
    .custom-alert-btn:active {
        transform: translateY(1px);
    }
    .download-progress-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(22, 21, 21, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        animation: fadeIn 0.15s ease-out;
    }
    .download-progress-modal {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 18px;
        padding: 23px;
        width: 90%;
        max-width: 500px;
        animation: slideDown 0.15s ease-out;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @keyframes slideDown {
        from {
            transform: translateY(-10px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    @keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }
    @keyframes slideUp {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-10px);
            opacity: 0;
        }
    }
    .download-progress-overlay.closing {
        animation: fadeOut 0.1s ease-out;
    }
    .download-progress-modal.closing {
        animation: slideUp 0.1s ease-out;
    }
    .download-progress-header h3 {
        color: #4FC3F7;
        font-size: 16px;
        margin: 0 0 18px 0;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
        text-align: center;
    }
    .download-progress-body {
        margin-bottom: 18px;
    }
    .download-progress-bar-container {
        width: 100%;
        height: 18px;
        background: #1a1a1a;
        border-radius: 11px;
        overflow: hidden;
        border: 1px solid rgba(79, 195, 247, 0.3);
        margin-bottom: 14px;
    }
    .download-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #81D4FA, #90CAF9, #BBDEFB);
        width: 0%;
        transition: width 0.3s ease;
        position: relative;
        border-radius: 11px;
        overflow: hidden;
    }
    .download-progress-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.6), 
            transparent);
        animation: progressShine 2s infinite;
    }
    .download-progress-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
        border-radius: 11px 11px 0 0;
    }
    .download-progress-info {
        display: flex;
        justify-content: space-between;
        color: #fff;
        font-size: 13px;
        margin-bottom: 7px;
    }
    .download-progress-speed {
        text-align: center;
        color: #4FC3F7;
        font-size: 12px;
        font-weight: bold;
    }
    .download-cancel-btn {
        width: 100%;
        padding: 9px;
        background: linear-gradient(180deg, #404040 80%, #2a2a2a 100%);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 11px;
        color: #fff;
        font-size: 13px;
        font-weight: bold;
        cursor: pointer;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
        transition: all 0.1s ease;
    }
    .download-cancel-btn:hover {
        background: linear-gradient(180deg, #505050 80%, #3a3a3a 100%);
    }
    .download-cancel-btn:active {
        transform: translateY(1px);
    }
    .toast-notification {
        position: fixed;
        bottom: 27px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 18px;
        padding: 14px 27px;
        color: #4FC3F7;
        font-size: 14px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
        z-index: 10001;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }
    .toast-notification.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .site-context-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: min(260px, calc(100vw - 18px));
        padding: 6px;
        background: rgba(27, 27, 27, 0.96);
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 14px;
        box-shadow: 0 18px 50px rgba(0,0,0,0.42), inset 0 1px rgba(255,255,255,0.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        z-index: 2147483646;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, -4px, 0) scale(0.98);
        transform-origin: top left;
        transition: opacity 0.12s ease, transform 0.12s ease, visibility 0s 0.12s;
        box-sizing: border-box;
        text-shadow: none;
    }
    .site-context-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0) scale(1);
        transition: opacity 0.12s ease, transform 0.12s ease;
    }
    .site-context-menu-item {
        width: 100%;
        min-height: 36px;
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: rgba(255,255,255,0.9);
        font: 700 13px/1.2 var(--site-font);
        text-align: left;
        cursor: pointer;
        transition: background 0.12s ease, color 0.12s ease, opacity 0.12s ease;
        box-sizing: border-box;
    }
    .site-context-menu-item i {
        color: #4FC3F7;
        font-size: 13px;
        text-align: center;
    }
    .site-context-menu-item span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .site-context-menu-item kbd {
        color: rgba(255,255,255,0.42);
        font: 700 11px/1 var(--site-font);
    }
    .site-context-menu-item:hover,
    .site-context-menu-item:focus-visible {
        outline: none;
        background: rgba(79, 195, 247, 0.14);
        color: #fff;
    }
    .site-context-menu-item.is-disabled {
        opacity: 0.38;
        cursor: default;
        pointer-events: none;
    }
    .site-context-menu-item.is-hidden,
    .site-context-menu-divider.is-hidden {
        display: none;
    }
    .site-context-menu-divider {
        height: 1px;
        margin: 5px 8px;
        background: rgba(255,255,255,0.1);
    }
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    textarea,
    select {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 18px;
        color: #fff;
        padding: 7px 14px;
        font-size: 13px;
        font-weight: bold;
        transition: all 0.3s ease;
        text-shadow: 1px 1px rgba(0,0,0,0.3);
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="search"]:focus,
    textarea:focus,
    select:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
    }
    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
        text-shadow: 1px 1px rgba(0,0,0,0.3);
    }
    select {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 40px;
        color-scheme: dark;
    }
    select option {
        background: #1e1e1e;
        color: #fff;
        font-weight: 600;
        padding: 8px 12px;
    }
    select option:checked,
    select option:focus {
        background: #0e3a58;
        color: #fff;
    }
    select optgroup {
        background: #1a1a1a;
        color: #aaa;
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    select:focus-visible {
        outline: none;
    }
    @media (max-width: 768px) {
        select {
            appearance: none;
            -webkit-appearance: none;
            background-color: rgba(30, 39, 50, 0.8);
            border: 1px solid rgba(51, 144, 236, 0.25);
            border-radius: 14px;
            text-shadow: none;
            font-family: var(--site-font);
        }
        select:focus {
            border-color: rgba(51, 144, 236, 0.5);
            background: rgba(30, 39, 50, 0.95);
        }
    }
    @media (max-width: 768px) {
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        html {
            background: #17212B !important;
            min-height: 100vh;
        }
        body {
            background: #17212B !important;
            min-height: 100vh;
            font-family: var(--site-font) !important;
            font-size: 15px;
            line-height: 1.5;
        }
        body::before {
            background: #17212B !important;
        }
        html.page-preloading::before {
            background: #17212B !important;
        }
        .nav-loader {
            background: rgba(23, 33, 43, 0.96);
            gap: 0;
        }
        .nav-loader-text {
            font-size: clamp(48px, 18vw, 82px);
            text-shadow:
                1px 1px rgba(0, 0, 0, 0.3),
                0 0 22px rgba(255, 255, 255, 0.16);
        }
        .nav-progress-bar {
            display: none;
        }
        .background {
            background: #17212B !important;
        }
        .background::after,
        .background::before {
            display: none;
        }
        main {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 8px 0;
            background: #17212B;
        }
        header,
        footer {
            background: #17212B;
        }
        .ad-footer-container {
            border-radius: 16px;
            margin: 8px;
            width: calc(100% - 16px);
        }
        .progress-container {
            background: rgba(30, 39, 50, 0.6) !important;
            border: 1px solid rgba(51, 144, 236, 0.2) !important;
            border-radius: 12px;
        }
        .progress-bar {
            background: rgba(51, 144, 236, 0.5) !important;
            border-radius: 12px;
        }
        .custom-alert-content {
            border-radius: 20px;
            border: 1px solid rgba(51, 144, 236, 0.2);
            background: rgba(23, 33, 43, 0.98);
        }
        .custom-alert-header {
            border-radius: 20px 20px 0 0;
        }
        .custom-alert-btn {
            border-radius: 14px;
        }
        .custom-alert-btn-secondary {
            border-radius: 14px;
        }
        .download-progress-modal {
            border-radius: 20px;
            border: 1px solid rgba(51, 144, 236, 0.2);
            background: rgba(23, 33, 43, 0.98);
        }
        .download-cancel-btn {
            border-radius: 14px;
        }
        .toast-notification {
            border-radius: 16px;
            bottom: 20px;
            padding: 12px 24px;
            border: 1px solid rgba(51, 144, 236, 0.2);
            background: rgba(23, 33, 43, 0.98);
        }
        .auth-warning-content {
            border-radius: 20px;
            padding: 28px;
            border: 1px solid rgba(51, 144, 236, 0.15);
            background: rgba(23, 33, 43, 0.98);
        }
        .form-submit-btn {
            border-radius: 14px;
        }
        #global-tooltip {
            background: rgba(30, 39, 50, 0.95) !important;
            border: 1px solid rgba(51, 144, 236, 0.3) !important;
            color: #e4e4e4 !important;
            padding: 12px 16px !important;
            font-size: 13px !important;
            border-radius: 14px !important;
            max-width: calc(100vw - 32px) !important;
            min-width: 120px !important;
            white-space: normal !important;
            word-wrap: break-word !important;
            word-break: normal !important;
            overflow-wrap: break-word !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
            text-shadow: none !important;
            line-height: 1.4 !important;
            text-align: center !important;
            box-sizing: border-box !important;
        }
        [title]:hover::before {
            border-top-color: rgba(30, 39, 50, 0.95) !important;
        }
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="number"],
        input[type="search"],
        textarea {
            border-radius: 14px;
            text-shadow: none;
        }
    }
.page-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    .page-loader.visible {
        opacity: 1;
    }
    .page-loader-content {
        text-align: center;
        color: #fff;
        position: relative;
        max-width: 400px;
        padding: 20px;
    }
    .page-loader-close {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 28px;
        cursor: pointer;
        color: rgba(255,255,255,0.7);
        line-height: 1;
        transition: color 0.2s;
    }
    .page-loader-close:hover {
        color: #fff;
    }
    .page-loader-qa {
        margin-top: 20px;
        font-size: 14px;
        color: rgba(255,255,255,0.8);
        text-align: left;
        background: rgba(0,0,0,0.3);
        padding: 15px;
        border-radius: 10px;
    }
    .page-loader-qa strong {
        color: #fff;
        margin-right: 5px;
    }
    .page-loader-qa div:first-child {
        margin-bottom: 8px;
    }
    .page-loader-spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(255, 255, 255, 0.1);
        border-top-color: #4FC3F7;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 15px;
    }
    .page-loader-text {
        font-size: 16px;
        font-weight: bold;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
.auth-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 18px;
    box-sizing: border-box;
}
.auth-warning-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 18px;
    padding: 36px;
    max-width: 540px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
}
.auth-warning-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 18px 0;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-warning-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.auth-warning-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.auth-warning-login-btn {
  background: rgba(0,168,255,0.15);
  border-color: rgba(0,168,255,0.3);
  box-shadow: none;
}
.auth-warning-close-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
}
.form-submit-btn {
  padding: 7px 18px;
  background: linear-gradient(135deg, #00a8ff 0%, #0088cc 100%);
  border: 1px solid rgba(0,168,255,0.4);
  border-radius: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.1s ease;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 0.5px 0px 0.5px rgba(0,168,255,0.3), 0px 3px 0px 0.5px rgba(0,100,150,0.8);
  white-space: nowrap;
  height: fit-content;
}
.form-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0px 0px 0px 0.5px rgba(0,168,255,0.3), 0px 1px 0px 0.5px rgba(0,100,150,0.8);
}
.form-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #00b8ff 0%, #0098dd 100%);
  border-color: rgba(0,168,255,0.6);
}
.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.site-ad-container {
  width: 85.5%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
}
.site-ad-container-visible {
  margin: 18px auto 28px;
  padding: 27px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
}
.site-ad-inner {
  width: 100%;
  min-height: 0;
  overflow: hidden;
}
.site-ad-inner [id^="yandex_rtb_"],
.site-ad-inner iframe {
  max-width: 100%;
}
.site-ad-inner iframe {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-ad-container {
    width: calc(100% - 28px);
    max-width: none;
  }
  .site-ad-container-visible {
    margin: 12px auto 18px;
    padding: 14px;
    background: #17212B;
    border-color: rgba(51, 144, 236, 0.2);
    border-radius: 12px;
  }
  .site-ad-inner {
    width: 100%;
    min-height: 0;
  }
}
@media (max-width: 420px) {
  .site-ad-container {
    width: calc(100% - 18px);
  }
  .site-ad-container-visible {
    margin: 10px auto 16px;
    padding: 10px;
    background: #17212B;
    border-color: rgba(51, 144, 236, 0.2);
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .custom-alert-modal,
  .auth-warning-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 62px 0 0 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .custom-alert-content,
  .auth-warning-content {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 62px);
    margin: 0;
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(51, 144, 236, 0.2);
    border-bottom: none;
    border-left: none;
    border-right: none;
    background: rgba(23, 33, 43, 0.98);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: none;
    overflow-y: auto;
    box-sizing: border-box;
    animation: mobileModalSheetIn 0.26s ease-out;
  }
  .custom-alert-header {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 18px 14px;
    text-align: left;
  }
  .custom-alert-header.confirm-header {
    background: transparent;
  }
  .custom-alert-header h3,
  .auth-warning-title {
    color: #fff;
    font: 700 17px/1.25 var(--site-font);
    text-align: left;
    text-shadow: none;
  }
  .custom-alert-body {
    padding: 16px 18px;
    text-align: left;
  }
  .custom-alert-body p,
  .auth-warning-text {
    color: rgba(255, 255, 255, 0.82);
    font: 600 14px/1.55 var(--site-font);
    text-align: left;
    text-shadow: none;
  }
  .custom-alert-footer,
  .auth-warning-actions {
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .custom-alert-footer .custom-alert-btn-secondary {
    order: 2;
  }
  .custom-alert-footer .custom-alert-btn {
    order: 1;
  }
  .custom-alert-btn,
  .custom-alert-btn-secondary,
  .auth-warning-actions .form-submit-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    padding: 11px 16px;
    font: 700 14px/1.2 var(--site-font);
    text-shadow: none;
    box-shadow: none;
  }
  .custom-alert-btn,
  .auth-warning-login-btn {
    background: rgba(51, 144, 236, 0.18);
    border-color: rgba(51, 144, 236, 0.35);
    color: #fff;
  }
  .custom-alert-btn-secondary,
  .auth-warning-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
  }
  .auth-warning-content {
    padding: 20px 18px 0;
  }
  .auth-warning-title {
    justify-content: flex-start;
    margin-bottom: 12px;
  }
  .auth-warning-title i {
    color: #8ec8ff;
  }
  .auth-warning-actions {
    margin: 20px -18px 0;
  }
  @keyframes mobileModalSheetIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
.provider-icon {
            width: 18px;
            height: 18px;
            border-radius: 2px;
            flex-shrink: 0;
            vertical-align: middle;
        }
.inbox-chest-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(58, 42, 16, 0.36) 0%, rgba(20, 16, 11, 0.88) 42%, rgba(0, 0, 0, 0.88) 100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  opacity: 1;
  transition: opacity 0.55s ease;
}
.inbox-chest-overlay.is-done {
  opacity: 0;
  pointer-events: none;
}
.inbox-chest-rays {
  display: none;
}
.inbox-chest-rays::after {
  content: none;
}
.inbox-chest-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(22px);
}
.inbox-chest-img {
  width: clamp(135px, 21.6vw, 234px);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.55));
  transition: transform 0.28s ease, filter 0.28s ease;
}
.inbox-chest-overlay.is-opening .inbox-chest-img {
  animation: inboxChestJump 0.58s cubic-bezier(.18,.9,.25,1.2);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.56));
}
.inbox-chest-hint {
  position: fixed;
  left: 0;
  top: 0;
  color: rgba(255, 241, 196, 0.8);
  font: 900 clamp(28px, 5vw, 64px)/1.05 var(--site-font);
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78);
  transition: opacity 0.2s ease;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
}
.inbox-chest-overlay.is-opening .inbox-chest-hint {
  opacity: 0;
}
.inbox-reward-stage {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.inbox-reward-item {
  position: fixed;
  width: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.62);
  opacity: 0;
}
.inbox-reward-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 218, 112, 0.5));
}
.inbox-reward-title {
  width: 156px;
  color: #fff;
  font: 900 16px/1.18 var(--site-font);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.86),
    0 0 14px rgba(255, 230, 170, 0.22);
  overflow-wrap: anywhere;
  opacity: 0;
  animation: inboxRewardTitleAfterFlight 1.15s ease forwards;
}
.inbox-reward-item.is-roomy .inbox-reward-title {
  width: 216px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}
@keyframes inboxRewardTitleAfterFlight {
  0%, 62% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inboxRaysSpin {
  0% { transform: rotate(0deg) scale(0.98); }
  50% { transform: rotate(18deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(0.98); }
}
@keyframes inboxRaysPulse {
  0%, 100% { opacity: 0.48; transform: scale(0.96); }
  50% { opacity: 0.86; transform: scale(1.03); }
}
@keyframes inboxChestJump {
  0% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-34px) scale(1.04); }
  62% { transform: translateY(8px) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .inbox-chest-img {
    width: clamp(122px, 37.8vw, 189px);
  }
  .inbox-reward-item {
    width: 82px;
  }
  .inbox-reward-icon {
    width: 60px;
    height: 60px;
  }
  .inbox-reward-title {
    width: 124px;
    font-size: 13px;
  }
  .inbox-reward-item.is-roomy .inbox-reward-title {
    width: 164px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .inbox-chest-rays,
  .inbox-chest-overlay.is-opening .inbox-chest-img,
  .inbox-reward-item {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
