/* ===== Game Portal (games1141) — light theme + arcade orange =====
   Inspired by CrazyGames/Poki: clean light gray canvas, rounded white
   cards with subtle shadow + hover lift, vibrant arcade orange accent.
   No editorial kickers, no dotted backdrop, no hard 1px borders. */

html,
body {
    font-family: "Inter", system-ui, sans-serif;
    margin: 0;
    position: relative;
    z-index: 99;
    scroll-behavior: smooth;
    color: #0f1318;
    background: #f4f5f7;
}

/* Clean flat canvas — no pattern, no blur, no gradient */
.softbg {
    background-color: #f4f5f7;
}

.back-to-top {
    transition: transform 0.25s ease, background-color 0.18s ease;
}
.back-to-top:hover {
    transform: translateY(-3px);
}

body::-webkit-scrollbar {
    display: none;
}

#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 64px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #ff5a1f;
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-align: center;
    line-height: 28px;
    letter-spacing: 0.04em;
    border-radius: 8px;
}

::-webkit-scrollbar {
    background: #ebedf1;
    height: 8px;
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #c5cad4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff5a1f;
}
header ::-webkit-scrollbar {
    height: 4px;
}

/* Rating stars — warm amber */
.star i.full { color: #ffb020; }
.star i { color: #dee2e8; }
.star i.partial {
    background: linear-gradient(to right, #ffb020 var(--percent, 0%), #dee2e8 var(--percent, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Header — clean white sticky surface ===== */
.glass {
    background: #ffffff;
    border-bottom: 1px solid #ebedf1;
}

/* ===== Primary button — arcade orange, rounded ===== */
.rank-badge {
    background: #ff5a1f;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    border-radius: 10px;
}
.rank-badge:hover {
    background: #e6451a;
    box-shadow: 0 6px 16px rgba(255, 90, 31, 0.28);
}
.rank-badge:active {
    transform: translateY(1px);
}

/* Card hover utilities — keep class names, use portal lift */
.hard-shadow,
.card-hover {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* Horizontal scroll rails hide scrollbar */
.rail-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.rail-scroll::-webkit-scrollbar {
    display: none;
}

/* ===== Game card — core unit, rounded portal card ===== */
.game-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ebedf1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 1px 2px rgba(15, 19, 24, 0.04);
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 19, 24, 0.10);
    border-color: #ff9c70;
}
.game-card .cover {
    position: relative;
    overflow: hidden;
    background: #ebedf1;
}
.game-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.game-card:hover .cover img {
    transform: scale(1.04);
}
.game-card .play-fab {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 11, 14, 0);
    transition: background-color 0.18s ease;
    pointer-events: none;
}
.game-card:hover .play-fab {
    background: rgba(8, 11, 14, 0.35);
}
.game-card .play-fab .bubble {
    width: 48px;
    height: 48px;
    background: #ff5a1f;
    color: #ffffff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.18s ease, transform 0.18s ease;
    box-shadow: 0 6px 16px rgba(255, 90, 31, 0.4);
}
.game-card:hover .play-fab .bubble {
    opacity: 1;
    transform: scale(1);
}
.game-card .meta {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.game-card .title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #0f1318;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.game-card:hover .title {
    color: #e6451a;
}

/* Category pill — soft orange chip */
.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    background: #fff3ee;
    color: #b8350f;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    border-radius: 6px;
    align-self: flex-start;
}

/* ===== Hero featured card — large, overlay text on cover ===== */
.hero-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0f1318;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(15, 19, 24, 0.08);
}
.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 19, 24, 0.18);
}
.hero-feature .cover {
    position: relative;
    overflow: hidden;
    flex: 1;
}
.hero-feature .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hero-feature:hover .cover img {
    transform: scale(1.05);
}
.hero-feature .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff5a1f;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 8px;
    z-index: 2;
}
.hero-feature .body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 22px 22px;
    background: linear-gradient(to top, rgba(8,11,14,0.92) 0%, rgba(8,11,14,0.6) 55%, rgba(8,11,14,0) 100%);
    color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-feature .body .cat-pill {
    background: rgba(255, 90, 31, 0.18);
    color: #ffc4a8;
    border: 1px solid rgba(255, 122, 71, 0.4);
    align-self: flex-start;
}
.hero-feature .body h2 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    color: #ffffff;
    margin: 4px 0 0;
    letter-spacing: -0.01em;
}
.hero-feature .body p {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 520px;
}
.hero-feature .body .cta {
    margin-top: 6px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff5a1f;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 10px 18px;
    border-radius: 10px;
    transition: background-color 0.18s ease, transform 0.18s ease;
}
.hero-feature .body .cta:hover {
    background: #e6451a;
    transform: translateY(-1px);
}

