:root {
    --ink: #e6eff5;
    --muted: #b2c2d0;
    --primary: #58b0ce;
    --primary-dark: #2b8fb0;
    --accent: #ffd166;
    --container-max: 1380px;
    --surface: #0f1724;
    --surface-muted: #131d2c;
    --surface-strong: #162235;
    --cta-surface: #1b2940;
    --border: #2d4056;
    --border-muted: #2f4259;
    --page-bg: radial-gradient(65% 50% at 20% 20%, rgba(33, 53, 80, 0.6), transparent 70%),
        radial-gradient(70% 60% at 75% 0%, rgba(52, 77, 110, 0.65), transparent 70%),
        radial-gradient(60% 60% at 30% 80%, rgba(26, 41, 64, 0.6), transparent 70%),
        #0b1220;
    --shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
    --card-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
    --shadow-contrast: 0 6px 0 rgba(0, 0, 0, 0.32);
    --inner-highlight: inset 0 0 0 2px rgba(136, 171, 207, 0.4);
    --radius-lg: 18px;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--page-bg);
    color: var(--ink);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 56px;
}

section {
    padding: 56px 0 64px;
}

section + section {
    margin-top: 32px;
}

img {
    max-width: 100%;
    display: block;
}

html {
    scroll-behavior: smooth;
}

.link,
a:not(.btn) {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(88, 176, 206, 0.6);
    transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

a:not(.btn):hover,
.link:hover {
    color: var(--primary);
    text-decoration-color: currentColor;
}

a:not(.btn):focus-visible,
.link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.surface {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-description {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.floating-menu {
    position: fixed;
    bottom: 16px;
    top: auto;
    right: max(20px, (100vw - var(--container-max)) / 2 + 20px);
    z-index: 1000;
    display: inline-flex;
    align-items: center;
}

.menu-shop {
    padding: 10px 18px;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.site-header {
    padding: 14px 0 8px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.site-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.site-nav a {
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.hero-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    padding: 40px 0 64px;
    position: relative;
}

.hero-frame {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-description {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    color: var(--ink);
    border: 2px solid var(--accent);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    box-shadow: var(--shadow-contrast);
}

.pill-soon {
    background: var(--surface);
    border-style: dashed;
    color: var(--primary-dark);
}

.hero-cta {
    background: var(--cta-surface);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    margin-top: 10px;
}

.cta-label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    text-decoration: none;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 800;
    border: 2px solid var(--border);
    box-shadow: 0 8px 0 rgba(13, 42, 58, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn .brand-icon,
.inline-icon {
    height: 22px;
    width: 22px;
    object-fit: contain;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.1));
}

.brand-icon.github {
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.1));
}

.btn-primary {
    background: var(--primary);
    color: #fdfefe;
}

.btn-secondary {
    background: var(--accent);
    color: var(--ink);
}

.btn-cta {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--surface-strong);
}

.btn-link {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    background: var(--surface-strong);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 rgba(13, 42, 58, 0.2);
}

.hero-logo-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0 26px;
    margin-bottom: 14px;
}

.hero-logo-banner .hero-title {
    font-size: 2.4rem;
    margin: 0;
    text-align: center;
}

.hero-logo-large {
    height: 210px;
    width: auto;
    filter: drop-shadow(0 8px 0 rgba(13, 42, 58, 0.2));
}

.hero-logo-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 18px;
    border: 2px solid var(--border);
    background: radial-gradient(circle at 20% 20%, var(--surface-strong) 0%, var(--surface) 40%, var(--surface-strong) 100%);
    box-shadow: 0 10px 0 rgba(13, 42, 58, 0.15);
}

.hero-tagline-emphasis {
    color: var(--primary-dark);
    letter-spacing: 7px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-image-frame {
    background: var(--surface-strong);
    border: 2px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--inner-highlight);
}

.hero-image {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 700 / 749;
}

/* Cards and grids */
.features-grid,
.products-grid,
.machines-grid,
.services-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.features-section .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.feature-header h3 {
    font-size: 1.2rem;
}

.about-media {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 920px;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--surface-strong);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about .features-grid {
    margin-top: 18px;
}

.feature-card,
.product-card,
.machine-card,
.service-item,
.resource-card {
    background: var(--surface-muted);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.resource-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-card:hover,
.product-card:hover,
.machine-card:hover,
.service-item:hover,
.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 0 rgba(13, 42, 58, 0.14);
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
}

.feature-icon {
    height: 72px;
    width: 72px;
    display: inline-grid;
    place-items: center;
    background: transparent;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-body {
    display: contents;
}

.feature-body h3 {
    grid-column: 2;
    align-self: center;
}

.feature-body p {
    grid-column: 1 / span 2;
}

.feature-body h3,
.machine-info h3,
.service-item h3,
.resource-card h3 {
    margin-bottom: 4px;
}

.product-card.highlight {
    background: linear-gradient(135deg, rgba(255, 226, 93, 0.16), var(--surface-muted));
}

.product-media {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.product-illustration {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 700 / 749;
}

.product-illustration-alt {
    aspect-ratio: 700 / 722;
}

.pill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
    padding: 0;
}

.pill-list .pill {
    box-shadow: none;
}

.machine-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.machine-icon {
    height: 48px;
    width: 48px;
    display: inline-grid;
    place-items: center;
    background: var(--surface-strong);
    border: 2px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-contrast);
    font-size: 1.2rem;
}

.resource-card p {
    margin-bottom: 0.5rem;
}

