@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
:root {
    --neon-bright: #ffffff;
    --neon-soft: #e8e8e8;
    --neon-muted: rgba(255, 255, 255, 0.55);
    --neon-dim: rgba(255, 255, 255, 0.35);
    --neon-glow: rgba(255, 255, 255, 0.18);
    --neon-glow-strong: rgba(255, 255, 255, 0.35);
    --bg-deep: #000000;
    --bg-base: #050505;
    --bg-card: rgba(10, 10, 10, 0.96);
    --bg-elevated: rgba(16, 16, 16, 0.98);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-neon: rgba(255, 255, 255, 0.2);
    --border-neon-hover: rgba(255, 255, 255, 0.45);
    --shadow-neon: 0 0 24px rgba(255, 255, 255, 0.06);
    --shadow-neon-lg: 0 8px 40px rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 14px rgba(255, 255, 255, 0.45), 0 0 32px rgba(255, 255, 255, 0.12);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background: #000000;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
body {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.88);
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-color: #000000;
    background-image:
        radial-gradient(ellipse 28% 95% at -8% 50%, rgba(255, 255, 255, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 28% 95% at 108% 50%, rgba(255, 255, 255, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 70% 45% at 50% -15%, rgba(255, 255, 255, 0.1) 0%, transparent 62%),
        radial-gradient(ellipse 70% 45% at 50% 115%, rgba(255, 255, 255, 0.08) 0%, transparent 62%),
        radial-gradient(ellipse 55% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 72%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        56px 56px,
        56px 56px;
}
body::after {
    content: '';
    position: fixed;
    inset: -50% 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.015) 42%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.015) 58%,
        transparent 100%
    );
    animation: bgNeonScan 10s linear infinite;
    opacity: 0.85;
}
@keyframes bgNeonScan {
    0% { transform: translateY(-30%); }
    100% { transform: translateY(30%); }
}
.nav {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.home-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 48px;
    position: relative;
    z-index: 10;
    flex: 1 0 auto;
}
body.page-home {
    justify-content: flex-start;
}
.home-header { margin-bottom: 36px; }
.home-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--neon-bright);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-shadow: var(--text-glow);
}
.home-section-jump {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: -8px;
}
.home-reviews-jump {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
}
.home-reviews-jump::after {
    content: '↓';
    font-size: 14px;
    opacity: 0.75;
}
.home-reviews-jump:hover {
    color: var(--neon-bright);
    border-color: var(--border-neon-hover);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-1px);
}
.home-section-jump--to-tools {
    margin-top: 32px;
    margin-bottom: 0;
}
.home-tools-jump::after {
    content: '↑';
}
#tools {
    scroll-margin-top: 24px;
}
#reviews {
    scroll-margin-top: 24px;
}
.rlx-disclaimer-bar {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-subtle);
}
.rlx-disclaimer-bar strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}
.rlx-hero-disclaimer {
    margin: 0 0 28px;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}
.rlx-section-disclaimer,
.rlx-drawer-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}
.rlx-foot-disclaimer {
    max-width: 920px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid var(--border-subtle);
}
.home-why {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--border-subtle);
}
.home-why-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.home-why-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-muted);
    margin-bottom: 14px;
}
.home-why-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-bright);
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: var(--text-glow);
}
.home-why-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--neon-dim);
}
.home-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.home-why-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.home-why-stat:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
}
.home-why-stat-num {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 6px;
    text-shadow: var(--text-glow);
}
.home-why-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--neon-muted);
    text-transform: uppercase;
}
.home-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.home-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 26px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.home-why-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}
.home-why-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
    margin-bottom: 18px;
}
.home-why-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 10px;
    line-height: 1.35;
}
.home-why-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neon-dim);
    margin: 0;
}
.home-why-closing {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.75;
    color: var(--neon-muted);
    padding: 24px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}
