* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #f3f3f3;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.drawer-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

#site-header,
#site-footer {
    width: 100%;
}

.site-header {
    position: relative;
    width: 100%;
    background: #f54c4c;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: visible;
}

.header-top {
    position: relative;
    width: 100%;
    max-width: 1240px;
    height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 3px 9px;
    border-radius: 5px;
    background: #fff;
    color: #f54c4c;
    text-decoration: none;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.header-brand {
    width: 100%;
    padding: 0 70px 8px;
    text-align: center;
}

.site-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    line-height: 1.1;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.header-tagline {
    margin: 6px 0 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    opacity: 0.96;
}

.header-share {
    position: relative;
    width: 100%;
    min-height: 43px;
    padding: 0 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-main-button {
    min-width: 105px;
    height: 30px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    line-height: 30px;
    font-weight: 800;
    transition: background 0.15s ease;
}

.share-main-button:hover,
.share-main-button[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.12);
}

.share-menu {
    position: absolute;
    top: 34px;
    left: 50%;
    z-index: 150;
    width: 205px;
    padding: 7px;
    transform: translateX(-50%) translateY(-5px);
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.share-menu.is-open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.share-option {
    width: 100%;
    min-height: 38px;
    padding: 7px 9px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.share-option:hover {
    background: #f3f3f3;
}

.share-option span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.share-option.share-facebook span {
    background: #1877f2;
}

.share-option.share-twitter span {
    background: #111;
}

.share-option.share-whatsapp span {
    background: #00b968;
}

.share-option.share-telegram span {
    background: #229ed9;
}

.share-option.share-email span {
    background: #888;
}

.share-option.share-copy span {
    background: #596273;
}

.share-message {
    position: absolute;
    top: -4px;
    left: calc(50% + 70px);
    z-index: 200;
    padding: 4px 9px;
    border-radius: 5px;
    background: #fff;
    color: #222;
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.share-message.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-button {
    position: absolute;
    top: 37px;
    right: 24px;
    z-index: 120;
    width: 44px;
    height: 44px;
    padding: 7px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 3px;
    background: #fff;
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(2px);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 320px;
    max-width: calc(100vw - 25px);
    height: auto;
    max-height: 100vh;
    padding: 25px 18px 20px;
    background: #fff;
    color: #222;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
}

.site-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.drawer-header {
    width: 100%;
    min-height: 100px;
    padding: 0 0 18px;
    border-bottom: 1px solid #f0dce2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.drawer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 3px 8px;
    border-radius: 5px;
    background: #ff5c82;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.drawer-logo {
    display: block;
    margin-top: 7px;
    color: #ff5c82;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.05;
    font-style: italic;
    font-weight: 500;
}

.drawer-close {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff0f4;
    color: #ff5c82;
    font-size: 27px;
    line-height: 1;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    background: #ffe1e9;
}

.drawer-nav {
    width: 100%;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 49px;
    padding: 10px 18px;
    border: 1px solid #ffcbd7;
    border-radius: 12px;
    background: #fff2f5;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.drawer-nav a:hover {
    background: #ffe8ee;
    border-color: #ffb7c8;
}

#scrollTopButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 500;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f54c4c;
    color: #fff;
    font-size: 22px;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

#scrollTopButton.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopButton:hover {
    background: #f54c4c;
    box-shadow: 0 6px 18px rgba(8, 11, 159, 0.35);
    transform: translateY(-2px);
}

#scrollTopButton:active {
    transform: scale(0.92);
}

#floatingShareButton {
    position: fixed;
    right: 20px;
    bottom: 74px;
    z-index: 500;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5c82, #e0325d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 92, 130, 0.4);
}

#floatingShareButton.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#floatingShareButton:hover {
    box-shadow: 0 6px 20px rgba(255, 92, 130, 0.55);
    transform: translateY(-2px);
}

#floatingShareButton:active {
    transform: scale(0.92);
}

#floatingShareButton svg {
    display: block;
    width: 20px;
    height: 20px;
}

.floating-share-menu {
    position: fixed;
    right: 74px;
    bottom: 74px;
    z-index: 550;
    width: 210px;
    background: #ffffff;
    border: 1px solid #edeef2;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.88) translateY(8px);
    transform-origin: bottom right;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease;
}

