.pm-boot-loading {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pm-boot-loading.pm-boot-loading-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pm-boot-loading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pm-boot-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(103, 232, 249, 0.18);
    border-top-color: #67e8f9;
    animation: pm-boot-spin 0.75s linear infinite;
}

.pm-boot-loading-text {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.pm-boot-loading-text #pmBootLoadingPct:not(:empty)::before {
    content: ' — ';
}

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

#pm-game-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483640;
    background: #000;
    overflow: hidden;
}

#pm-game-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#pm-game-container canvas {
    display: block;
}

#pm-game-ui {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    font-family: Arial, sans-serif;
}

#pm-left-chrome {
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.pm-left-row {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
}

#pm-audio-controls {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
}

#mute-button {
    position: static;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    padding: 3px;
    border-radius: 7px;
    background: transparent;
    border: none;
    object-fit: contain;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.92;
    transition: opacity 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

#mute-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

#bgm-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 96px;
    height: 4px;
    margin: 0 2px 0 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    outline: none;
    cursor: pointer;
}

#bgm-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #67e8f9;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.45);
    cursor: pointer;
}

#bgm-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #67e8f9;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.45);
    cursor: pointer;
}

#bgm-volume::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

#pm-haze-controls {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
    min-width: 0;
    width: max-content;
    max-width: 100%;
}

.pm-haze-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 7px;
    background: transparent;
    color: #fdba74;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.95;
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pm-haze-icon:hover {
    opacity: 1;
    background: rgba(251, 146, 60, 0.16);
    color: #fb923c;
}

/* Keep for a11y/DOM, but don't widen the chrome row (icon + tip already name it). */
.pm-haze-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pm-haze-value {
    flex-shrink: 0;
    min-width: 2em;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #fdba74;
    text-align: right;
    user-select: none;
    line-height: 1;
}

#pm-page-transparency {
    -webkit-appearance: none;
    appearance: none;
    width: 84px;
    height: 4px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.45), rgba(251, 146, 60, 0.85));
    outline: none;
    cursor: pointer;
    flex: 0 0 84px;
}

#pm-page-transparency::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fb923c;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.45);
    cursor: pointer;
}

#pm-page-transparency::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fb923c;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.45);
    cursor: pointer;
}

#pm-page-transparency::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.45), rgba(251, 146, 60, 0.85));
}

#pm-haze-tip {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 40;
    width: min(260px, 72vw);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.94);
    border: 1px solid rgba(251, 146, 60, 0.55);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 18px rgba(251, 146, 60, 0.18);
    color: #ffedd5;
    font-family: Arial, sans-serif;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: pm-haze-tip-in 0.3s ease-out;
}

#pm-haze-tip::before {
    content: '';
    position: absolute;
    left: 18px;
    top: -6px;
    width: 10px;
    height: 10px;
    background: rgba(2, 6, 23, 0.94);
    border-left: 1px solid rgba(251, 146, 60, 0.55);
    border-top: 1px solid rgba(251, 146, 60, 0.55);
    transform: rotate(45deg);
}

#pm-haze-tip strong {
    font-size: 12px;
    font-weight: 700;
    color: #fdba74;
    letter-spacing: 0.01em;
}

#pm-haze-tip span {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 237, 213, 0.92);
}

.pm-haze-tip__ok {
    align-self: flex-end;
    margin-top: 2px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(251, 146, 60, 0.55);
    background: rgba(251, 146, 60, 0.18);
    color: #ffedd5;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.pm-haze-tip__ok:hover {
    background: rgba(251, 146, 60, 0.28);
}

@keyframes pm-haze-tip-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#player-auth-cluster {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
}

#player-auth-badge {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.player-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e8ecf5;
    opacity: 0.9;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.player-home-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

#player-auth-badge.player-auth-badge--guest {
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e8ecf5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#player-auth-badge.player-auth-badge--guest:hover {
    opacity: 1;
    border-color: rgba(96, 165, 250, 0.75);
    background: rgba(255, 255, 255, 0.12);
}

#player-auth-badge.player-auth-badge--user {
    width: 24px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.85);
    opacity: 0.94;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

#player-auth-badge.player-auth-badge--user:hover {
    opacity: 1;
    border-color: rgba(96, 165, 250, 0.75);
}

#player-auth-badge .player-auth-badge__avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#how-to-play-button {
    position: static;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    padding: 0;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #e8ecf5;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

#how-to-play-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

#pm-share-wrap {
    position: relative;
    flex-shrink: 0;
    z-index: 40;
}

#pm-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    padding: 0;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #e8ecf5;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s ease, background 0.2s ease;
}

#pm-share-button:hover,
#pm-share-button[aria-expanded="true"] {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.pm-share-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 11.5rem;
    padding: 4px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 14, 22, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    display: none;
}

.pm-share-menu.is-open {
    display: block;
}

.pm-share-menu a,
.pm-share-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: #e8ecf5;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.pm-share-menu a:hover,
.pm-share-menu button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pm-share-menu__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 2px;
}