/* ===== Section header — clean h2 + optional link ===== */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.section-head .label {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff5a1f;
    margin-bottom: 6px;
}
.section-head h2 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: -0.015em;
    color: #0f1318;
    line-height: 1.15;
    margin: 0;
}
.section-head .more-link {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.18s ease, background-color 0.18s ease;
}
.section-head .more-link:hover {
    color: #ff5a1f;
    background: #fff3ee;
}

/* Tag chip — for Browse by Tag */
.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: #ffffff;
    border: 1px solid #ebedf1;
    color: #0f1318;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 999px;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.tag-chip:hover {
    background: #ff5a1f;
    color: #ffffff;
    border-color: #ff5a1f;
    transform: translateY(-2px);
}

/* ===== Category shelf header ===== */
.shelf-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.shelf-head .title-wrap {
    min-width: 0;
}
.shelf-head .kicker {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff5a1f;
    margin-bottom: 4px;
}
.shelf-head h3 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2.2vw, 24px);
    letter-spacing: -0.01em;
    color: #0f1318;
    line-height: 1.15;
    margin: 0;
}
.shelf-head .more-link {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.18s ease, background-color 0.18s ease;
}
.shelf-head .more-link:hover {
    color: #ff5a1f;
    background: #fff3ee;
}

/* ===== Article body type (info pages) ===== */
.ptcontent {
    color: #1f242c;
    font-size: 16px;
    line-height: 1.65;
}
.ptcontent p { margin: 0 0 14px; }
.ptcontent a {
    word-break: break-all;
    color: #ff5a1f;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.ptcontent ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.ptcontent ul li {
    padding-left: 22px;
    position: relative;
}
.ptcontent ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff5a1f;
    font-size: 14px;
}
.ptcontent h1,
.ptcontent h2,
.ptcontent h3,
.ptcontent h4 {
    color: #0f1318;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 24px 0 12px;
    line-height: 1.2;
}
.ptcontent h1 { font-size: 28px; }
.ptcontent h2 { font-size: 22px; }
.ptcontent h3 { font-size: 18px; }
.ptcontent h4 { font-size: 16px; }
.ptcontent img { width: 100%; border-radius: 12px; }

/* ===== Table styles — for CMS content tables ===== */
.ptcontent table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0 0 16px;
    table-layout: fixed;
}
.ptcontent th,
.ptcontent td {
    width: auto !important;
    border: 1px solid #ebedf1;
    padding: 12px 14px;
    vertical-align: top;
    text-align: left;
    word-break: break-word;
}
.ptcontent th {
    background: #f8f9fb;
    font-weight: 700;
    color: #0f1318;
}
.ptcontent td p,
.ptcontent th p {
    margin: 0;
    padding: 0;
}
.ptcontent td p + p,
.ptcontent th p + p {
    margin-top: 8px;
}
.ptcontent tr:nth-child(even) td {
    background: #fafbfc;
}
.ptcontent td b,
.ptcontent td strong {
    color: #0f1318;
}

/* Spec sheet — clean rows for details/game pages */
.spec-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #ebedf1;
    align-items: baseline;
}
.spec-row:last-child {
    border-bottom: 0;
}
.spec-row .label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
}
.spec-row .value {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 14px;
    color: #0f1318;
    line-height: 1.45;
}
.spec-row .value a {
    color: #ff5a1f;
    text-decoration: none;
}
.spec-row .value a:hover {
    text-decoration: underline;
}

