.hog-block {
    color: inherit;
}

.hog-top-block {
    display: block;
}

.hog-top-heading {
    margin: 0 0 var(--wp--preset--spacing--20, 1rem);
}

.hog-top-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.hog-top-item {
    margin: 0 0 0.75em;
    display: flex;
    align-items: center;
    gap: 0.75em;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hog-item-link {
    display: flex;
    align-items: center;
    gap: 0.75em;
    color: inherit;
    text-decoration: none;
}

.hog-top-rank {
    min-width: 3ch;
    margin: 0;
}

.hog-top-art {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.hog-top-embed {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.hog-top-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hog-top-text {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.hog-top-title-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hog-top-title-row .hog-top-title {
    min-width: 0;
    flex: 1 1 auto;
}

.hog-top-title-row .hog-item-links {
    margin-top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.hog-item-links {
    display: inline-flex;
    align-items: center;
    gap: var(--hog-icon-gap, 0.35rem);
    margin-top: 0.35rem;
}

.hog-item-link-icon img {
    width: var(--hog-icon-size, 16px);
    height: var(--hog-icon-size, 16px);
    display: block;
}

.hog-top-toggle {
    margin-top: 0.35rem;
}

.hog-top-more {
    border: 0;
    background: transparent;
    padding: 0;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.hog-top-title,
.hog-top-creator {
    margin: 0;
}

.hog-top-move {
    margin-left: auto;
}

.hog-vote-block {
    display: block;
}

.hog-vote-block [class~="hog-plus-only"],
.hog-vote-block [class~="hog-hide-free"] {
    display: none !important;
}

.hog-vote-block.hog-tier-plus [class~="hog-plus-only"],
.hog-vote-block.hog-tier-plus [class~="hog-hide-free"],
.hog-vote-block[data-hog-user-tier="plus"] [class~="hog-plus-only"],
.hog-vote-block[data-hog-user-tier="plus"] [class~="hog-hide-free"] {
    display: revert !important;
}

.hog-vote-block [class~="hog-free-only"],
.hog-vote-block [class~="hog-hide-plus"] {
    display: none !important;
}

.hog-vote-block.hog-tier-free [class~="hog-free-only"],
.hog-vote-block.hog-tier-free [class~="hog-hide-plus"],
.hog-vote-block[data-hog-user-tier="free"] [class~="hog-free-only"],
.hog-vote-block[data-hog-user-tier="free"] [class~="hog-hide-plus"] {
    display: revert !important;
}

.hog-editor-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hog-editor-list {
    max-height: 280px;
    overflow: auto;
    border: 1px solid #ddd;
    padding: 8px;
    background: #fff;
}

.hog-color-control {
    margin-bottom: 12px;
}

.hog-color-label {
    margin: 0 0 6px;
    font-size: 12px;
}

.hog-icon-control {
    margin-bottom: 12px;
}

.hog-icon-control-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hog-icon-preview {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #fff;
}

.hog-vote-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hog-vote-block[data-layout="cards"] .hog-vote-grid,
.hog-editor-preview-inner.is-layout-cards .hog-vote-grid {
    --hog-vote-grid-gap: 1rem;
    display: grid;
    gap: var(--hog-vote-grid-gap);
    grid-template-columns: repeat(
        auto-fit,
        minmax(
            min(
                100%,
                max(
                    180px,
                    calc((100% - (var(--hog-vote-cards-per-row, 4) - 1) * var(--hog-vote-grid-gap)) / var(--hog-vote-cards-per-row, 4))
                )
            ),
            1fr
        )
    );
}

.hog-vote-block {
    --hog-brand-black: var(--wp--preset--color--black, #050505);
    --hog-brand-light: #fafafa;
    --hog-brand-aqua: #BEE2F2;
    --hog-brand-orange: #EC7D3C;
    color: var(--hog-brand-light);
}

.hog-vote-block-inner {
    border: var(--hog-block-border-width, 0) solid var(--hog-block-border-color, transparent);
    border-radius: var(--hog-block-radius, 0);
    background: var(--hog-block-bg, transparent);
    padding: var(--hog-block-padding-top, 0) var(--hog-block-padding-right, 0) var(--hog-block-padding-bottom, 0) var(--hog-block-padding-left, 0);
}

.hog-vote-gated {
    position: relative;
    isolation: isolate;
}

.hog-vote-gated-content {
    filter: blur(var(--hog-gate-blur, 6px));
    transform: scale(1.01);
    transform-origin: center top;
    pointer-events: none;
    user-select: none;
}

.hog-vote-gate-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 3vw, 1.5rem);
}

.hog-vote-gate-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hog-gate-dim-opacity, 0.62));
}

.hog-vote-gate-card {
    position: relative;
    z-index: 1;
    width: min(92%, 460px);
    border-radius: 18px;
    border: 1px solid rgba(190, 226, 242, 0.55);
    background: rgba(5, 5, 5, 0.9);
    padding: clamp(1rem, 3vw, 1.4rem);
    text-align: center;
    color: var(--hog-gate-text-color, var(--hog-brand-light));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
}

.hog-vote-gate-title {
    margin: 0;
    color: inherit;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.2;
}

.hog-vote-gate-text {
    margin: 0.55rem auto 0;
    max-width: 34ch;
    color: inherit;
    opacity: 0.92;
}

.hog-vote-gate-copy {
    color: inherit;
}

.hog-vote-gate-copy h1,
.hog-vote-gate-copy h2,
.hog-vote-gate-copy h3,
.hog-vote-gate-copy h4,
.hog-vote-gate-copy h5,
.hog-vote-gate-copy h6,
.hog-vote-gate-copy p {
    color: inherit;
}

.hog-vote-gate-actions {
    margin-top: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hog-vote-gate-btn.wp-element-button,
.hog-vote-gate-btn {
    text-decoration: none;
}

.hog-vote-gate-login.wp-element-button,
.hog-vote-gate-login .wp-element-button,
.hog-vote-gate-login {
    border-color: var(--hog-gate-login-border);
    background: var(--hog-gate-login-bg);
    color: var(--hog-gate-login-color);
}

.hog-vote-gate-social {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.hog-vote-gate-card .ngt-social-login__title {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hog-gate-text-color, var(--hog-brand-light));
}

.hog-vote-gate-social .button,
.hog-vote-gate-social a.button {
    margin-right: 8px;
    margin-bottom: 8px;
}

.hog-vote-gate-social a.button-social-login.button-social-login-facebook,
.hog-vote-gate-social a.button-social-login.button-social-login-google {
    font-size: 0.618rem !important;
    letter-spacing: 0.25em !important;
    font-weight: 700 !important;
    color: #fafafa !important;
    text-transform: uppercase !important;
    border: 0;
    background: none !important;
    box-shadow: none;
    margin: 0 8px 8px;
}

.hog-vote-gate-social a.button-social-login.button-social-login-facebook:visited,
.hog-vote-gate-social a.button-social-login.button-social-login-google:visited,
.hog-vote-gate-social a.button-social-login.button-social-login-facebook:hover,
.hog-vote-gate-social a.button-social-login.button-social-login-google:hover,
.hog-vote-gate-social a.button-social-login.button-social-login-facebook:focus,
.hog-vote-gate-social a.button-social-login.button-social-login-google:focus {
    color: #fafafa !important;
    text-transform: uppercase !important;
}

.hog-vote-gate-social a.button-social-login.button-social-login-facebook .si,
.hog-vote-gate-social a.button-social-login.button-social-login-google .si {
    width: 2.5em;
    height: 2.5em;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5em 1.5em;
}

.hog-vote-gate-social a.button-social-login.button-social-login-facebook .si {
    background-image: url("/wp-content/uploads/2023/11/simple-icons_facebook-2.svg") !important;
}

.hog-vote-gate-social a.button-social-login.button-social-login-google .si {
    background-image: url("/wp-content/uploads/2023/11/logos_google-icon.svg") !important;
}

.hog-vote-gate-social-placeholder {
    font-size: 0.75rem;
    opacity: 0.8;
}

.hog-vote-gate-login-form {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    text-align: center;
}

.hog-vote-gate-login-form .wp-block-group,
.hog-vote-gate-login-form .wp-block-buttons,
.hog-vote-gate-login-form .wp-block-button,
.hog-vote-gate-login-form p {
    margin-top: 0;
    margin-bottom: 0;
}

.hog-vote-gate-login-form .wp-block-buttons {
    justify-content: center;
}

.hog-vote-gate-login-form .ngt-auth-email,
.hog-vote-gate-login-form .ngt-auth-password {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
    width: 100%;
    max-width: 100%;
}

.hog-vote-gate-login-form .ngt-auth-password[hidden],
.hog-vote-gate-actions[hidden] {
    display: none !important;
}

.hog-vote-gate-login-form .ngt-auth-email__label,
.hog-vote-gate-login-form .ngt-auth-password__label,
.hog-vote-gate-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hog-gate-text-color, var(--hog-brand-light));
    opacity: 0.92;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.hog-vote-gate-input {
    width: min(100%, 420px);
    margin-inline: auto;
    border: 1px solid var(--hog-gate-field-border, #fafafa) !important;
    border-radius: 10px;
    background: var(--hog-gate-field-bg, transparent);
    color: var(--hog-gate-field-color, var(--hog-gate-text-color, var(--hog-brand-light))) !important;
    min-height: 40px;
    padding: 0.5rem 0.6rem;
    font: inherit;
    caret-color: var(--hog-gate-field-color, var(--hog-gate-text-color, var(--hog-brand-light)));
    -webkit-text-fill-color: var(--hog-gate-field-color, var(--hog-gate-text-color, var(--hog-brand-light)));
}

.hog-vote-gate-input::placeholder {
    color: var(--hog-gate-field-color, var(--hog-gate-text-color, var(--hog-brand-light))) !important;
    opacity: 0.72;
}

.hog-vote-gate-submit.wp-element-button,
.hog-vote-gate-submit {
    margin-top: 0.08rem;
}

.hog-vote-gate-login[disabled],
.hog-vote-gate-login .wp-element-button[disabled],
.hog-vote-gate-login[aria-busy="true"] {
    opacity: 0.72;
    cursor: progress;
}

.hog-vote-gate-join.wp-element-button,
.hog-vote-gate-join .wp-element-button,
.hog-vote-gate-join {
    width: 100%;
    justify-content: center;
    border-color: var(--hog-gate-join-border);
    background: var(--hog-gate-join-bg);
    color: var(--hog-gate-join-color);
}

.hog-vote-gate-message {
    margin-top: 0.7rem;
    max-width: 560px;
    margin-inline: auto;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
    color: inherit;
}

.hog-vote-gate-message.is-error {
    color: #ffb3b3;
}

.hog-vote-gate-message.is-success {
    color: var(--hog-brand-aqua);
}

.hog-vote-gate-message.is-info,
.hog-vote-gate-message.is-pending {
    color: var(--hog-brand-light);
}

.hog-vote-gate-message .ngt-auth-social {
    margin-top: 0.55rem;
}

.hog-vote-gate-message .ngt-auth-links {
    margin-top: 0.5rem;
}

.hog-vote-gate-message .ngt-auth-links a {
    color: inherit;
    text-decoration: underline;
}

.hog-editor-gate-preview {
    min-height: 220px;
}

.hog-editor-gate-preview .hog-vote-gate-overlay::before {
    background: rgba(0, 0, 0, 0.42);
}

.hog-editor-gate-placeholder {
    min-height: 180px;
    border: 1px dashed rgba(190, 226, 242, 0.42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 250, 250, 0.8);
    font-size: 0.85rem;
}

.hog-content-gate {
    display: block;
}

.hog-editor-content-gate {
    border: 1px dashed rgba(190, 226, 242, 0.42);
    border-radius: 12px;
    padding: 0.8rem;
}

.hog-page-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.85rem, 4vw, 1.6rem);
}

.hog-page-gate-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(var(--hog-gate-blur, 8px));
    background: rgba(0, 0, 0, var(--hog-gate-dim-opacity, 0.68));
    pointer-events: none;
}