.home-reviews {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.home-reviews-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.home-reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 12px;
    text-shadow: var(--text-glow);
}
.home-reviews-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neon-dim);
    margin-bottom: 0;
}
.home-reviews-masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}
.home-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 18px 18px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.home-review-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
}
.home-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.home-review-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--neon-bright);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow-neon);
}
.home-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-soft);
    line-height: 1.3;
}
.home-review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--neon-muted);
    margin: 0;
}
.container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.card {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid var(--border-neon);
}
h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--neon-bright);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: var(--text-glow);
}
.description {
    text-align: center;
    color: var(--neon-muted);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}
.form-group { margin-bottom: 25px; }
input[type="password"] {
    width: 100%;
    padding: 18px 20px;
    background: rgba(8, 8, 8, 0.9);
    border: 2px solid var(--border-neon);
    border-radius: 12px;
    font-size: 15px;
    color: var(--neon-bright);
    transition: all 0.3s;
}
input[type="password"]::placeholder { color: var(--neon-dim); }
input[type="password"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06), 0 0 24px rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 12, 0.95);
}
.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit.is-loading,
.btn-submit:disabled {
    cursor: wait;
    pointer-events: none;
    opacity: 0.88;
    transform: none;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}
.btn-submit.is-loading:hover,
.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.message {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
    font-size: 15px;
}
.message.success {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-soft);
    border: 1px solid var(--border-neon);
    display: block;
}
.message.error {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
}
.rlx-busy-layer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.rlx-busy-layer.active {
    display: flex;
    animation: procFadeIn 0.35s ease;
}
@keyframes procSpin {
    to { transform: rotate(360deg); }
}
@keyframes procBoltPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(255,255,255,0.9)); }
}
@keyframes procSpark {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes procGridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}
@keyframes procCubeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-6px) rotate(45deg); opacity: 1; }
}
@keyframes procStatusTick {
    0% { opacity: 0.3; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(60px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0) rotate(-180deg); }
    to { transform: scale(1) rotate(0deg); }
}
@media (min-width: 769px) and (max-width: 1100px) {
    .home-reviews-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .home-why-grid { grid-template-columns: repeat(2, 1fr); }
    .home-why-stats { grid-template-columns: repeat(2, 1fr); }
    .home-reviews-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .nav { gap: 4px; }
    .card { padding: 40px 30px; }
    h1 { font-size: 32px; }
    .description { font-size: 14px; }
    .container { padding: 20px; }
    .home-why { margin-top: 48px; padding-top: 40px; }
    .home-why-title { font-size: 1.5rem; }
    .home-why-stats { grid-template-columns: repeat(2, 1fr); }
    .home-why-grid { grid-template-columns: 1fr; }
    .home-reviews { margin-top: 48px; padding-top: 40px; }
    .home-reviews-title { font-size: 1.5rem; }
    .home-reviews-masonry { grid-template-columns: 1fr; }
    .gc-panel-grid { grid-template-columns: 1fr; }
    .gc-intro { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 28px 24px 24px; }
    .gc-form-panel { padding: 24px; }
    .gc-page { padding: 24px 16px 48px; }
    .gc-title { font-size: 2rem; }
}
.page-game-copier .gc-page,
.page-shaders .gc-page {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    position: relative;
    z-index: 10;
    flex: 1;
}
.page-game-copier .gc-back,
.page-shaders .gc-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--neon-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, text-shadow 0.2s;
}
.page-game-copier .gc-back:hover,
.page-shaders .gc-back:hover {
    color: var(--neon-bright);
    text-shadow: var(--text-glow);
}
.page-game-copier .gc-panel,
.page-shaders .gc-panel {
    position: relative;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-neon-lg), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.page-game-copier .gc-panel-glow,
