:root {
    --primary-color: #1a0f2e;
    --secondary-color: #ff4081;
    --accent-color: #9c27b0;
    --text-color: #f8f0ff;
    --hover-color: #ff79a9;
    --bg-color: #0d0819;
    --card-bg: #2a1b44;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-gradient: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    --footer-gradient: linear-gradient(135deg, #1a0f2e 0%, #2a1b44 100%);
    --font-main: 'Segoe UI', 'Helvetica Neue', -apple-system, sans-serif;
    --font-heading: 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif;
    --font-logo: 'Impact', 'Arial Black', sans-serif;
    --border-radius: 10px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 10px 30px rgba(255, 64, 129, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
    background-image: radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.top-banner {
    background: var(--header-gradient);
    padding: 0.6rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

header {
    background-color: var(--primary-color);
    padding: 0.8rem 4%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.l-hentai-x-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.l-hentai-x-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.l-hentai-x-logo:hover {
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.4);
    transform: translateY(-1px);
}

.l-hentai-x-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.l-hentai-x-logo-main {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.l-hentai-x-logo-main::before {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.l-hentai-x-logo-tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-left: 1.9rem;
}

.l-hentai-x-logo-img {
    display: none;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 0.65rem 1.1rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
}

.nav-link:hover {
    background: rgba(156, 39, 176, 0.15);
    color: var(--secondary-color);
    border-color: rgba(156, 39, 176, 0.4);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    border: none;
}

.nav-link i {
    font-size: 0.75rem;
    opacity: 0.9;
}

.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.language-btn {
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.2);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
    gap: 0.4rem;
}

.language-btn:hover {
    background: rgba(156, 39, 176, 0.2);
    color: var(--secondary-color);
    border-color: rgba(156, 39, 176, 0.4);
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 240px;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    padding: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.language-menu.show {
    display: grid;
}

.language-link {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.6rem;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(156, 39, 176, 0.15);
    font-family: var(--font-heading);
}

.language-link:hover {
    background: rgba(156, 39, 176, 0.15);
    color: var(--secondary-color);
    border-color: rgba(156, 39, 176, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 700;
    font-family: var(--font-heading);
}

.mobile-menu-btn:hover {
    transform: translateY(-1px);
}

main {
    margin-top: 100px;
    padding: 1.5rem 4%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    min-height: 60vh;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-align: center;
    padding-bottom: 0.8rem;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

h2 {
    font-size: 1.7rem;
    margin: 2rem 0 1.2rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.l-hentai-x-gallery-grid {
    column-count: 4;
    column-gap: 1rem;
    margin: 1.5rem 0;
}

.l-hentai-x-gallery-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid rgba(156, 39, 176, 0.2);
    break-inside: avoid;
    position: relative;
    display: inline-block;
    width: 100%;
}

.l-hentai-x-gallery-card:hover {
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.l-hentai-x-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.l-hentai-x-gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

.l-hentai-x-gallery-info {
    padding: 1rem;
    background-color: rgba(42, 27, 68, 0.95);
    text-align: center;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
}

.l-hentai-x-gallery-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.l-hentai-x-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.l-hentai-x-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.6rem;
    transition: var(--transition);
    border: 1px solid rgba(156, 39, 176, 0.15);
    text-align: center;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-hentai-x-item:hover {
    background: rgba(156, 39, 176, 0.15);
    border-color: rgba(156, 39, 176, 0.3);
}

.l-hentai-x-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-heading);
    width: 100%;
    text-align: center;
    line-height: 1.3;
    padding: 0.2rem;
}

.l-hentai-x-link:hover {
    color: var(--hover-color);
}

.l-hentai-x-link h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Стили для категорий - вертикальные картинки */
.l-hentai-x-cat-grid {
    column-count: 3;
    column-gap: 1.2rem;
    margin: 2rem 0;
}

.l-hentai-x-cat-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(156, 39, 176, 0.2);
    break-inside: avoid;
    position: relative;
    display: inline-block;
    width: 100%;
}

.l-hentai-x-cat-card:hover {
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.l-hentai-x-cat-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.l-hentai-x-cat-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.l-hentai-x-cat-info {
    padding: 1rem;
    background-color: rgba(42, 27, 68, 0.95);
    text-align: center;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
}

.l-hentai-x-cat-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-heading);
}

footer {
    background: var(--footer-gradient);
    padding: 2rem 4% 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
}

.footer-container-l-hentai-x {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.l-hentai-x-footer-links-col {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.l-hentai-x-footer-links-col h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
    position: relative;
}

.l-hentai-x-footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.l-hentai-x-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.l-hentai-x-footer-link {
    color: rgba(248, 240, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.l-hentai-x-footer-link:hover {
    background: rgba(156, 39, 176, 0.15);
    color: var(--secondary-color);
    border-color: rgba(156, 39, 176, 0.3);
}

.l-hentai-x-footer-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.copyright {
    text-align: center;
    margin: 2.5rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
    font-size: 0.9rem;
    color: rgba(248, 240, 255, 0.7);
    max-width: 100%;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.copyright p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.l-hentai-x-gallery-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 8, 25, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.l-hentai-x-slider-container {
    position: relative;
    width: 90%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-hentai-x-slider-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.l-hentai-x-slider-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2001;
}

.l-hentai-x-slider-close:hover {
    transform: scale(1.1);
}

.l-hentai-x-slider-prev,
.l-hentai-x-slider-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2001;
}

.l-hentai-x-slider-prev:hover,
.l-hentai-x-slider-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.l-hentai-x-slider-prev {
    left: 20px;
}

.l-hentai-x-slider-next {
    right: 20px;
}

.l-hentai-x-slider-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.95rem;
    background: rgba(156, 39, 176, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-family: var(--font-heading);
}

.l-hentai-x-info-section {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.7), rgba(42, 27, 68, 0.9));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: var(--shadow);
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(248, 240, 255, 0.95);
}

/* Мобильные стили */
@media (max-width: 1200px) {
    .l-hentai-x-gallery-grid {
        column-count: 3;
    }
    .l-hentai-x-cat-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem 4%;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-top: 1px solid rgba(156, 39, 176, 0.3);
    }

    .main-nav.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .l-hentai-x-logo {
        padding: 0.4rem 0.8rem;
    }

    .l-hentai-x-logo-main {
        font-size: 1.5rem;
    }

    .l-hentai-x-logo-tagline {
        font-size: 0.7rem;
        margin-left: 1.7rem;
    }

    .l-hentai-x-gallery-grid {
        column-count: 2;
        column-gap: 0.8rem;
    }
    .l-hentai-x-cat-grid {
        column-count: 2;
        column-gap: 0.8rem;
    }

    .footer-container-l-hentai-x {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 80px;
        padding: 1.2rem 3%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .l-hentai-x-grid {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        gap: 0.4rem;
        margin: 1rem 0;
    }

    .l-hentai-x-item {
        padding: 0.3rem;
        min-height: 35px;
        border-radius: 4px;
        border: none;
        background: rgba(255, 255, 255, 0.03);
    }

    .l-hentai-x-item:hover {
        background: rgba(156, 39, 176, 0.1);
        border: none;
        transform: none;
    }

    .l-hentai-x-link {
        font-size: 0.85rem;
        padding: 0.1rem;
        color: var(--secondary-color);
        text-decoration: none;
    }

    .l-hentai-x-link:hover {
        color: var(--hover-color);
    }

    .l-hentai-x-link h4 {
        font-size: 0.85rem;
        line-height: 1.1;
        font-weight: 600;
        margin: 0;
    }

    .l-hentai-x-logo-main {
        font-size: 1.3rem;
    }

    .l-hentai-x-logo-main::before {
        font-size: 1.1rem;
    }

    .l-hentai-x-logo-tagline {
        font-size: 0.65rem;
        margin-left: 1.5rem;
    }

    .l-hentai-x-slider-prev,
    .l-hentai-x-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .l-hentai-x-slider-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
    
    .l-hentai-x-cat-grid {
        column-count: 2;
        column-gap: 0.6rem;
    }
}

@media (max-width: 600px) {
    .l-hentai-x-gallery-grid {
        column-count: 2;
        column-gap: 0.6rem;
    }
    .l-hentai-x-cat-grid {
        column-count: 2;
        column-gap: 0.6rem;
    }

    .l-hentai-x-grid {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        gap: 0.3rem;
        margin: 0.8rem 0;
    }

    .l-hentai-x-item {
        padding: 0.25rem;
        min-height: 32px;
        border-radius: 3px;
    }

    .l-hentai-x-link {
        font-size: 0.8rem;
        padding: 0.08rem;
    }

    .l-hentai-x-link h4 {
        font-size: 0.8rem;
        line-height: 1;
    }

    .l-hentai-x-logo {
        padding: 0.3rem 0.6rem;
    }

    .l-hentai-x-logo-main {
        font-size: 1.1rem;
        gap: 0.3rem;
    }

    .l-hentai-x-logo-main::before {
        font-size: 0.9rem;
    }

    .l-hentai-x-logo-tagline {
        font-size: 0.6rem;
        margin-left: 1.2rem;
    }

    .footer-container-l-hentai-x {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .l-hentai-x-footer-links-col {
        padding: 1.2rem;
    }

    .l-hentai-x-footer-link {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .l-hentai-x-gallery-grid {
        column-count: 1;
    }
    .l-hentai-x-cat-grid {
        column-count: 1;
    }

    .l-hentai-x-grid {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        gap: 0.25rem;
        margin: 0.5rem 0;
    }

    .l-hentai-x-item {
        padding: 0.2rem;
        min-height: 20px;
    }

    .l-hentai-x-link {
        font-size: 0.75rem;
        padding: 0.05rem;
    }

    .l-hentai-x-link h4 {
        font-size: 0.65rem;
    }

    .l-hentai-x-logo {
        padding: 0.2rem 0.4rem;
        gap: 0.3rem;
    }

    .l-hentai-x-logo-main {
        font-size: 1rem;
        gap: 0.2rem;
    }

    .l-hentai-x-logo-main::before {
        font-size: 0.8rem;
    }

    .l-hentai-x-logo-tagline {
        font-size: 0.55rem;
        margin-left: 1rem;
        letter-spacing: 0.08em;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .l-hentai-x-slider-prev,
    .l-hentai-x-slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .l-hentai-x-slider-close {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .l-hentai-x-footer-link {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

@media (max-width: 360px) {
    .l-hentai-x-gallery-grid {
        column-count: 1;
    }
    .l-hentai-x-cat-grid {
        column-count: 1;
    }

    .l-hentai-x-grid {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .l-hentai-x-item {
        padding: 0.15rem;
        min-height: 28px;
    }

    .l-hentai-x-link {
        font-size: 0.7rem;
    }

    .l-hentai-x-link h4 {
        font-size: 0.7rem;
    }

    .l-hentai-x-logo-main {
        font-size: 0.9rem;
    }

    .l-hentai-x-logo-tagline {
        font-size: 0.5rem;
        margin-left: 0.8rem;
    }
}