/* Page hero header — for category/details/search pages */
.page-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 0 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid #ebedf1;
}
.page-hero .kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ff5a1f;
}
.page-hero h1 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.02em;
    color: #0f1318;
    line-height: 1.1;
    margin: 0;
}
.page-hero .lede {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.55;
    max-width: 640px;
    margin: 0;
}

/* Breadcrumb */
.crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}
.crumb a {
    color: #4b5563;
    transition: color 0.18s ease;
}
.crumb a:hover {
    color: #ff5a1f;
}
.crumb .sep {
    color: #c5cad4;
}
.crumb .current {
    color: #0f1318;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Search results grid — matches .game-card grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 640px) {
    .results-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .results-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* Info-page surface card */
.doc-card {
    background: #ffffff;
    border: 1px solid #ebedf1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 19, 24, 0.04);
}
.doc-card .doc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #ebedf1;
    background: #f8f9fb;
}
.doc-card .doc-body {
    padding: 24px 28px;
}

/* ===== Trending side panel (in hero) ===== */
.trending-panel {
    background: #ffffff;
    border: 1px solid #ebedf1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 19, 24, 0.04);
    display: flex;
    flex-direction: column;
}
.trending-panel .trending-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #ebedf1;
    background: #f8f9fb;
}
.trending-panel .trending-head .kicker {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff5a1f;
    margin-bottom: 2px;
}
.trending-panel .trending-head h3 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #0f1318;
    margin: 0;
    line-height: 1.2;
}
.trending-panel .trending-head .more-link {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.18s ease, background-color 0.18s ease;
}
.trending-panel .trending-head .more-link:hover {
    color: #ff5a1f;
    background: #fff3ee;
}
.trending-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.trending-list li {
    border-bottom: 1px solid #ebedf1;
}
.trending-list li:last-child {
    border-bottom: 0;
}
.trend-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    transition: background-color 0.18s ease;
    position: relative;
}
.trend-row:hover {
    background: #fff3ee;
}
.trend-row .thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #ebedf1;
    flex-shrink: 0;
}
.trend-row .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.trend-row .info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trend-row .info h4 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0f1318;
    margin: 0;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.trend-row:hover .info h4 {
    color: #e6451a;
}
.trend-row .info .cat-pill {
    align-self: flex-start;
}
.trend-row .info p {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.trend-row .play-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff3ee;
    color: #ff5a1f;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.trend-row:hover .play-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #ff5a1f;
    color: #ffffff;
}

/* ===== Meta pills row — for hero overlay & details ===== */
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1.3;
}
.meta-pill i { font-size: 11px; }
/* Light variant — for white backgrounds */
.meta-pill-light {
    background: #f8f9fb;
    border: 1px solid #ebedf1;
    color: #4b5563;
}
.meta-pill-light.meta-pill-accent {
    background: #fff3ee;
    border-color: #ffc4a8;
    color: #b8350f;
}

/* ===== Tags row — for details page ===== */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.tag-chip-sm {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #f8f9fb;
    border: 1px solid #ebedf1;
    color: #4b5563;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.tag-chip-sm:hover {
    background: #ff5a1f;
    color: #ffffff;
    border-color: #ff5a1f;
}

/* ===== How to Play steps ===== */
.howto-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.howto-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #f8f9fb;
    border: 1px solid #ebedf1;
    border-radius: 12px;
}
.howto-list .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff5a1f;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.howto-list .step-body h4 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0f1318;
    margin: 4px 0 4px;
    line-height: 1.3;
}
.howto-list .step-body p {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ===== Game Features grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #ebedf1;
    border-radius: 12px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.feature-tile:hover {
    border-color: #ff9c70;
    transform: translateY(-2px);
}
.feature-tile .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff3ee;
    color: #ff5a1f;
    display: grid;
    place-items: center;
}
.feature-tile h4 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0f1318;
    margin: 0;
    line-height: 1.25;
}
.feature-tile p {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
}