.floating-share-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.fsm-header {
    padding: 6px 10px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #88909f;
    border-bottom: 1px solid #f0f1f4;
    margin-bottom: 4px;
}

.floating-share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #2c3246;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
}

.floating-share-option:hover {
    background: #f4f5f8;
    color: #111;
}

.fso-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    color: #fff;
    flex-shrink: 0;
}

.fso-icon svg {
    display: block;
}

.fso-whatsapp {
    background: #25D366;
}

.fso-facebook {
    background: #1877F2;
}

.fso-twitter {
    background: #000000;
}

.fso-telegram {
    background: #229ED9;
}

.fso-email {
    background: #ea4335;
}

.fso-copy {
    background: #5f6368;
}

.floating-share-message {
    position: fixed;
    right: 74px;
    bottom: 80px;
    z-index: 560;
    padding: 6px 14px;
    border-radius: 8px;
    background: #1e2025;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.floating-share-message.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Post Hero / Intro */

.post-intro {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 22px;
    text-align: left;
}

.post-intro h1 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
}

.post-intro p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
}

/* Main */

main {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.generator {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.generator-input {
    position: sticky;
    top: 8px;
    z-index: 100;
    width: 100%;
    min-height: 78px;
    margin-bottom: 20px;
    padding: 0 55px 0 20px;
    background: #fff;
    border: 1px solid #ff6b6b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#textInput {
    width: 100%;
    height: 56px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    text-align: center;
    font-size: 17px;
}

#textInput::placeholder {
    color: #000000;
}

#clearInput {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 31px;
    height: 31px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: #f54c4c;
    color: #fff;
    font-size: 26px;
    line-height: 27px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clearInput:hover {
    background: #000000;
}

.font-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.font-card {
    position: relative;
    min-width: 0;
    min-height: 45px;
    padding: 13px 50px 16px 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f8b1b1;
    box-shadow: 0 2px 8px rgba(237, 141, 141, 0.07);
    overflow: visible;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.font-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.11);
}

.font-card:active {
    transform: scale(0.995);
}

.font-name {
    display: block;
    margin-bottom: 9px;
    color: #beb5b5;
    font-size: 7px;
    line-height: 1.3;
    text-transform: uppercase;
}

.font-result {
    min-width: 0;
    color: #111;
    font-family: serif;
    font-size: 19px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.font-actions {
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 5;
    display: flex;
    align-items: center;
}

.font-copy {
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #bcc1c5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-copy:hover {
    color: #777;
    background: #f4f4f4;
}

.font-copy:active {
    transform: scale(0.94);
}

.font-copy svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.copy-notification {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 7px);
    z-index: 300;
    transform: translateX(-50%);
    padding: 4px 9px;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

.copy-notification::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #222;
}

.font-ad {
    width: 100%;
    min-height: 100px;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.font-ad .adsbygoogle {
    display: block;
    width: 100%;
    min-width: 0;
}

.more-fonts-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0 35px;
}

.more-fonts-button {
    min-width: 170px;
    padding: 10px 20px;
    border: 1px solid #6047ff;
    border-radius: 7px;
    background: #fff;
    color: #6047ff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.more-fonts-button:hover {
    background: #6047ff;
    color: #fff;
}

.related-posts {
    width: 100%;
    max-width: 900px;
    margin: 45px auto 25px;
    padding: 24px 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e9ecf2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.related-posts h2 {
    margin: 0 0 18px;
    color: #1a1a2e;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts h2::before {
    content: "✦";
    color: #ff5c82;
    font-size: 18px;
}

.related-names-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.related-name-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1 1 calc(20% - 12px);
    min-width: 130px;
    max-width: calc(33.333% - 12px);
    padding: 13px 18px;
    background: #f8f9fc;
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    color: #2c3246;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-name-chip:hover {
    background: #ffffff;
    border-color: #ff5c82;
    color: #ff5c82;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 92, 130, 0.16);
}

.related-name-chip .rnc-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-name-chip .rnc-arrow {
    font-size: 14px;
    color: #9aa1b2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.related-name-chip:hover .rnc-arrow {
    color: #ff5c82;
    transform: translateX(3px);
}

