/* kit: project-zomboid */
/* Palworld hosting landing — panel showcase bands + pricing */
:root {
    --pz-primary: #4d7c0f;
    --pz-primary-dark: #3f6212;
    --pz-primary-light: #65a30d;
    --pz-accent: #f59e0b;
    --pz-amber: #fbbf24;
    --pz-surface: #eff6ff;
    --pz-border: #bfdbfe;
    --pz-ink: #0b1220;
}

/* ——— Shared ——— */
.pz-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pz-primary-light) 0%, var(--pz-primary-dark) 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    padding: 0.85rem 1.4rem;
    box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pz-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(37, 99, 235, 0.55);
}

.pz-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pz-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
}

.pz-section-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.75rem;
    padding: 0 1rem;
}

.pz-section-head--in {
    margin-bottom: 2rem;
}

.pz-section-title {
    font-size: clamp(1.55rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
}

.pz-section-sub {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

/* ——— Hero ——— */
.pz-hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.pz-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pz-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    animation: pz-ken 18s ease-in-out infinite alternate;
}

.pz-hero__ph {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 55% at 70% 35%, rgba(251, 191, 36, 0.28), transparent 55%),
        radial-gradient(ellipse 55% 50% at 20% 70%, rgba(59, 130, 246, 0.4), transparent 50%),
        linear-gradient(145deg, #0f172a 0%, #1e3a5f 45%, #172554 100%);
}

.pz-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.35) 0%, rgba(11, 18, 32, 0.2) 35%, rgba(11, 18, 32, 0.88) 100%),
        linear-gradient(90deg, rgba(11, 18, 32, 0.65) 0%, transparent 58%);
    pointer-events: none;
}

.pz-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1.25rem 3.25rem;
}

@media (min-width: 640px) {
    .pz-hero__inner {
        padding: 6rem 1.5rem 3.75rem;
    }
}

.pz-hero__brand {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pz-amber);
    margin: 0 0 0.75rem;
    animation: pz-fade-up 0.7s ease both;
}

.pz-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    animation: pz-fade-up 0.75s ease 0.08s both;
}

.pz-hero__lead {
    max-width: 26rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.5rem;
    animation: pz-fade-up 0.75s ease 0.16s both;
}

.pz-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: pz-fade-up 0.75s ease 0.24s both;
}

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

@keyframes pz-ken {
    from { transform: scale(1.02); }
    to { transform: scale(1.06); }
}

/* ——— Perks strip ——— */
.pz-perks {
    padding: 1.75rem 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.pz-perks__grid {
    list-style: none;
    margin: 0 auto;
    padding: 0 1.25rem;
    max-width: 72rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
}

@media (min-width: 640px) {
    .pz-perks__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .pz-perks__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1rem;
    }
}

.pz-perks__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.75rem;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.pz-perks__item i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pz-surface);
    border: 1px solid var(--pz-border);
    color: var(--pz-primary);
    font-size: 0.85rem;
}

/* ——— Panel bands (one job / row) ——— */
.pz-panel-section {
    padding: 3.75rem 0 4.25rem;
    background: #f8fafc;
}

.pz-bands {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 3rem;
}

.pz-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: 1.75rem 2.25rem;
    align-items: center;
}

.pz-band--flip {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
}

.pz-band--flip .pz-band__copy {
    order: 2;
}

.pz-band--flip .pz-band__frame {
    order: 1;
}

@media (max-width: 860px) {
    .pz-bands {
        gap: 2.25rem;
    }

    .pz-band,
    .pz-band--flip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pz-band--flip .pz-band__copy,
    .pz-band--flip .pz-band__frame {
        order: unset;
    }

    .pz-band__copy {
        order: -1;
    }
}

.pz-band__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.pz-band__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    color: #64748b;
    max-width: 22rem;
}