#pm-game-brand,
.pm-game-brand {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    min-height: 24px;
    padding: 0 8px;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    color: #67e8f9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    opacity: 1;
    flex-shrink: 0;
    user-select: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

#pm-game-brand:hover,
.pm-game-brand:hover {
    color: #a5f3fc;
    border: none;
    background: transparent;
    box-shadow: none;
}

.how-to-play-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483648;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(3, 6, 15, 0.88);
    pointer-events: auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.how-to-play-modal__panel {
    width: min(480px, 100%);
    max-height: min(80vh, 640px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #2D2D39 #0B0B0F;
    -webkit-overflow-scrolling: touch;
    background: rgba(13, 19, 33, 0.97);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 18px 18px 22px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    color: #d7dbff;
}

/* Match main site scrollbar (layouts/app.blade.php) */
.how-to-play-modal__panel::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.how-to-play-modal__panel::-webkit-scrollbar-track {
    background: #0B0B0F;
    border-radius: 0 12px 12px 0;
}

.how-to-play-modal__panel::-webkit-scrollbar-thumb {
    background: #2D2D39;
    border-radius: 2px;
}

.how-to-play-modal__panel::-webkit-scrollbar-thumb:hover {
    background: #4B4B63;
}

.how-to-play-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.how-to-play-modal__header h2 {
    margin: 0;
    font-size: 22px;
    color: #67e8f9;
}

.how-to-play-modal__tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-play-modal__tab {
    flex: 1 1 0;
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #b8c3ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.how-to-play-modal__tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e8ecf5;
}

.how-to-play-modal__tab--active {
    background: rgba(103, 232, 249, 0.12);
    border-color: rgba(103, 232, 249, 0.45);
    color: #67e8f9;
}

.how-to-play-modal__pane {
    display: none;
}

.how-to-play-modal__pane--active {
    display: block;
}

.how-to-play-modal__close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.how-to-play-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.how-to-play-modal__section {
    margin: 0 0 14px;
}

.how-to-play-modal__section:last-child {
    margin-bottom: 0;
}

.how-to-play-modal__section h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.how-to-play-modal__section p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.55;
    color: #b8c3ff;
}

.how-to-play-modal__section p:last-child {
    margin-bottom: 0;
}

.pm-hud-stack {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 132px;
    max-width: calc(100vw - 20px);
    pointer-events: none;
}

.pm-hud {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    pointer-events: auto;
    width: 100%;
    box-sizing: border-box;
}

.pm-hud-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.pm-hud-label {
    color: #94a3b8;
    flex-shrink: 0;
}

.pm-hud-item strong {
    color: #67e8f9;
    margin-left: 0;
    font-variant-numeric: tabular-nums;
    text-align: right;
    min-width: 0;
}

.pm-relic-tray {
    position: absolute;
    z-index: 1000;
    box-sizing: border-box;
    width: 72px;
    height: auto;
    padding: 8px 6px 10px;
    border-radius: 16px;
    /* Soft frosted chip — readable on bright or dark themes without a heavy slab. */
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0f172a;
    font-family: Arial, sans-serif;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: visible;
}

.pm-relic-tray[hidden] {
    display: none !important;
}

.pm-relic-tray-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
}

.pm-relic-tray-slot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
}

.pm-relic-tray-slot.is-empty {
    background: rgba(255, 255, 255, 0.16);
    border: 1px dashed rgba(15, 23, 42, 0.22);
    box-shadow: none;
    color: rgba(15, 23, 42, 0.4);
    font-size: 10px;
    font-weight: 700;
}

.pm-relic-tray-slot.is-filled {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 2px 12px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(103, 232, 249, 0.25);
}

.pm-relic-tray-slot img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.2));
}

.pm-relic-tray-status {
    margin: 0;
    padding: 4px 2px 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: center;
    color: #0e7490;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pm-relic-tray-status[hidden] {
    display: none !important;
}

.pm-relic-tray.is-ready {
    border-color: rgba(103, 232, 249, 0.65);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.12),
        0 0 18px rgba(34, 211, 238, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pm-exit-hint {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: min(92vw, 360px);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.88);
    border: 1px solid rgba(103, 232, 249, 0.45);
    color: #e0f2fe;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(34, 211, 238, 0.15);
    animation: pm-exit-hint-in 0.35s ease-out;
}

.pm-exit-hint[hidden] {
    display: none !important;
}

@keyframes pm-exit-hint-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.pm-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.82);
    z-index: 2147483646;
    padding: 20px;
    text-align: center;
}

.pm-overlay-show {
    display: flex;
}

.pm-card {
    position: relative;
    z-index: 1;
    width: min(92vw, 420px);
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    color: #e2e8f0;
    font-family: Arial, sans-serif;
}

.pm-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #f8fafc;
}

.pm-card p {
    margin: 0 0 18px;
    color: #94a3b8;
    font-size: 16px;
}

.pm-card-sub {
    margin: -8px 0 18px !important;
    font-size: 14px !important;
    color: #64748b !important;
}

.pm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pm-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #334155;
    color: #f8fafc;
}

.pm-btn-primary {
    background: linear-gradient(180deg, #22d3ee, #0891b2);
    color: #042f2e;
}

.pm-btn:hover {
    filter: brightness(1.08);
}