.page-shaders .gc-panel-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
    pointer-events: none;
}
.page-game-copier .gc-panel-grid,
.page-shaders .gc-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
.page-game-copier .gc-intro,
.page-shaders .gc-intro {
    padding: 36px 36px 32px;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.page-game-copier .gc-tool-badge,
.page-shaders .gc-tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--neon-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.page-game-copier .gc-tool-icon,
.page-shaders .gc-tool-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
}
.page-game-copier .gc-title,
.page-shaders .gc-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--neon-bright);
    letter-spacing: 0.02em;
    text-shadow: var(--text-glow);
    margin-bottom: 14px;
    text-align: left;
}
.page-game-copier .gc-lead,
.page-shaders .gc-lead {
    color: var(--neon-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 36ch;
}
.page-game-copier .gc-lead strong,
.page-shaders .gc-lead strong {
    color: var(--neon-soft);
    font-weight: 600;
}
.page-game-copier .gc-steps,
.page-shaders .gc-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.page-game-copier .gc-steps li,
.page-shaders .gc-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neon-dim);
    font-size: 13px;
}
.page-game-copier .gc-step-num,
.page-shaders .gc-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-neon);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.03);
}
.page-game-copier .gc-form-panel,
.page-shaders .gc-form-panel {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    min-width: 0;
}
.page-game-copier .gc-label,
.page-shaders .gc-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--neon-soft);
    text-transform: uppercase;
}
.page-game-copier .gc-form-group,
.page-shaders .gc-form-group {
    margin-bottom: 20px;
}
.page-game-copier .gc-form-panel input[type="password"],
.page-shaders .gc-form-panel input[type="password"] {
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}
.page-game-copier .gc-submit,
.page-shaders .gc-submit {
    background: transparent;
    color: var(--neon-bright);
    border: 1px solid var(--border-neon-hover);
    box-shadow: var(--shadow-neon);
    font-size: 16px;
    padding: 16px;
}
.page-game-copier .gc-submit:hover,
.page-shaders .gc-submit:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-bright);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}
.page-game-copier .gc-submit.is-loading,
.page-shaders .gc-submit.is-loading,
.page-game-copier .gc-submit:disabled,
.page-shaders .gc-submit:disabled {
    background: rgba(255, 255, 255, 0.04);
    color: var(--neon-muted);
}
.page-game-copier .gc-submit.is-loading:hover,
.page-shaders .gc-submit.is-loading:hover,
.page-game-copier .gc-submit:disabled:hover,
.page-shaders .gc-submit:disabled:hover {
    background: rgba(255, 255, 255, 0.04);
}
.page-game-copier .gc-footnote,
.page-shaders .gc-footnote {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--neon-dim);
    letter-spacing: 0.02em;
}
.page-game-copier .gc-form-panel .message,
.page-shaders .gc-form-panel .message {
    margin-top: 16px;
    text-align: center;
}
@media (max-width: 900px) {
    .page-game-copier .gc-panel-grid,
    .page-shaders .gc-panel-grid {
        grid-template-columns: 1fr;
    }
    .page-game-copier .gc-intro,
    .page-shaders .gc-intro {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
}
.gc-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.rlx-header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(20px);
}
.rlx-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.rlx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    justify-self: start;
}
.rlx-logo-mark svg {
    display: block;
    transform: rotate(-12deg);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.85));
}
.rlx-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--neon-bright);
    letter-spacing: 0.04em;
    text-shadow: var(--text-glow);
}
.rlx-pill-nav {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    justify-self: center;
}
.rlx-pill-link {
    padding: 8px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--neon-dim);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.rlx-pill-link:hover {
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.06);
}
.rlx-header-cta {
    justify-self: end;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.rlx-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
}
.rlx-drawer {
    position: fixed;
    inset: 0;
    z-index: 99990;
    pointer-events: none;
    visibility: hidden;
}
.rlx-drawer.open {
    pointer-events: auto;
    visibility: visible;
}
.rlx-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.rlx-drawer.open .rlx-drawer-backdrop {
    opacity: 1;
}
.rlx-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(560px, 100vw);
    height: 100%;
    display: flex;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-neon);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rlx-drawer.open .rlx-drawer-panel {
    transform: translateX(0);
}
.rlx-drawer-rail {
    flex: 0 0 88px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 8px;
    border-right: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.4);
}
.rlx-drawer-tab {
    padding: 12px 8px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--neon-dim);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.3;
}
.rlx-drawer-tab:hover {
    color: var(--neon-soft);
    background: rgba(255, 255, 255, 0.05);
}
.rlx-drawer-tab.active {
    color: var(--neon-bright);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-neon);
}
.rlx-drawer-content {
    flex: 1;
    padding: 28px 32px 40px;
    overflow-y: auto;
    position: relative;
}
.rlx-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-bright);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}
.rlx-drawer-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);
}
.rlx-drawer-pane { display: none; }
.rlx-drawer-pane.active { display: block; }
.rlx-drawer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 8px;
    text-shadow: var(--text-glow);
}
.rlx-drawer-lead {
    font-size: 14px;
    color: var(--neon-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.rlx-drawer-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}
.rlx-drawer-section h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neon-soft);
    margin-bottom: 8px;
}
.rlx-drawer-section p {
    font-size: 14px;
    color: var(--neon-dim);
    line-height: 1.65;
}
.rlx-drawer-list {
    list-style: none;
    padding: 0;
}
.rlx-drawer-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--neon-dim);
    border-bottom: 1px solid var(--border-subtle);
}
body.rlx-drawer-open { overflow: hidden; }
.rlx-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rlx-accordion-row {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.6);
    overflow: hidden;
}
.rlx-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
}
.rlx-accordion-head::-webkit-details-marker { display: none; }
.rlx-accordion-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-dim);
}
.rlx-accordion-status {
    font-size: 10px;
    font-weight: 600;
    color: var(--neon-soft);
}
.rlx-accordion-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-bright);
    margin-right: 6px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.rlx-accordion-body {
    padding: 0 16px 16px;
}
.rlx-accordion-body h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
}
.rlx-accordion-body p {
    font-size: 13px;
    color: var(--neon-muted);
    line-height: 1.55;
}
.rlx-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.rlx-bento--toolkit {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.rlx-bento-cell {
    display: block;
    padding: 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.7);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
.rlx-bento-cell:hover {
    border-color: var(--border-neon-hover);
    transform: translateY(-2px);
}
.rlx-bento-cell--wide {
    grid-column: span 2;
}
.rlx-bento-cell--muted {
    opacity: 0.55;
    pointer-events: none;
}
.rlx-bento-label {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-dim);
    margin-bottom: 8px;
}
.rlx-bento-cell h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
}
.rlx-bento-cell p {
    font-size: 12px;
    color: var(--neon-muted);
    line-height: 1.5;
}
.rlx-ribbon-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid var(--border-neon);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}
.rlx-ribbon-stats--drawer {
    margin-bottom: 20px;
    border-radius: 14px;
}
.rlx-ribbon-stat {
    flex: 1;
    min-width: 120px;
    padding: 14px 20px;
    font-size: 12px;
    color: var(--neon-muted);
    text-align: center;
    border-right: 1px solid var(--border-subtle);
}
.rlx-ribbon-stat:last-child { border-right: none; }
.rlx-ribbon-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--neon-bright);
    margin-bottom: 4px;
    text-shadow: var(--text-glow);
}
.rlx-tool-hero {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 8, 8, 0.95) 60%);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.rlx-tool-hero:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}
.rlx-tool-hero-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-neon);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    box-shadow: var(--shadow-neon);
}
.rlx-tool-hero-body h2 {
    font-size: 1.5rem;
    color: var(--neon-bright);
    margin-bottom: 10px;
}
.rlx-tool-hero-body p {
    font-size: 15px;
    color: var(--neon-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.rlx-tool-hero-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-soft);
}
.rlx-tool-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 0 8px;
    scrollbar-width: thin;
}
.rlx-tool-strip-card {
    flex: 0 0 min(320px, 85vw);
    padding: 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rlx-tool-strip-card:hover {
    border-color: var(--border-neon-hover);
    box-shadow: var(--shadow-neon-lg);
}
.rlx-tool-strip-card--soon {
    opacity: 0.5;
    pointer-events: none;
}
.rlx-tool-strip-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--neon-soft);
}
.rlx-tool-strip-card h3 {
    font-size: 1.1rem;
    color: var(--neon-bright);
    margin-bottom: 8px;
}
.rlx-tool-strip-card p {
    font-size: 13px;
    color: var(--neon-dim);
    line-height: 1.6;
}
.rlx-busy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(24px);
}
.rlx-busy-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85);
}
.rlx-busy-card--orbit {
    max-width: 380px;
    text-align: center;
}
.rlx-busy-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--neon-dim);
    margin-bottom: 6px;
}
.rlx-busy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-bright);
    margin-bottom: 8px;
    text-shadow: var(--text-glow);
}
.rlx-busy-label {
    font-size: 14px;
    color: var(--neon-soft);
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}
.rlx-busy-label:empty { display: none; }
.rlx-busy-body {
    display: block;
}
.rlx-busy-body--split {
    display: flex;
    align-items: center;
    gap: 24px;
}
.rlx-busy-body--split .rlx-timeline-wrap {
    flex: 1;
    min-width: 0;
}
.rlx-star-visual {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
}
.rlx-star-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.rlx-star-ring--outer {
    animation: procSpin 8s linear infinite;
    border-top-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}