.resource-card .btn {
    margin-top: auto;
    align-self: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.audience-header {
    max-width: 760px;
    margin: 0 auto 10px;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    align-items: stretch;
}

.audience-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    justify-items: center;
    gap: 14px;
    padding: 18px;
    border: 2px solid rgba(12, 111, 139, 0.3);
    border-radius: calc(var(--radius) * 1.05);
    background: linear-gradient(170deg, rgba(12, 111, 139, 0.08), var(--surface-muted) 55%, var(--surface-strong));
    box-shadow: var(--shadow), 0 12px 30px rgba(13, 42, 58, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-align: center;
}

.audience-icon {
    height: 105px;
    width: 105px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 24px;
    font-size: 2.1rem;
    color: var(--primary-dark);
    box-shadow: none;
    margin: 0 auto 2px;
}

.audience-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    text-align: center;
}

.audience-list {
    width: 100%;
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
    text-align: left;
}

.audience-list strong {
    color: var(--primary-dark);
    font-weight: 900;
}

@supports (grid-template-columns: subgrid) {
    .audience-card {
        grid-template-columns: subgrid;
    }

    .audience-card > * {
        grid-column: 1 / -1;
    }

    .audience-list {
        grid-template-columns: subgrid;
    }
}


.ownership-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ownership-title {
    font-size: 2.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ownership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.ownership-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px;
    border: 2px dashed var(--border-muted);
    border-radius: var(--radius);
    background: var(--surface-muted);
}

.ownership-card h3 {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.ownership-highlight {
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 1px;
}

.ownership-icon {
    height: 44px;
    width: 44px;
    display: grid;
    place-items: center;
    background: var(--surface-strong);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-contrast);
}

/* Buy card */
.buy-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    align-items: start;
}

.buy-list {
    list-style: disc;
    margin-left: 18px;
    color: var(--muted);
}

.buy-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Contact */
.contact-item {
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 2px dashed var(--border-muted);
    border-radius: var(--radius);
    background: var(--surface-muted);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    box-shadow: 0 10px 0 rgba(13, 42, 58, 0.25);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-link {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px 40px;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.footer-nav a {
    font-weight: 600;
}

/* FAQ */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.faq-item {
    padding: 16px 18px;
    background: var(--surface-muted);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.faq-question {
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--muted);
    margin: 0;
    padding-left: 14px;
    border-left: 3px solid var(--border-muted);
}

/* Compatible titles */
.support-list .support-list-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 18px;
}


.support-search {
    margin: 10px auto 18px;
    max-width: 760px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), var(--surface));
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), var(--shadow);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    width: 100%;
}

.search-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(12, 111, 139, 0.15), var(--shadow-contrast);
    background: linear-gradient(135deg, rgba(88, 176, 206, 0.14), var(--surface-strong));
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(12, 111, 139, 0.16);
    font-size: 1rem;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    outline: none;
    font-weight: 700;
    padding: 10px 4px;
    box-shadow: none;
    transition: color 0.18s ease;
}

.search-input-wrap input:focus {
    box-shadow: inset 0 1px 0 rgba(13, 42, 58, 0.12);
}

.search-input-wrap input::placeholder {
    color: var(--muted);
}

.support-carousel {
    margin: 12px 0 24px;
}

.carousel-window {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--surface), var(--surface-muted));
    box-shadow: var(--shadow);
}

.title-carousel {
    --carousel-item-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    min-width: 100%;
    width: max-content;
    animation: carousel-scroll var(--carousel-duration, 24s) linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.carousel-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--surface-strong), var(--surface));
    border: 1px solid var(--border-muted);
    box-shadow: var(--shadow-contrast);
    color: var(--ink);
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    min-height: var(--carousel-item-height);
    cursor: pointer;
    transition: transform 0.16s ease, background-color 0.16s ease;
}

.carousel-window:hover .title-carousel,
.carousel-window:focus-within .title-carousel {
    animation-play-state: paused;
}

.carousel-item:hover {
    transform: translateY(-1px);
    background: var(--surface-strong);
}

.carousel-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@keyframes carousel-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .title-carousel {
        animation: none;
    }
}

.support-results {
    display: block;
}

.support-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--surface-muted);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-card.support-empty,
.support-card.support-error {
    background: var(--surface);
    border-style: dashed;
    color: var(--muted);
}

.support-card.support-error h3 {
    color: var(--primary);
}

.support-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.support-meta {
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--surface-strong), var(--surface-muted));
    border: 1px solid var(--border-muted);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-contrast);
}

.badge.video {
    color: var(--primary);
    border-color: var(--primary);
}

.badge.midnight {
    color: #9b51e0;
    border-color: #9b51e0;
}

.support-card.placeholder {
    animation: pulse 1.2s ease-in-out infinite;
    min-height: 120px;
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-muted);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.support-table th,
.support-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.support-table th {
    background: var(--surface);
    font-weight: 800;
    color: var(--ink);
}

.support-table tr:last-child td {
    border-bottom: none;
}

.support-table td {
    color: var(--muted);
    font-weight: 600;
}

.skeleton {
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(180, 216, 231, 0.4), rgba(180, 216, 231, 0.7), rgba(180, 216, 231, 0.4));
    background-size: 200% 100%;
    animation: shimmer 1.3s infinite;
}

.skeleton.title {
    height: 22px;
    width: 80%;
}

.skeleton.meta {
    height: 16px;
    width: 60%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.65; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    body {
        padding-top: 78px;
    }

    .floating-menu {
        right: 14px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .features-section .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 44px 0 78px;
    }

    .video-frame {
        max-width: none;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-frame {
        padding: 26px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .surface .features-grid,
    .surface .products-grid,
    .surface .machines-grid,
    .surface .services-grid,
    .surface .resources-grid,
    .surface .audience-grid {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    section {
        padding: 48px 0 92px;
    }

    section + section {
        margin-top: 36px;
    }

    .theme-toggle {
        padding: 8px 10px;
    }
}