.hog-page-gate-overlay .hog-vote-gate-card {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.hog-vote-card {
    border: var(--hog-card-border-width, 1px) solid var(--hog-card-border-color, var(--hog-brand-aqua));
    border-radius: var(--hog-card-radius, 16px);
    background: var(--hog-card-bg, rgba(190, 226, 242, 0.12));
    padding: 0.7rem 0.8rem;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: center;
}

.hog-vote-block[data-layout="cards"] .hog-vote-card,
.hog-editor-preview-inner.is-layout-cards .hog-vote-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.7rem;
}

.hog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hog-vote-block[data-layout="cards"] .hog-card-link,
.hog-editor-preview-inner.is-layout-cards .hog-card-link {
    width: 100%;
}

.hog-vote-card-main {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.hog-vote-block[data-layout="cards"] .hog-vote-card-main,
.hog-editor-preview-inner.is-layout-cards .hog-vote-card-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.hog-vote-copy {
    min-width: 0;
}

.hog-vote-title-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hog-vote-title-row .hog-vote-title {
    min-width: 0;
    flex: 1 1 auto;
}

.hog-vote-title-row .hog-item-links {
    margin-top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.hog-vote-block[data-layout="cards"] .hog-vote-copy,
.hog-editor-preview-inner.is-layout-cards .hog-vote-copy {
    width: 100%;
}

.hog-vote-art img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 240ms ease;
}

.hog-vote-block[data-layout="cards"] .hog-vote-art,
.hog-editor-preview-inner.is-layout-cards .hog-vote-art {
    width: 100%;
}

.hog-vote-block[data-layout="cards"] .hog-vote-art img,
.hog-editor-preview-inner.is-layout-cards .hog-vote-art img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

.hog-vote-embed iframe {
    width: 56px;
    height: 56px;
    min-height: 56px;
    border: 0;
    display: block;
    border-radius: 8px;
}

.hog-vote-block[data-layout="cards"] .hog-vote-embed,
.hog-editor-preview-inner.is-layout-cards .hog-vote-embed {
    width: 100%;
}

.hog-vote-block[data-layout="cards"] .hog-vote-embed iframe,
.hog-editor-preview-inner.is-layout-cards .hog-vote-embed iframe {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

.hog-vote-title {
    margin: 0;
    font-weight: 700;
    color: var(--hog-block-text-color, var(--hog-vote-title-color, var(--hog-brand-light)));
    font-size: var(--hog-vote-title-size, inherit);
    font-family: var(--hog-vote-title-family, inherit);
    font-weight: var(--hog-vote-title-weight, 700);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hog-vote-block[data-layout="cards"] .hog-vote-title,
.hog-editor-preview-inner.is-layout-cards .hog-vote-title {
    white-space: normal;
}

.hog-vote-creator {
    margin: 0.15rem 0 0;
    opacity: 1;
    font-size: var(--wp--preset--font-size--small, 0.9rem);
    color: var(--hog-block-text-color, var(--hog-vote-creator-color, var(--hog-brand-light)));
    font-size: var(--hog-vote-creator-size, var(--wp--preset--font-size--small, 0.9rem));
    font-family: var(--hog-vote-creator-family, inherit);
    font-weight: var(--hog-vote-creator-weight, 400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hog-vote-block[data-layout="cards"] .hog-vote-creator,
.hog-editor-preview-inner.is-layout-cards .hog-vote-creator {
    white-space: normal;
}

.hog-vote-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hog-vote-block[data-layout="cards"] .hog-vote-controls,
.hog-editor-preview-inner.is-layout-cards .hog-vote-controls {
    justify-content: flex-start;
}

.hog-vote-block[data-layout="cards"] .hog-vote-card,
.hog-editor-preview-inner.is-layout-cards .hog-vote-card,
.hog-vote-block[data-layout="cards"] .hog-vote-available,
.hog-editor-preview-inner.is-layout-cards .hog-vote-available {
    background: transparent;
}

.hog-vote-block[data-layout="cards"] .hog-vote-note,
.hog-vote-block[data-layout="cards"] .hog-vote-empty,
.hog-vote-block[data-layout="cards"] .hog-vote-complete {
    background: transparent;
}

.hog-vote-available {
    opacity: 0.92;
    margin-bottom: 0.8rem;
    padding: 0.55rem 0.75rem;
    color: var(--hog-block-text-color, var(--hog-available-color, var(--hog-brand-light)));
    background: var(--hog-available-bg, rgba(190, 226, 242, 0.14));
    border: var(--hog-available-border-width, 1px) solid var(--hog-available-border, var(--hog-brand-aqua));
    border-radius: var(--hog-available-radius, 14px);
    font-size: var(--hog-available-font-size, 0.95rem);
    font-family: var(--hog-available-font-family, inherit);
    font-weight: var(--hog-available-font-weight, 600);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.hog-available-label {
    margin: 0;
    color: var(--hog-block-text-color, var(--hog-available-color, var(--hog-brand-light)));
}

.hog-available-count {
    font-weight: inherit;
}

.hog-available-coins {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    margin-left: 0.2rem;
}

.hog-available-coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: var(--hog-available-point-radius, var(--hog-point-radius, 999px));
    border: var(--hog-available-point-border-width, 1px) solid var(--hog-available-point-border, var(--hog-point-border, var(--hog-brand-aqua)));
    color: var(--hog-available-point-color, var(--hog-point-color, var(--hog-brand-light)));
    background: var(--hog-available-point-bg, var(--hog-point-bg, rgba(190, 226, 242, 0.14)));
    transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease, border-color 160ms ease, filter 160ms ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hog-available-coin::before,
.hog-token-coin::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(145deg, #ff5151 0%, #ffb84a 20%, #ffe75a 40%, #61e87d 58%, #53b8ff 76%, #b96bff 100%);
    display: block;
}

.hog-available-coin.is-used {
    opacity: var(--hog-available-point-used-opacity, 0.35);
    filter: grayscale(0.85);
    transform: scale(0.9);
}

.hog-token-controls {
    display: grid;
    grid-template-columns: minmax(24px, 32px) 1fr minmax(24px, 32px);
    align-items: center;
    width: clamp(102px, 30vw, 142px);
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid var(--hog-brand-light);
    overflow: hidden;
    background: transparent;
    transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.hog-token-controls.is-active {
    border-color: var(--hog-brand-orange);
}

.hog-token-controls.is-locked {
    opacity: 0.78;
}

.hog-vote-block[data-layout="cards"] .hog-token-controls,
.hog-editor-preview-inner.is-layout-cards .hog-token-controls {
    width: clamp(96px, 48%, 128px);
    max-width: 100%;
}

.hog-token-btn {
    min-width: 0;
    width: 100%;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--hog-brand-light);
    font-weight: var(--hog-point-font-weight, 600);
    font-size: var(--hog-point-font-size, 1.05rem);
    font-family: var(--hog-point-font-family, inherit);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    padding: 0;
}

.hog-token-controls.is-active .hog-token-btn {
    color: var(--hog-brand-light);
}

.hog-token-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    color: inherit;
    background: transparent;
}

.hog-token-dec {
    justify-content: flex-start;
    padding-left: 0.48rem;
    font-size: clamp(0.96rem, 1.5vw, 1.2rem);
    line-height: 1;
    font-weight: 700;
}

.hog-token-inc {
    justify-content: flex-end;
    padding-right: 0.36rem;
    background: transparent;
}

.hog-token-count {
    min-width: 0;
    width: 100%;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hog-brand-light);
    font-weight: 800;
    font-size: var(--wp--preset--font-size--medium, 1.15rem);
    border-left: 0;
    border-right: 0;
    background: transparent;
    text-align: center;
}

.hog-token-controls.is-active .hog-token-count {
    color: var(--hog-brand-orange);
}

.hog-token-coin {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hog-token-inc:disabled .hog-token-coin {
    opacity: 0.55;
}

.hog-vote-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: var(--wp--preset--spacing--20, 1rem);
}

.hog-vote-block .hog-vote-submit.wp-element-button {
    color: var(--hog-block-text-color, var(--hog-brand-light));
}

.hog-vote-clear,
.hog-vote-reset,
.hog-vote-reset-all {
    border: 1px solid var(--hog-brand-aqua);
    color: var(--hog-brand-light);
    background: rgba(190, 226, 242, 0.12);
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.hog-vote-debug-btn {
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.hog-vote-submit.is-busy {
    position: relative;
    padding-right: 2rem;
    opacity: 0.8;
    pointer-events: none;
}

.hog-vote-submit.is-busy::after {
    content: "";
    position: absolute;
    right: 0.6rem;
    top: 50%;
    width: 0.75rem;
    height: 0.75rem;
    margin-top: -0.375rem;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-top-color: transparent;
    animation: hog-spin 0.8s linear infinite;
}

.hog-status {
    font-size: var(--wp--preset--font-size--small, 0.9rem);
    opacity: 0.8;
    transition: opacity 160ms ease;
}

.hog-status:empty {
    display: none;
}

.hog-vote-complete {
    font-size: var(--wp--preset--font-size--small, 0.95rem);
}

.hog-vote-note {
    margin-bottom: 0.75rem;
    font-size: var(--wp--preset--font-size--small, 0.9rem);
    color: var(--hog-brand-light);
    opacity: 1;
}

.hog-vote-empty {
    font-size: var(--wp--preset--font-size--small, 0.9rem);
    opacity: 0.8;
}

.hog-vote-debug {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hog-vote-debug-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hog-vote-debug-btn {
    border: 1px solid var(--hog-brand-aqua);
    color: var(--hog-brand-light);
    background: rgba(190, 226, 242, 0.12);
    padding: 0.35rem 0.6rem;
    cursor: pointer;
}

.hog-editor-preview {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.hog-editor-submit-template {
    margin-top: 0.9rem;
}

.hog-editor-submit-template .block-editor-inner-blocks {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
}

.hog-editor-preview-title {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hog-loading,
.hog-error {
    font-size: var(--wp--preset--font-size--small, 0.9rem);
    opacity: 0.8;
}

.hog-message {
    color: var(--hog-block-text-color, var(--hog-message-color, var(--hog-brand-light)));
    background: var(--hog-message-bg, rgba(190, 226, 242, 0.12));
    border: var(--hog-message-border-width, 1px) solid var(--hog-message-border, var(--hog-brand-aqua));
    border-radius: var(--hog-message-radius, 0);
    font-size: var(--hog-message-font-size, inherit);
    font-family: var(--hog-message-font-family, inherit);
    font-weight: var(--hog-message-font-weight, inherit);
}

.hog-point-fly {
    position: fixed;
    z-index: 9999;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0;
    transform: translate(0, 0) scale(0.78);
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.25, 1), opacity 220ms ease;
    filter: drop-shadow(0 6px 12px rgba(77, 205, 255, 0.35));
}

.hog-point-fly::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    background: linear-gradient(145deg, #ff5151 0%, #ffb84a 20%, #ffe75a 40%, #61e87d 58%, #53b8ff 76%, #b96bff 100%);
}

.hog-point-fly.is-flying {
    opacity: 1;
    transform: translate(var(--hog-fly-x, 0), var(--hog-fly-y, 0)) scale(1.03);
}

.hog-point-trail {
    position: fixed;
    z-index: 9998;
    height: 6px;
    border-radius: 999px;
    transform-origin: left center;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, rgba(136, 234, 255, 0), rgba(136, 234, 255, 0.9), rgba(136, 234, 255, 0));
    filter: blur(0.4px);
    transition: opacity 260ms ease;
}

.hog-point-trail.is-flying {
    opacity: 0.95;
}

.hog-point-received {
    animation: hog-receive 260ms ease;
}

.hog-available-coin.is-flash {
    animation: hog-flash 240ms ease;
}

@keyframes hog-receive {
    0% { transform: scale(1); }
    60% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@keyframes hog-flash {
    0% { transform: scale(1); }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hog-animate-in .hog-top-item,
.hog-animate-in .hog-vote-card,
.hog-animate-in .hog-vote-empty,
.hog-animate-in .hog-vote-complete,
.hog-animate-in .hog-account > * {
    animation: hog-fade-up 360ms ease both;
    animation-delay: calc(var(--hog-delay, 0) * 60ms);
}

@media (hover: hover) {
    .hog-vote-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .hog-vote-card:hover .hog-vote-art img {
        transform: scale(1.02);
    }

    .hog-token-btn:hover:not(:disabled),
    .hog-vote-clear:hover,
    .hog-vote-reset:hover,
    .hog-vote-reset-all:hover,
    .hog-vote-debug-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }
}

.hog-token-btn:active:not(:disabled),
.hog-vote-clear:active,
.hog-vote-reset:active,
.hog-vote-reset-all:active,
.hog-vote-debug-btn:active {
    transform: translateY(0) scale(0.98);
}

.hog-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hog-skeleton {
    display: block;
}

.hog-skeleton [class*="hog-skel-"] {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.hog-skeleton [class*="hog-skel-"]::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: hog-shimmer 1.5s ease-in-out infinite;
}

.hog-skeleton-top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hog-skel-row {
    display: grid;
    grid-template-columns: 2.5ch 44px 1fr 2ch;
    align-items: center;
    gap: 0.75em;
}

.hog-skel-rank {
    height: 1.1rem;
}

.hog-skel-art {
    width: 44px;
    height: 44px;
}

.hog-skel-lines {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hog-skel-line {
    height: 0.7rem;
}

.hog-skel-line--title {
    height: 0.9rem;
    width: 70%;
}

.hog-skel-line--sub {
    width: 55%;
}

.hog-skel-move {
    height: 0.9rem;
}

.hog-skeleton-vote .hog-skel-available {
    width: 45%;
    margin-bottom: 0.9rem;
}

.hog-skeleton-vote .hog-skel-grid {
    display: grid;
    gap: var(--wp--preset--spacing--20, 1rem);
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hog-skel-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hog-skel-card .hog-skel-art {
    width: 100%;
    padding-top: 100%;
}

.hog-skel-points {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.hog-skel-pill {
    width: 28px;
    height: 28px;
    border-radius: 999px;
}

.hog-skeleton-account {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hog-skeleton-landing .hog-skel-landing-grid {
    display: grid;
    gap: var(--wp--preset--spacing--20, 1rem);
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hog-skeleton-landing .hog-skel-landing-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@keyframes hog-fade-up {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hog-pop {
    0% {
        transform: scale(0.95);
    }
    60% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes hog-shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes hog-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hog-top-item,
    .hog-vote-card,
    .hog-token-btn,
    .hog-vote-clear,
    .hog-vote-reset,
    .hog-vote-reset-all,
    .hog-vote-submit,
    .hog-vote-debug-btn {
        transition: none;
    }

    .hog-animate-in .hog-top-item,
    .hog-animate-in .hog-vote-card,
    .hog-animate-in .hog-vote-empty,
    .hog-animate-in .hog-vote-complete,
    .hog-animate-in .hog-account > * {
        animation: none;
    }

    .hog-skeleton [class*="hog-skel-"]::after,
    .hog-vote-submit.is-busy::after {
        animation: none;
    }

    .hog-point-fly,
    .hog-point-trail,
    .hog-point-received,
    .hog-available-coin.is-flash {
        animation: none;
        transition: none;
    }
}