.pz-band__frame {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1220;
    border: 1px solid rgba(37, 99, 235, 0.22);
    box-shadow:
        0 24px 48px -28px rgba(29, 78, 216, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pz-band__frame:hover {
    transform: translateY(-3px);
    box-shadow:
        0 28px 56px -26px rgba(29, 78, 216, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.pz-band__frame img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.pz-shot-ph {
    width: 100%;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(ellipse 55% 50% at 50% 40%, rgba(59, 130, 246, 0.35), transparent 65%),
        linear-gradient(160deg, #1e3a5f, #0f172a);
}

/* ——— Game gallery ——— */
.pz-gallery-section {
    padding: 3rem 0 4rem;
    background: #fff;
}

.pz-gallery {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.pz-gallery__item--hero {
    grid-row: 1 / span 2;
    min-height: 460px;
}

@media (max-width: 768px) {
    .pz-gallery {
        grid-template-columns: 1fr;
    }

    .pz-gallery__item--hero {
        grid-row: auto;
        min-height: 240px;
    }
}

.pz-gallery__item {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    min-height: 220px;
}

.pz-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pz-gallery__item:hover img {
    transform: scale(1.04);
}

.pz-gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.1rem 1rem;
    background: linear-gradient(transparent, rgba(11, 18, 32, 0.82));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ——— Custom setup (một ý) ——— */
.pz-custom-section {
    padding: 3.5rem 0 4rem;
    background:
        radial-gradient(ellipse 55% 60% at 88% 30%, rgba(59, 130, 246, 0.14), transparent 60%),
        linear-gradient(180deg, #fff 0%, #dbeafe 100%);
    border-top: 1px solid var(--pz-border);
    border-bottom: 1px solid var(--pz-border);
}

.pz-custom__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2rem 2.5rem;
    align-items: center;
}

@media (max-width: 860px) {
    .pz-custom__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pz-custom__kicker {
    margin: 0 0 0.65rem;
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pz-primary-light), var(--pz-primary-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pz-custom__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 4.2vw, 2.45rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--pz-primary-dark);
    text-align: left;
}

.pz-custom__copy .pz-section-sub {
    text-align: left;
}

.pz-custom__lead {
    max-width: 26rem;
    margin-bottom: 1.35rem;
}

.pz-custom__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.pz-custom__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--pz-border);
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
}

.pz-custom__list-item--strong {
    border-color: var(--pz-primary);
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    box-shadow: 0 8px 20px -14px rgba(37, 99, 235, 0.55);
    color: var(--pz-primary-dark);
    font-weight: 800;
}

.pz-custom__list i {
    color: var(--pz-primary);
    width: 1.15rem;
    text-align: center;
}

.pz-custom__list-item--strong i {
    color: var(--pz-primary-dark);
}

.pz-custom__cta {
    display: inline-flex;
}

.pz-custom__visual {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: visible;
}

.pz-custom__visual > img:first-child,
.pz-custom__visual .pz-shot-ph {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.22);
    box-shadow: 0 24px 48px -28px rgba(29, 78, 216, 0.4);
}

.pz-custom__deco {
    position: absolute;
    right: -4%;
    bottom: -8%;
    width: clamp(88px, 18vw, 132px);
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(15, 23, 42, 0.22));
    animation: pz-float 5.5s ease-in-out infinite;
    pointer-events: none;
}

@media (max-width: 860px) {
    .pz-custom__deco {
        right: 2%;
        bottom: -6%;
        width: 72px;
    }
}

/* ——— Pricing ——— */
.pz-pricing-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

/* Preview decor — PNG tách nền quanh bảng giá */
.pz-deco-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pz-deco {
    position: absolute;
    width: clamp(72px, 12vw, 140px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.18));
    opacity: 0.92;
    animation: pz-float 5.5s ease-in-out infinite;
}

.pz-deco--lamball { left: 2%; top: 8%; animation-delay: 0s; }
.pz-deco--cattiva { right: 3%; top: 12%; animation-delay: 0.6s; width: clamp(64px, 10vw, 120px); }
.pz-deco--depresso { left: 4%; bottom: 18%; animation-delay: 1.1s; width: clamp(70px, 11vw, 128px); }
.pz-deco--pengullet { right: 5%; bottom: 22%; animation-delay: 1.7s; width: clamp(68px, 10vw, 124px); }
.pz-deco--grizzbolt { left: 8%; top: 42%; animation-delay: 0.3s; width: clamp(80px, 13vw, 148px); }
.pz-deco--anubis { right: 7%; top: 44%; animation-delay: 1.4s; width: clamp(76px, 12vw, 136px); }
.pz-deco--sphere {
    left: 50%;
    top: 6%;
    transform: translateX(-50%);
    width: clamp(40px, 6vw, 64px);
    opacity: 0.75;
    animation-duration: 4.2s;
}

@keyframes pz-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

@media (max-width: 900px) {
    .pz-deco--grizzbolt,
    .pz-deco--anubis,
    .pz-deco--sphere {
        display: none;
    }

    .pz-deco {
        width: clamp(56px, 18vw, 88px);
        opacity: 0.7;
    }
}

.pz-plan-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 18px;
    border: 2px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 28px -16px rgba(15, 23, 42, 0.28);
    background: #eff6ff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.pz-plan-card--featured {
    border-color: var(--pz-primary);
    box-shadow: 0 14px 34px -14px rgba(37, 99, 235, 0.5);
}