.content-section {
    width: 100%;
    max-width: 900px;
    margin: 45px auto;
}

.content-section article {
    width: 100%;
}

li {
    margin-left: 10px;
}

.content-section h1 {
    margin: 0 0 18px;
    color: #222;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
}

.content-section h2 {
    margin: 32px 0 12px;
    color: #222;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.content-section h3 {
    margin: 25px 0 10px;
    color: #222;
    font-size: 20px;
    line-height: 1.35;
}

.content-section p {
    margin: 0 0 18px;
    color: #444;
    font-size: 16px;
    line-height: 1.75;
}

.content-section ul,
.content-section ol {
    margin: 0 0 20px;
    padding-left: 25px;
    color: #444;
}

.content-section li {
    margin-bottom: 7px;
}

.content-section a {
    color: #4d38d8;
}

.content-example {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    color: #111;
    font-size: 25px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.06);
}

.content-image {
    width: 100%;
    margin: 25px 0;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

.site-footer {
    width: 100%;
    margin-top: 50px;
    background: #f54c4c;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    min-height: 70px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.15s ease;
}

.footer-nav a:hover {
    color: #fff;
    opacity: 0.85;
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1023px) {
    main {
        padding: 16px;
    }

    .header-brand {
        padding-left: 70px;
        padding-right: 70px;
    }

    .site-logo {
        font-size: 32px;
    }

    .related-name-chip {
        flex: 1 1 calc(33.333% - 12px);
        max-width: calc(50% - 12px);
    }

    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .header-top {
        height: 35px;
    }

    .header-badge {
        font-size: 8px;
        min-height: 17px;
    }

    .header-brand {
        padding: 1px 55px 8px;
    }

    .site-logo {
        font-size: 28px;
    }

    .header-tagline {
        margin-top: 7px;
        font-size: 11px;
        line-height: 1.5;
    }

    .header-share {
        min-height: 42px;
        padding: 0 12px 10px;
    }

    .share-main-button {
        height: 29px;
        min-width: 100px;
        font-size: 12px;
    }

    .share-menu {
        top: 32px;
        width: 190px;
    }

    .share-message {
        left: auto;
        right: 12px;
    }

    .mobile-menu-button {
        top: 31px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-button span {
        width: 25px;
    }

    .site-drawer {
        width: 310px;
        max-width: calc(100vw - 22px);
        padding: 22px 17px 18px;
    }

    .drawer-header {
        min-height: 94px;
        padding-bottom: 16px;
    }

    .drawer-logo {
        font-size: 27px;
    }

    .drawer-nav {
        padding-top: 22px;
        gap: 9px;
    }

    .drawer-nav a {
        min-height: 47px;
        padding: 9px 17px;
        font-size: 14px;
    }

    #scrollTopButton {
        right: 14px;
        bottom: 14px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
    }

    #floatingShareButton {
        right: 14px;
        bottom: 62px;
        width: 40px;
        height: 40px;
    }

    #floatingShareButton svg {
        width: 18px;
        height: 18px;
    }

    .floating-share-menu {
        right: 60px;
        bottom: 62px;
        width: 185px;
    }

    .floating-share-message {
        right: 60px;
        bottom: 68px;
    }

    main {
        padding: 12px;
    }

    .generator-input {
        top: 6px;
        min-height: 70px;
        margin-bottom: 14px;
        padding: 0 45px 0 12px;
        border-radius: 9px;
    }

    #textInput {
        height: 50px;
        font-size: 16px;
    }

    #clearInput {
        right: 9px;
        width: 29px;
        height: 29px;
        font-size: 25px;
    }

    .font-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .font-card {
        min-height: 88px;
        padding: 12px 48px 15px 14px;
    }

    .font-name {
        font-size: 10px;
    }

    .font-result {
        font-size: 18px;
    }

    .font-actions {
        top: 7px;
        right: 7px;
    }

    .font-copy {
        width: 29px;
        height: 29px;
    }

    .font-ad {
        min-height: 100px;
    }

    .more-fonts-wrapper {
        margin: 22px 0 30px;
    }

    .more-fonts-button {
        min-width: 160px;
        padding: 10px 18px;
    }

    .related-posts {
        margin: 30px 0 20px;
        padding: 18px 16px;
        border-radius: 12px;
    }

    .related-posts h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .related-names-grid {
        gap: 8px;
    }

    .related-name-chip {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
        max-width: 100%;
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .content-section {
        margin-top: 35px;
        margin-bottom: 35px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .content-section h1 {
        font-size: 27px;
        line-height: 1.3;
    }

    .content-section h2 {
        margin-top: 28px;
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 19px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .content-example {
        padding: 16px;
        font-size: 21px;
    }

    .content-image {
        margin: 20px 0;
    }

    .footer-container {
        min-height: auto;
        padding: 20px 14px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-nav {
        justify-content: center;
        gap: 10px 18px;
    }

    .footer-nav a {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .site-logo {
        font-size: 25px;
    }

    .header-brand {
        padding-left: 48px;
        padding-right: 48px;
    }

    .header-tagline {
        font-size: 10px;
    }

    .share-main-button {
        min-width: 95px;
        font-size: 11px;
    }

    .site-drawer {
        width: 300px;
        max-width: calc(100vw - 18px);
        padding-left: 15px;
        padding-right: 15px;
    }

    .drawer-logo {
        font-size: 25px;
    }

    .drawer-nav a {
        min-height: 45px;
    }

    .font-result {
        font-size: 17px;
    }
}

@media (min-width: 1440px) {

    .header-top,
    .footer-container {
        max-width: 1280px;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #6047ff;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

/* =========================
   Content From "¿Qué puedes..."
========================= */

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    margin: 40px 0 15px;
    font-size: 25px;
    line-height: 1.4;
    color: #222;
}

.content-section p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


/* Example */

.example-card {
    margin: 22px 0 32px;
    padding: 18px 20px;
    border: 1px solid #c07c7c;
    border-radius: 10px;
    background: #fafafa;
}

.example-label {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.example-text {
    padding: 10px 5px;
    border-color: 1px solid #2f0606;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
}

.example-text:last-child {
    border-bottom: none;
}


/* Steps */

.steps-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 9px;
    background: #fff;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.step-item p {
    margin: 4px 0 0;
    font-size: 14px;
}


/* Image */

.content-image {
    margin: 30px 0;
}

.content-image img {
    display: block;
    width: 800px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.content-image-letra img {
    display: block;
    width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}


/* Use Cases */

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0 30px;
}

.use-case {
    padding: 18px;
    border: 1px solid #1f1a1a;
    border-radius: 9px;
    background: #fff;
}

.use-case h3 {
    margin: 0 0 7px;
    font-size: 17px;
    color: #f54c4c;
}

.use-case p {
    font-size: 14px;
}

.use-example {
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
}


/* Style Examples */

.style-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0 30px;
}

.style-examples>div {
    padding: 15px;
    border: 1px solid #c1a4a4;
    border-radius: 8px;
}

.style-examples span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #777;
}

.style-examples strong {
    display: block;
    font-size: 23px;
    font-weight: 500;
    word-break: break-word;
}


/* Explore */

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 30px;
}

.explore-links a {
    padding: 9px 13px;
    border: 1px solid #ddd;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.explore-links a:hover {
    background: #f5f5f5;
}


/* FAQ */

.faq-list {
    margin-top: 20px;
}

.faq-list details {
    margin-bottom: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
}

.faq-list summary {
    padding: 15px 17px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.faq-list p {
    padding: 0 17px;
    font-size: 15px;
}

.faq-example {
    margin: 0 17px 17px;
    padding: 10px;
    border-radius: 6px;
    background: #f7f7f7;
    text-align: center;
    font-size: 21px;
}


/* Mobile */

@media (max-width: 600px) {

    .content-section h2 {
        font-size: 22px;
        margin-top: 34px;
    }

    .content-section p {
        font-size: 15px;
    }

    .example-card {
        padding: 15px;
    }

    .example-text {
        font-size: 16px;
    }

    .use-cases,
    .style-examples {
        grid-template-columns: 1fr;
    }

}