.rlx-star-ring--inner {
    inset: 14px;
    animation: procSpin 4s linear infinite reverse;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}
.rlx-star-visual-core {
    position: absolute;
    inset: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-bright);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}
.rlx-star-visual-core svg {
    fill: #ffffff;
    animation: procBoltPulse 1.8s ease-in-out infinite;
}
.rlx-busy-meta {
    text-align: center;
    margin-top: 20px;
    padding-top: 4px;
    clear: both;
}
.rlx-busy-status {
    font-size: 14px;
    color: var(--neon-soft);
    margin-bottom: 6px;
}
.rlx-busy-status.rlx-status--tick {
    animation: procStatusTick 0.45s ease;
}
.rlx-busy-timer {
    font-size: 13px;
    color: var(--neon-dim);
    font-variant-numeric: tabular-nums;
}
.rlx-timeline-wrap {
    flex: 1;
    display: flex;
    gap: 12px;
    min-width: 0;
}
.rlx-timeline-track {
    flex: 0 0 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    position: relative;
    align-self: stretch;
    min-height: 140px;
}
.rlx-timeline-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), #ffffff);
    border-radius: 99px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}
.rlx-timeline {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}
.rlx-timeline-node {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--neon-dim);
    transition: color 0.3s;
}
.rlx-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: all 0.3s;
}
.rlx-timeline-node.active .rlx-timeline-dot,
.rlx-timeline-node.current .rlx-timeline-dot {
    border-color: var(--neon-bright);
    background: var(--neon-bright);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.rlx-timeline-node.done .rlx-timeline-dot {
    border-color: var(--neon-muted);
    background: var(--neon-muted);
}
.rlx-timeline-node.active,
.rlx-timeline-node.current {
    color: var(--neon-bright);
}
.rlx-timeline-node.done {
    color: var(--neon-muted);
}
.rlx-orbit {
    position: relative;
    width: min(100%, 280px);
    margin: 0 auto 12px;
}
.rlx-orbit-svg {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}
.rlx-orbit-track {
    stroke: rgba(255, 255, 255, 0.08);
}
.rlx-orbit-arc {
    stroke: #ffffff;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rlx-orbit-core {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-soft);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: var(--shadow-neon);
}
.rlx-orbit-phases {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-top: 14px;
    min-height: 28px;
    width: 100%;
}
.rlx-orbit-phase {
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    color: var(--neon-dim);
    transition: all 0.3s;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
}
.rlx-orbit-phase:not(.active):not(.current):not(.done) {
    opacity: 0.45;
}
.rlx-orbit-phase.active,
.rlx-orbit-phase.current {
    border-color: var(--border-neon);
    color: var(--neon-bright);
    background: rgba(255, 255, 255, 0.06);
}
.rlx-orbit-phase.done {
    color: var(--neon-muted);
}
.rlx-ok-sheet {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.rlx-ok-sheet.active {
    display: flex;
    animation: procFadeIn 0.35s ease;
}
.rlx-ok-backdrop,
.rlx-ok-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
}
.rlx-ok-panel {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 560px;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85);
    animation: procFadeIn 0.45s ease;
}
.rlx-ok-icon {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid var(--border-neon);
    color: var(--neon-soft);
}
.rlx-ok-icon--shaders svg {
    fill: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.65));
}
.rlx-ok-icon--game svg {
    stroke: #ffffff;
}
.rlx-ok-main {
    flex: 1;
    padding: 24px 28px;
    text-align: left;
}
.rlx-ok-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-dim);
    margin-bottom: 6px;
}
.rlx-ok-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-bright);
    margin-bottom: 8px;
}
.rlx-ok-label {
    font-size: 14px;
    color: var(--neon-soft);
    margin-bottom: 8px;
}
.rlx-ok-label:empty { display: none; }
.rlx-ok-message {
    font-size: 14px;
    color: var(--neon-muted);
    margin-bottom: 16px;
}
.rlx-ok-close,
.rlx-fail-close {
    padding: 10px 24px;
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--neon-bright);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.rlx-ok-close:hover,
.rlx-fail-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-neon-hover);
}
.rlx-fail-sheet {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}
.rlx-fail-sheet.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.rlx-fail-panel {
    position: relative;
    max-width: 400px;
    padding: 32px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 16px;
}
.rlx-fail-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--neon-muted);
}
.rlx-fail-title {
    font-size: 1.25rem;
    color: var(--neon-bright);
    margin-bottom: 10px;
}
.rlx-fail-msg {
    font-size: 14px;
    color: var(--neon-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.rlx-site-footer {
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.85);
    position: relative;
    z-index: 10;
}
.rlx-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.rlx-footer-brand p {
    font-size: 13px;
    color: var(--neon-dim);
    margin-top: 8px;
    line-height: 1.6;
}
.rlx-footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--neon-bright);
    text-shadow: var(--text-glow);
}
.rlx-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rlx-footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-dim);
    margin-bottom: 12px;
}
.rlx-footer-col a,
.rlx-footer-link {
    display: block;
    font-size: 14px;
    color: var(--neon-muted);
    text-decoration: none;
    padding: 4px 0;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}
