    :root {
        --primary: #FF4B1F;
        --primary-hover: #FF6A2A;
        --black: #111111;
        --white: #FFFFFF;
        --font: Inter, Arial, Helvetica, sans-serif;
        --ease: all 0.2s ease;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font);
        background: var(--black);
        color: var(--white);
        line-height: 1.6;
        padding: 20px;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(17, 17, 17, .97);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 48px;
    }

    .logo img {
        height: 28px;
        width: auto;
        display: block;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .header-divider {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, .15);
    }

    .partner-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
        color: rgba(255, 255, 255, .3);
        white-space: nowrap;
    }

    .tray-logo {
        padding: 6px 14px;
    }

    .tray-logo img {
        height: 35px;
        width: auto;
        display: block;
    }

    .page-wrap {
        max-width: 760px;
        margin: 0 auto;
        padding: 56px 24px 80px;
    }

    .page-title h1 {
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
    }

    .page-title h1 em {
        font-style: normal;
        color: var(--primary);
    }

    .title-bar {
        width: 40px;
        height: 3px;
        background: var(--primary);
        margin: 16px 0 0;
    }

    .last-update {
        font-size: 12px;
        color: rgba(255, 255, 255, .35);
        margin-top: 8px;
        margin-bottom: 48px;
        display: block;
    }

    .policy-section {
        margin-bottom: 40px;
    }

    .policy-section h2 {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 14px;
        padding-left: 12px;
        border-left: 3px solid var(--primary);
    }

    .policy-section h3 {
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, .6);
        text-transform: uppercase;
        letter-spacing: .6px;
        margin: 20px 0 10px;
    }

    .policy-section p {
        font-size: 14px;
        color: rgba(255, 255, 255, .7);
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .policy-section p:last-child {
        margin-bottom: 0;
    }

    .policy-section ul {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
    }

    .policy-section ul li {
        font-size: 14px;
        color: rgba(255, 255, 255, .7);
        line-height: 1.7;
        padding: 4px 0 4px 20px;
        position: relative;
    }

    .policy-section ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 13px;
        width: 5px;
        height: 5px;
        background: var(--primary);
        border-radius: 50%;
    }

    .highlight-box {
        background: rgba(255, 75, 31, .07);
        border: 1px solid rgba(255, 75, 31, .2);
        border-left: 3px solid var(--primary);
        padding: 16px 20px;
        margin: 12px 0;
    }

    .highlight-box p {
        margin-bottom: 0;
        font-size: 14px;
        color: rgba(255, 255, 255, .75);
    }

    .info-box {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        padding: 20px 24px;
        margin: 12px 0;
    }

    .info-box p {
        font-size: 14px;
        color: rgba(255, 255, 255, .65);
        margin-bottom: 6px;
    }

    .info-box p:last-child {
        margin-bottom: 0;
    }

    .info-box strong {
        color: var(--white);
    }

    .contact-block {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        padding: 24px;
        margin-top: 12px;
    }

    .contact-block p {
        font-size: 14px;
        color: rgba(255, 255, 255, .65);
        margin-bottom: 6px;
    }

    .contact-block p:last-child {
        margin-bottom: 0;
    }

    .contact-block strong {
        color: var(--white);
    }

    .contact-block a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 700;
        transition: var(--ease);
    }

    .contact-block a:hover {
        color: var(--primary-hover);
    }

    .separator {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, .06);
        margin: 40px 0;
    }

    footer {
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding: 16px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-links {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .footer-link {
        font-size: 12px;
        color: rgba(255, 255, 255, .4);
        text-decoration: none;
        transition: var(--ease);
        white-space: nowrap;
    }

    .footer-link:hover {
        color: var(--primary);
    }

    .footer-link.active {
        color: rgba(255, 255, 255, .75);
    }

    .footer-link.support {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, .55);
        font-weight: 700;
    }

    .footer-link.support:hover {
        color: var(--primary);
    }

    .footer-copy {
        font-size: 11px;
        color: rgba(255, 255, 255, .2);
    }

    @media (max-width: 768px) {
        header {
            padding: 16px 24px;
        }

        .partner-label,
        .header-divider {
            display: none;
        }

        .page-wrap {
            padding: 36px 20px 60px;
        }

        footer {
            padding: 16px 20px;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-links {
            flex-wrap: wrap;
            gap: 16px;
        }
    }