.pz-plan-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pz-plan-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    filter: blur(2.5px) saturate(0.95);
    opacity: 0.38;
}

.pz-plan-card__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 246, 255, 0.82) 42%, rgba(255, 255, 255, 0.9) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
    pointer-events: none;
}

.pz-plan-card__inner {
    position: relative;
    z-index: 2;
    padding: 1.25rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.85rem;
}

.pz-plan-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.pz-plan-card__name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.pz-badge {
    background: linear-gradient(135deg, var(--pz-primary-light), var(--pz-primary-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.pz-plan-card__price-wrap {
    text-align: center;
    padding: 0.35rem 0 0.85rem;
    border-bottom: 1px solid rgba(191, 219, 254, 0.7);
}

.pz-price {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--pz-primary-dark);
}

.pz-plan-card__cycle {
    margin: 0.2rem 0 0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.pz-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.pz-support-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.28);
    color: #1e3a8a;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
}

.pz-support-list li:first-child {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.55));
    border-color: var(--pz-primary);
    color: var(--pz-primary-dark);
    font-weight: 800;
}

.pz-support-list i {
    margin-top: 0.12rem;
    color: var(--pz-primary-dark);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.pz-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.pz-spec-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.65rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
}

.pz-spec-list i {
    color: var(--pz-primary);
    width: 1rem;
    text-align: center;
}

.pz-plan-card__cta {
    display: flex;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* ——— Close ——— */
.pz-close {
    padding: 3rem 0 4.5rem;
    background: #fff;
}

.pz-close__inner {
    max-width: 36rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.pz-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.pz-steps li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
}

.pz-steps__n {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pz-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .pz-hero__img,
    .pz-hero__brand,
    .pz-hero__title,
    .pz-hero__lead,
    .pz-hero__cta,
    .pz-band__frame,
    .pz-gallery__item img,
    .pz-deco {
        animation: none !important;
        transition: none !important;
    }
}


/* kit UI fix — hero contrast + custom single-column + mobile first paint */
.pz-hero__title,
.pz-hero__lead {
    color: #fff !important;
}
.pz-hero__title {
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.pz-custom__inner {
    grid-template-columns: minmax(0, 1fr);
    max-width: 42rem;
}
.pz-custom__copy {
    max-width: 40rem;
}
@media (max-width: 640px) {
    .pz-hero {
        min-height: min(70vh, 560px);
        align-items: center;
    }
    .pz-hero__inner {
        padding: 5.5rem 1.25rem 2.25rem;
    }
}