.rlx-footer-col a:hover,
.rlx-footer-link:hover {
    color: var(--neon-bright);
}
.rlx-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: var(--neon-dim);
    border-top: 1px solid var(--border-subtle);
}
@media (max-width: 900px) {
    .rlx-header-inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .rlx-pill-nav {
        grid-column: 1 / -1;
        justify-self: center;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .rlx-header-cta { justify-self: end; }
    .rlx-footer-inner { grid-template-columns: 1fr; }
    .rlx-footer-cols { grid-template-columns: repeat(2, 1fr); }
    .rlx-tool-hero { flex-direction: column; }
    .rlx-busy-body--split {
        flex-direction: column;
        align-items: stretch;
    }
    .rlx-star-visual {
        align-self: center;
    }
    .rlx-drawer-panel { width: 100vw; }
    .rlx-drawer-rail { flex: 0 0 72px; }
}
@media (max-width: 600px) {
    .rlx-ribbon-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border-subtle); }
    .rlx-footer-cols { grid-template-columns: 1fr; }
    .rlx-ok-panel { flex-direction: column; }
    .rlx-ok-icon { flex: none; padding: 24px; border-right: none; border-bottom: 1px solid var(--border-subtle); }
}
@media print {
    body::after {
        display: none !important;
    }
}
