.fc-page {
    --fc-pink: #ef017f;
    --fc-blue: #0085de;
    --fc-green: #88c701;
    --fc-yellow: #f5b900;
    --fc-ink: #101827;
    --fc-muted: #697386;
    --fc-line: #e5edf5;
    --fc-soft: #f8fbfe;
    overflow: hidden;
    background: #fff;
    color: var(--fc-ink);
}

.fc-page a {
    text-decoration: none;
}

.fc-hero {
    position: relative;
    padding: 68px 0 54px;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(135deg, #fbfdff 0 58%, #effcf2);
    isolation: isolate;
}

.fc-hero::after {
    position: absolute;
    right: 7%;
    bottom: 30px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #edf8da;
    content: '';
    opacity: .8;
    z-index: 0;
}

.fc-hero > .container {
    position: relative;
    z-index: 1;
}

.fc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--fc-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.fc-kicker i {
    font-size: 12px;
}

.fc-hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #0b1020;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(62px, 10vw, 92px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: 0;
}

.fc-hero h1 span {
    color: var(--fc-pink);
}

.fc-hero > .container > p {
    max-width: 650px;
    margin: 0;
    color: var(--fc-muted);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

.fc-shell {
    padding: 38px 0 80px;
    background: var(--fc-soft);
}

.fc-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--fc-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(24, 35, 52, .06);
}

.fc-field label {
    display: block;
    margin: 0 0 7px;
    color: #596779;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fc-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #dbe5ee;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--fc-ink);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.fc-field select:focus {
    border-color: var(--fc-blue);
    box-shadow: 0 0 0 3px rgba(0, 133, 222, .12);
}

.fc-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0 0;
    color: var(--fc-muted);
    font-size: 13px;
    font-weight: 500;
}

.fc-status__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #edf8da;
    color: #568800;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.fc-card-wrap {
    max-width: 650px;
    margin: 24px auto 0;
}

.fc-card {
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(16, 24, 39, .09);
}

.fc-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    padding: 26px;
    border-bottom: 1px solid var(--fc-line);
    background: #fff;
}

.fc-card__image img {
    width: min(100%, 410px);
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(16, 24, 39, .08));
}

.fc-card__body {
    padding: 27px 30px 30px;
}

.fc-card__eyebrow {
    margin: 0 0 7px;
    color: var(--fc-pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fc-card__target {
    margin: 0;
    color: var(--fc-ink);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(50px, 8vw, 72px);
    font-weight: 600;
    line-height: .95;
}

.fc-card__source {
    margin: 8px 0 0;
    color: var(--fc-muted);
    font-size: 19px;
    font-weight: 400;
}

.fc-card__pronunciation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #7a8797;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
}

.fc-audio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    background: #fff0f8;
    color: var(--fc-pink);
    cursor: pointer;
    font-size: 15px;
    transition: transform .2s ease, background-color .2s ease;
}

.fc-audio:hover {
    background: #ffe0f0;
    transform: translateY(-2px);
}

.fc-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.fc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 23px;
    border: 0;
    border-radius: 999px;
    background: var(--fc-blue);
    box-shadow: 0 10px 24px rgba(0, 133, 222, .22);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.fc-button:hover {
    background: #00a2ff;
    box-shadow: 0 12px 28px rgba(0, 133, 222, .28);
    color: #fff;
    transform: translateY(-2px);
}

.fc-button--ghost {
    border: 2px solid #dbe5ee;
    background: #fff;
    box-shadow: none;
    color: var(--fc-ink);
}

.fc-button--ghost:hover {
    border-color: var(--fc-blue);
    background: #fff;
    color: var(--fc-blue);
    box-shadow: none;
}

.fc-empty,
.fc-locked {
    margin-top: 24px;
    padding: 48px 24px;
    border: 1px solid var(--fc-line);
    border-radius: 26px;
    background: #fff;
    color: var(--fc-muted);
    text-align: center;
}

.fc-empty i {
    display: block;
    margin-bottom: 12px;
    color: var(--fc-pink);
    font-size: 30px;
}

.fc-empty strong,
.fc-locked h2 {
    color: var(--fc-ink);
}

.fc-locked h2 {
    margin: 0 0 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.fc-locked p {
    max-width: 450px;
    margin: 0 auto 18px;
    color: var(--fc-muted);
    line-height: 1.6;
}

.fc-locked .fc-button {
    margin: 0 5px;
}

.fc-loading {
    display: none;
    padding: 65px 20px;
    color: var(--fc-muted);
    text-align: center;
}

.fc-loading.is-visible {
    display: block;
}

.fc-loading i {
    display: block;
    margin-bottom: 12px;
    color: var(--fc-blue);
    font-size: 26px;
}

.fc-credit {
    margin: 15px 0 0;
    color: #7c8b84;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 700px) {
    .fc-hero {
        padding: 45px 0 35px;
    }

    .fc-hero h1 {
        font-size: 64px;
    }

    .fc-hero > .container > p {
        font-size: 16px;
    }

    .fc-toolbar {
        grid-template-columns: 1fr;
    }

    .fc-status {
        align-items: flex-start;
        flex-direction: column;
    }

    .fc-card__image {
        min-height: 245px;
    }

    .fc-card__image img {
        height: 225px;
    }

    .fc-card__body {
        padding: 23px 21px 24px;
    }

    .fc-actions {
        flex-direction: column;
    }

    .fc-button {
        width: 100%;
    }

    .fc-locked .fc-button {
        margin: 4px 0;
    }
}

.fc-carousel {
    position: relative;
    outline: none;
    touch-action: pan-y;
    user-select: none;
}

.fc-carousel:focus-visible {
    border-radius: 28px;
    outline: 3px solid rgba(0, 133, 222, .22);
    outline-offset: 6px;
}

.fc-carousel__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 4px 10px;
    color: #7a8797;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fc-carousel__topline span:last-child {
    color: #568800;
    text-transform: none;
}

.fc-card:not(.is-active) {
    display: none;
}

.fc-card.is-active {
    display: block;
    animation: fc-card-enter .24s ease both;
}

.fc-card.is-dragging {
    cursor: grabbing;
    transform: translateX(var(--drag-x, 0px));
    transition: none;
}

@keyframes fc-card-enter {
    from { opacity: .35; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.fc-button:disabled {
    cursor: not-allowed;
    opacity: .4;
    transform: none;
}

.fc-button:disabled:hover {
    background: var(--fc-blue);
    box-shadow: 0 10px 24px rgba(0, 133, 222, .22);
    color: #fff;
}

.fc-button--ghost:disabled:hover {
    background: #fff;
    border-color: #dbe5ee;
    color: var(--fc-ink);
    box-shadow: none;
}

@media (max-width: 700px) {
    .fc-carousel__topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-right: 0;
        margin-left: 0;
    }

    .fc-carousel__topline span:last-child {
        font-size: 10px;
    }
}