        /* ===== Design tokens ===== */
        :root {
            --container: clamp(320px, 90vw, 1200px);
            --gap: clamp(18px, 2vw, 24px);
            --grid-cols: 12;
            --padding: clamp(30px, 3.5vw, 40px);
            --kaurov-dark: 21, 21, 21;
        }

        @media (max-width: 900px) {
            :root {
                --grid-cols: 8;
            }
        }

        @media (max-width: 600px) {
            :root {
                --grid-cols: 4;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: rgb(var(--kaurov-dark));
            color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .container {
            width: min(var(--container), 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(var(--grid-cols), 1fr);
            gap: var(--gap);
            padding: var(--padding);
            position: relative;
        }

        @media (max-width: 600px) {
            .container {
                padding-left: 4px;
                padding-right: 4px;
            }
        }

        /* Sidebar */
        .sidebar {
            grid-column: 1 / 3;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: fixed;
            width: calc((min(var(--container), 100%) - var(--padding) * 2 - var(--gap) * (var(--grid-cols) - 1)) / var(--grid-cols) * 2 + var(--gap));
            top: var(--padding);
            left: calc(50% - min(var(--container), 100%) / 2 + var(--padding));
            z-index: 200;
        }

        @media (max-width: 600px) {
            .sidebar {
                display: none;
            }
        }

        .logo {
            width: 50%;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .logo img {
            display: block;
            width: 100%;
            height: auto;
        }

        .nav-item {
            color: #cacaca;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.5;
            display: block;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .nav-item:hover {
            color: #fff;
        }

        .lang-toggle {
            padding: 4px 10px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-radius: 999px;
            border: 1px solid #444;
            background-color: #151515;
            color: #777;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .lang-toggle:hover {
            color: #fff;
            border-color: #888;
        }

        .lang-toggle.active {
            background-color: #777777;
            color: #000;
            border-color: #777777;
        }

        .lang-toggle.active:hover {
            background-color: #fff;
            border-color: #fff;
        }

        .lang-wrapper {
            position: fixed;
            top: var(--padding);
            right: calc(50% - min(var(--container), 100%) / 2 + var(--padding));
            width: 200px;
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            z-index: 300;
        }

        @media (max-width: 600px) {
            .lang-wrapper {
                right: calc(50% - min(var(--container), 100%) / 2 + 4px);
            }
        }

        .lang-toggle-global {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: none;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: rgb(var(--kaurov-dark));
            z-index: 250;
            gap: 12px;
            border-bottom: 1px solid #2f2f2f;
        }

        .mobile-topbar__logo {
            display: flex;
            align-items: center;
        }

        .mobile-topbar__logo img {
            display: block;
            height: 34px;
            width: auto;
        }

        .mobile-topbar__controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .mobile-menu-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 38px;
            padding: 0;
            border-radius: 12px;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .mobile-menu-toggle:hover {
            background: transparent;
        }

        .mobile-menu-toggle:focus-visible {
            outline: 2px solid #888;
            outline-offset: 2px;
        }

        .mobile-menu-toggle__icon {
            display: grid;
            gap: 5px;
        }

        .mobile-menu-toggle__line {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: #fff;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .mobile-menu-toggle--open .mobile-menu-toggle__line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle--open .mobile-menu-toggle__line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle--open .mobile-menu-toggle__line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgb(var(--kaurov-dark));
            border-bottom: 1px solid #2f2f2f;
            padding: 12px 14px 16px;
            display: none;
            z-index: 240;
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
        }

        .mobile-menu--open {
            display: block;
        }

        .mobile-menu__list {
            display: grid;
            gap: 10px;
        }

        .mobile-menu__list .nav-item {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .mobile-menu__list .nav-item:hover {
            color: #fff;
        }

        @media (min-width: 601px) {
            .mobile-menu {
                display: none !important;
            }
        }

        @media (max-width: 600px) {
            .mobile-topbar {
                display: flex;
            }

            .mobile-topbar .lang-toggle-global {
                margin-left: 0;
            }

            .lang-wrapper {
                display: none;
            }
        }

        /* Header */
        .header {
            grid-column: 3 / -1;
            display: grid;
            grid-template-columns: repeat(calc(var(--grid-cols) - 2), 1fr);
            gap: var(--gap);
            margin-bottom: 40px;
            align-items: start;
        }

        #overview.header {
            margin-bottom: 0;
        }

        #about.header {
            margin-bottom: 0;
        }

        .avatar {
            grid-column: 1 / 3;
            width: 100%;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .header-info {
            grid-column: 3 / -1;
        }

        @media (max-width: 600px) {
            .header {
                grid-column: 1 / -1;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
                margin-top: calc(var(--padding) * 2);
            }

            .header .avatar {
                grid-column: 1 / 2;
            }

            .header .header-info {
                grid-column: 2 / 4;
            }
        }

        .header-info h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .header-title {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .header-title__text {
            display: inline-block;
            padding-right: 0;
        }

        .header-title .app-badges {
            display: inline-flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .header-title .app-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 0.8em;
            height: 0.8em;
            border-radius: 5px;
            overflow: hidden;
        }

        .header-title .app-badge img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .header-info .subtitle {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .header-info .about-text {
            margin-top: 12px;
            display: grid;
            gap: 12px;
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        /* Section */
        .section {
            grid-column: 3 / -1;
            margin-bottom: 40px;
        }

        #features.section {
            margin-bottom: 0;
        }

        #support.section {
            margin-bottom: 0;
        }

        @media (max-width: 600px) {
            .section {
                grid-column: 1 / -1;
            }
        }

        .section-title {
            display: grid;
            grid-template-columns: repeat(calc(var(--grid-cols) - 2), 1fr);
            gap: var(--gap);
            align-items: center;
            margin-top: 40px;
            margin-bottom: 0;
        }

        @media (max-width: 900px) {
            .section-title {
                display: flex;
            }
        }

        @media (max-width: 600px) {
            .section-title {
                display: flex;
            }
        }

        .section-title-wrapper {
            grid-column: 1 / 3;
            display: flex;
            justify-content: flex-end;
            width: max-content;
            max-width: 100%;
            margin-left: auto;
        }

        .section-title span {
            font-size: 24px;
            font-weight: 400;
            text-align: right;
            white-space: nowrap;
        }

        @media (max-width: 900px) {
            .section-title-wrapper {
                justify-content: flex-start;
                margin-left: 0;
                margin-right: auto;
            }

            .section-title span {
                text-align: left;
            }
        }

        @media (max-width: 600px) {
            .section-title-wrapper {
                justify-content: flex-start;
                margin-left: 0;
                margin-right: auto;
            }

            .section-title span {
                text-align: left;
            }
        }

        .section-title::after {
            content: '';
            grid-column: 3 / -1;
            height: 1px;
            background-color: #fff;
        }

        .specializations {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(var(--grid-cols), 1fr);
            column-gap: var(--gap);
            row-gap: 0;
            position: relative;
        }

        .specializations__title-bar {
            grid-column: 3 / -1;
            position: sticky;
            top: 0;
            z-index: 150;
            background: transparent;
            padding-bottom: calc(var(--padding) / 1.2);
        }

        .specializations__title-bar::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            pointer-events: none;
            z-index: 0;
        }

        .specializations__title-bar::before {
            top: 0;
            height: 100%;
            background: linear-gradient(180deg,
                    rgb(var(--kaurov-dark)) 0%,
                    rgb(var(--kaurov-dark)) 55%,
                    rgb(var(--kaurov-dark)) 55%,
                    rgba(var(--kaurov-dark), 0) 100%);
        }

        .specializations__title-bar>* {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .specializations__title-bar {
                grid-column: 3 / -1;
            }

            .specializations__title-bar::before {
                background: linear-gradient(180deg,
                        rgb(var(--kaurov-dark)) 0%,
                        rgb(var(--kaurov-dark)) 70%,
                        rgb(var(--kaurov-dark)) 70%,
                        rgba(var(--kaurov-dark), 0) 100%);
            }
        }

        @media (max-width: 600px) {
            .specializations__title-bar {
                grid-column: 1 / -1;
                position: relative;
                top: auto;
                z-index: 1;
            }

            .specializations__title-bar::before {
                background: linear-gradient(180deg,
                        rgb(var(--kaurov-dark)) 0%,
                        rgb(var(--kaurov-dark)) 55%,
                        rgb(var(--kaurov-dark)) 55%,
                        rgba(var(--kaurov-dark), 0) 100%);
            }
        }

        @media (max-width: 900px) {
            .section-title::after {
                flex: 1;
            }
        }

        @media (max-width: 600px) {
            .section-title::after {
                flex: 1;
            }
        }

        .section-content {
            display: grid;
            grid-template-columns: repeat(calc(var(--grid-cols) - 2), 1fr);
            gap: var(--gap);
            margin-top: 40px;
        }

        @media (max-width: 600px) {
            .section-content {
                grid-template-columns: repeat(var(--grid-cols), 1fr);
            }
        }

        .content-text {
            grid-column: 3 / 7;
        }

        #features .content-text {
            grid-column: 3 / -1;
        }

        @media (max-width: 900px) {
            .content-text {
                grid-column: 1 / 4;
            }

            #features .content-text {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .content-text {
                grid-column: 1 / -1;
            }
        }

        .content-text h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .content-text p {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        .content-image {
            grid-column: 7 / -1;
        }

        @media (max-width: 900px) {
            .content-image {
                grid-column: 4 / -1;
            }
        }

        @media (max-width: 600px) {
            .content-image {
                grid-column: 1 / -1;
            }
        }

        #motion-graphics .content-text {
            grid-column: 3 / -1;
        }

        @media (max-width: 900px) {
            #motion-graphics .content-text {
                grid-column: 1 / -1;
            }
        }

        .video-embed {
            position: relative;
            width: 100%;
            padding-top: 78.22%;
            overflow: hidden;
        }

        .video-embed--16x9 {
            padding-top: 56.25%;
        }

        .video-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-embed video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border: 0;
            background-color: #000;
        }

        .watch-on {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.2vw, 16px);
            flex-wrap: wrap;
            justify-content: flex-end;
            text-align: right;
            margin-top: clamp(10px, 1.3vw, 16px);
        }

        .watch-on__label {
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #ccc;
        }

        .watch-on__links {
            display: flex;
            align-items: center;
            gap: clamp(8px, 1vw, 14px);
        }

        .watch-on__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(30px, 3.5vw, 38px);
            height: clamp(30px, 3.5vw, 38px);
            border-radius: 50%;
        }

        .watch-on__link img {
            width: 70%;
            height: 70%;
            display: block;
            object-fit: contain;
            filter: none;
            opacity: 1;
            transition: filter 0.2s ease, opacity 0.2s ease;
        }

        .watch-on__link:hover img {
            filter: grayscale(1) brightness(0.6);
            opacity: 0.7;
        }

        .showreel-image .video-embed {
            padding-top: 56.25%;
        }

        /* Showreel */
        .showreel-text {
            grid-column: 3 / -1;
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        @media (max-width: 900px) {
            .showreel-text {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .showreel-text {
                grid-column: 1 / -1;
            }
        }

        .showreel-image {
            grid-column: 3 / -1;
        }

        @media (max-width: 900px) {
            .showreel-image {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .showreel-image {
                grid-column: 1 / -1;
            }
        }

        /* Contacts */
        .contacts-content {
            display: grid;
            grid-template-columns: repeat(calc(var(--grid-cols) - 2), 1fr);
            gap: var(--gap);
            margin-top: 40px;
        }

        @media (max-width: 600px) {
            .contacts-content {
                grid-template-columns: repeat(var(--grid-cols), 1fr);
            }
        }

        .contact-info {
            grid-column: 3 / 7;
        }

        @media (max-width: 900px) {
            .contact-info {
                grid-column: 1 / 4;
            }
        }

        @media (max-width: 600px) {
            .contact-info {
                grid-column: 1 / -1;
            }
        }

        .contact-info p {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .contact-icon img {
            display: block;
            width: 100%;
            height: 100%;
            filter: none;
            opacity: 1;
            transition: filter 0.2s ease, opacity 0.2s ease;
        }

        .contact-link:hover .contact-icon img {
            filter: grayscale(1) brightness(0.6);
            opacity: 0.7;
        }

        .contact-text {
            font-size: 16px;
            color: #fff;
        }

        .social-section {
            grid-column: 7 / -1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        @media (max-width: 900px) {
            .social-section {
                grid-column: 4 / -1;
            }
        }

        @media (max-width: 600px) {
            .social-section {
                grid-column: 1 / -1;
                align-items: flex-start;
            }
        }

        .social-title {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 1.5vw, 16px);
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(28px, 3.5vw, 40px);
            height: clamp(28px, 3.5vw, 40px);
            border-radius: 50%;
        }

        .social-link img {
            display: block;
            width: 100%;
            height: 100%;
            filter: none;
            opacity: 1;
            transition: filter 0.2s ease, opacity 0.2s ease;
        }

        .social-link:hover img {
            filter: grayscale(1) brightness(0.6);
            opacity: 0.7;
        }

        /* 404 Page */
        .not-found-page {
            min-height: 100vh;
        }

        .not-found-page .container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .not-found {
            --nf-gap: clamp(12px, 2.4vw, 18px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: var(--nf-gap);
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
        }

        .not-found .logo {
            width: clamp(34px, 4.2vw, 52px);
            margin: 0 auto 6px;
        }

        .not-found__code {
            font-size: clamp(54px, 12vw, 110px);
            font-weight: 800;
            letter-spacing: 0.06em;
            line-height: 1;
        }

        .not-found__headline {
            font-size: clamp(13px, 2.1vw, 20px);
            font-weight: 500;
            line-height: 1.2;
        }

        .not-found__headlines {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .not-found__actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .not-found__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid #444;
            background-color: #151515;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.02em;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .not-found__link:hover {
            background-color: #fff;
            border-color: #fff;
            color: #000;
        }

        .not-found__logo {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: calc(clamp(34px, 4.2vw, 52px) * 1.5);
        }

        .not-found__logo .logo {
            margin: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Font Collector */
        .script-avatar {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 60%),
                linear-gradient(135deg, #101010 0%, #1f1f1f 100%);
            border: 1px solid #2c2c2c;
        }

        .script-avatar img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            background: transparent;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            border-radius: 999px;
            border: 1px solid #444;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.04em;
            font-size: 14px;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .button--primary {
            background-color: #fff;
            color: #000;
            border-color: #fff;
        }

        .button--primary:hover {
            background-color: #f02c01;
            border-color: #f02c01;
            color: #fff;
        }

        .button--secondary {
            background-color: #fff;
            color: #000;
            border-color: #fff;
        }

        .button--secondary:hover {
            background-color: #0000fd;
            border-color: #0000fd;
            color: #fff;
        }

        .content-text .feature-subhead {
            margin-top: 18px;
            font-weight: 700;
            color: #fff;
        }

        .feature-list {
            display: grid;
            gap: 10px;
            margin-top: 16px;
            padding-left: 20px;
            list-style: disc;
        }

        .feature-list li {
            position: static;
            padding-left: 0;
            font-size: 14px;
            line-height: 1.6;
            color: #cfcfcf;
        }

        .feature-list li::before {
            content: none;
        }

        .design-tools-grid {
            grid-column: 3 / -1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--gap);
        }

        .design-tools-intro {
            grid-column: 3 / -1;
            display: grid;
            gap: 10px;
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        @media (max-width: 900px) {
            .design-tools-grid {
                grid-column: 1 / -1;
            }

            .design-tools-intro {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .design-tools-grid {
                grid-column: 1 / -1;
            }

            .design-tools-intro {
                grid-column: 1 / -1;
            }
        }

        .tool-card {
            display: grid;
            gap: 12px;
            border: 1px solid #2f2f2f;
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .tool-card:hover {
            border-color: #444;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
        }

        .tool-card__image {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #0f0f0f;
        }

        .tool-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .tool-card__info {
            display: grid;
            gap: 4px;
            padding: 0 16px 16px 16px;
        }

        .tool-card__info h3 {
            margin: 0;
            font-size: 18px;
            color: #fff;
        }

        .tool-card__info p {
            margin: 0;
            font-size: 13px;
            color: #c3c3c3;
        }

        .download-card {
            display: grid;
            gap: 12px;
            padding: clamp(18px, 3vw, 26px);
            border-radius: 16px;
            border: 1px solid #2f2f2f;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        }

        .download-card__meta {
            font-size: 13px;
            color: #c3c3c3;
        }

        .download-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .support-intro {
            grid-column: 3 / -1;
            font-size: 16px;
            line-height: 1.6;
            color: #c3c3c3;
        }

        @media (max-width: 900px) {
            .support-intro {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .support-intro {
                grid-column: 1 / -1;
            }
        }

        .support-cards {
            grid-column: 3 / -1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--gap);
        }

        @media (max-width: 900px) {
            .support-cards {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .support-cards {
                grid-column: 1 / -1;
            }
        }

        .support-actions {
            width: 100%;
        }

        .donate-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid #2f2f2f;
            border-radius: 16px;
            display: grid;
            gap: 12px;
            padding: clamp(18px, 3vw, 26px);
        }

        .donate-badge-row {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .donate-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 4px 6px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 12px;
            width: fit-content;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .donate-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: calc(12px + 8px);
            height: calc(12px + 8px);
            font-size: 13px;
        }

        .donate-icon img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .donate-badge__text {
            letter-spacing: 0.02em;
        }

        .donate-title {
            font-size: 24px;
            line-height: 1.2;
            color: #fff;
        }

        .donate-badge--ru {
            background: #414141;
            color: #c6c6c6;
        }

        .donate-badge--intl {
            background: #1b4b39;
            color: #7af0b8;
        }

        .donate-button {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid #444;
            background: #151515;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.02em;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .donate-button img {
            height: 18px;
            width: auto;
            display: block;
        }

        .donate-button:hover {
            color: #fff;
            border-color: #444;
        }

        .donate-button--donatty {
            background: #151515;
        }

        .donate-button--donatty:hover {
            background: linear-gradient(90deg, #f15a55 0%, #5521c6 100%);
        }

        .donate-button--kofi {
            background: #151515;
        }

        .donate-button--kofi:hover {
            background: #467ceb;
            border-color: #444;
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            z-index: 300;
        }

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

        .modal__overlay {
            position: absolute;
            inset: 0;
        }

        .modal__dialog {
            position: relative;
            width: 900px;
            max-width: calc(100% - 40px);
            background: #111;
            border: 1px solid #2f2f2f;
            border-radius: 16px;
            padding: clamp(18px, 3vw, 24px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            max-height: calc(100vh - 40px);
            overflow: auto;
        }

        .modal__close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: transparent;
            border: 1px solid #2f2f2f;
            color: #fff;
            border-radius: 999px;
            width: 32px;
            height: 32px;
            cursor: pointer;
            font-size: 18px;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }

        .modal__close:hover {
            background: #2f2f2f;
            border-color: #3f3f3f;
        }

        .modal__title {
            font-size: 22px;
            margin-bottom: 18px;
        }

        .modal-open {
            overflow: hidden;
        }

        .modal-support-grid {
            margin-top: 0;
            grid-template-columns: repeat(8, 1fr);
        }

        @media (max-width: 900px) {
            .modal-support-grid {
                grid-template-columns: repeat(var(--grid-cols), 1fr);
            }
        }

        .modal-support-grid .support-intro,
        .modal-support-grid .support-cards {
            grid-column: 1 / -1;
        }
