/* ===== PK 77 Bet Optimized Mobile CSS ===== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
    --home-bg: #f3f6f8;
    --home-surface: #ffffff;
    --home-card: #f8fafc;
    --home-ink: #12213a;
    --home-muted: #6f7c8f;
    --home-line: rgba(18, 33, 58, 0.10);
    --home-navy: #111b31;
    --home-navy-2: #172847;
    --home-gold: #ffcc00;
    --home-gold-2: #ffab00;
    --home-radius: 14px;
    --home-shadow: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--home-bg);
    color: #222;
    line-height: 1.4;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

/* Emoji SVG image size control */
img.emoji {
  display: inline !important;
  width: 1em !important;
  height: 1em !important;
  vertical-align: -0.1em !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 1em !important;
  max-height: 1em !important;
}

/* Global Container */
.container-box {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #263955 0%, #17243b 100%);
    border-bottom: 1px solid rgba(255, 204, 0, 0.85);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.site-logo__text {
    font-weight: 900;
    font-size: 20px;
    color: #ffcc00;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn--small { height: 32px; }
.btn--ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn--primary { background: #ffcc00; color: #000; border: none; }
.btn--block { display: flex; width: 100%; }

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Nav (inline dropdown) */
.mobile-nav {
    display: none;
    background: #1a2a4a;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.is-open {
    display: block;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu li a {
    display: block;
    padding: 12px 16px;
    color: #cbd5e0;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.menu li a:hover {
    background: rgba(255,204,0,0.1);
    color: #ffcc00;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.2s;
}

.drawer-overlay:not([hidden]) {
    opacity: 1;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-drawer[hidden] {
    display: flex;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f7;
    background: #f7fafc;
}

.mobile-drawer__title {
    font-weight: 800;
    font-size: 16px;
    color: #1a2a4a;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: #edf2f7;
}

.icon-btn--close .icon-x {
    position: relative;
    width: 18px;
    height: 18px;
}

.icon-btn--close .icon-x::before,
.icon-btn--close .icon-x::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: #4a5568;
    border-radius: 2px;
}

.icon-btn--close .icon-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-btn--close .icon-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer__nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li {
    border-bottom: 1px solid #f0f2f5;
}

.drawer-menu li a {
    display: block;
    padding: 12px 20px;
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.drawer-menu li a:hover {
    background: #f7fafc;
    color: #ffcc00;
}

.mobile-drawer__bottom {
    padding: 16px;
    border-top: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===== HOME BANNER ===== */
.home-banner-strip {
    background: transparent;
    padding: 0;
}

.home-banner-strip .container-box {
    max-width: 420px;
    padding-left: 0;
    padding-right: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 204, 0, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border: 0;
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
    box-shadow: var(--home-shadow);
    overflow: hidden;
}

.home-banner-strip__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-banner-strip__photo {
    width: 100%;
    line-height: 0;
}

.home-banner-strip__photo img {
    width: 100%;
    height: auto;
    display: block;
}

.home-banner-strip__inner {
    padding: 28px 18px 20px;
    text-align: center;
    position: relative;
}

.home-banner-strip__brand {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 2px 8px rgba(18, 33, 58, 0.12);
    margin-bottom: 10px;
    line-height: 1.08;
}

.home-banner-strip__brand span {
    color: var(--home-ink);
}

.home-banner-strip__summary {
    max-width: 300px;
    margin: 0 auto 10px;
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.home-banner-strip__headline {
    font-size: 16px;
    font-weight: 800;
    color: var(--home-ink);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.home-banner-strip__coins {
    font-size: 28px;
    margin-top: 4px;
}

.home-banner-strip__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 14px;
}

.home-banner-strip__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d2df;
    transition: all 0.3s;
}

.home-banner-strip__dots span.is-active {
    background: #ffcc00;
    width: 20px;
    border-radius: 4px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.home-announcement-bar {
    background: transparent;
    padding: 0 0 12px;
}

.home-announcement-bar .container-box {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 420px;
    background: linear-gradient(135deg, #fff2a8, #ffd05b);
    border: 1px solid rgba(255, 171, 0, 0.35);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: 0 6px 16px rgba(255, 171, 0, 0.14);
    padding-top: 8px;
    padding-bottom: 8px;
}

.home-announcement-bar__icon {
    font-size: 18px;
    flex-shrink: 0;
}

.home-announcement-bar__text {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: #3a2d03;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-announcement-bar__mail {
    font-size: 16px;
    flex-shrink: 0;
}

.home-announcement-bar__badge {
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4px;
}

/* ===== CATEGORY NAV ===== */
.home-cat-nav {
    background: transparent;
    padding: 0 0 12px;
    border-bottom: 0;
}

.home-cat-nav .container-box {
    max-width: 420px;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: var(--home-shadow);
    padding-top: 10px;
    padding-bottom: 10px;
}

.home-cat-nav__grid {
    display: flex;
    justify-content: space-around;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.home-cat-nav__grid::-webkit-scrollbar {
    display: none;
}

.home-cat-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 58px;
    padding: 4px;
    border-radius: 10px;
    transition: background 0.2s;
    text-align: center;
}

.home-cat-nav__item:hover {
    background: #f7fafc;
}

.home-cat-nav__icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: #eef4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    overflow: hidden;
}

.home-cat-nav__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.home-cat-nav__label {
    font-size: 10px;
    font-weight: 600;
    color: var(--home-muted);
}

/* ===== GAME SECTION ===== */
.game-section {
    background: transparent;
    padding: 0 0 12px;
}

.game-section--popular {
    background: transparent;
}

.game-section--slots {
    background: transparent;
}

.game-section--fishing {
    background: transparent;
}

.game-section .container-box {
    max-width: 420px;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: var(--home-shadow);
    padding-top: 14px;
    padding-bottom: 14px;
}

.game-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.game-section__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--home-ink);
    margin: 0;
}

.game-section__all {
    font-size: 12px;
    font-weight: 700;
    color: #4c8edb;
    padding: 5px 11px;
    border-radius: 999px;
    background: #edf5ff;
    transition: background 0.2s;
}

.game-section__all:hover {
    background: rgba(110,174,241,0.2);
}

/* Game Grid */
.game-grid {
    display: grid;
    gap: 9px;
}

.game-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Game Card */
.game-card {
    border-radius: 11px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 33, 58, 0.06);
    box-shadow: 0 5px 14px rgba(18, 33, 58, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.game-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card__badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-card__art {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.82;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-card__art--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card--tone-1 .game-card__art { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.game-card--tone-2 .game-card__art { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.game-card--tone-3 .game-card__art { background: linear-gradient(135deg, #fbc2eb, #a6c1ee); }
.game-card--tone-4 .game-card__art { background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.game-card--tone-5 .game-card__art { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.game-card--tone-6 .game-card__art { background: linear-gradient(135deg, #667eea, #764ba2); }

.game-card__name {
    padding: 7px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--home-ink);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-section__more {
    text-align: center;
    margin-top: 12px;
}

.game-section__more p {
    font-size: 11px;
    color: #a4afbd;
    margin: 0 0 8px;
}

.game-section__more-btn {
    background: #eef3f7;
    color: #55657a;
    border: 1px solid var(--home-line);
    border-radius: 9px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.game-section__more-btn:hover {
    background: #e2e8f0;
}

/* ===== BLOG PREVIEW ===== */
.home-blog-preview {
    padding: 0 0 12px;
    background: transparent;
}

.home-blog-preview .container-box {
    max-width: 420px;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: var(--home-shadow);
    padding-top: 14px;
    padding-bottom: 14px;
}

.home-blog-preview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.home-blog-preview__head h2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--home-ink);
    margin: 0;
}

.home-blog-preview__head a {
    font-size: 12px;
    font-weight: 700;
    color: #4c8edb;
    padding: 5px 11px;
    border-radius: 999px;
    background: #edf5ff;
}

.home-blog-preview__list {
    display: grid;
    gap: 10px;
}

.home-blog-preview__item {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: 0 5px 14px rgba(18, 33, 58, 0.06);
}

.home-blog-preview__thumb {
    flex-shrink: 0;
    width: 92px;
    height: 74px;
    background: linear-gradient(135deg, #79b5f5, #5f86ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

.home-blog-preview__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-preview__body {
    flex: 1;
    min-width: 0;
    padding: 10px 10px 10px 0;
}

.home-blog-preview__body h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--home-ink);
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-preview__body h3 a {
    color: inherit;
}

.home-blog-preview__body p {
    font-size: 10px;
    color: var(--home-muted);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-preview__empty {
    text-align: center;
    padding: 30px 0;
    color: #a0aec0;
    font-size: 13px;
}

/* ===== HOME SEO INTRO ===== */
.home-seo-intro {
    padding: 0 0 12px;
    background: transparent;
}

.home-seo-intro .container-box {
    max-width: 420px;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: var(--home-shadow);
    padding-top: 16px;
    padding-bottom: 16px;
}

.home-seo-intro h2 {
    color: var(--home-ink);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 10px;
}

.home-seo-intro p {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 10px;
}

.home-seo-intro ul {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.home-seo-intro li {
    color: var(--home-ink);
    font-size: 12px;
    line-height: 1.45;
    padding-left: 16px;
    position: relative;
}

.home-seo-intro li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--home-gold);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #f6f8fb;
    color: var(--home-muted);
    padding: 26px 0 20px;
    margin-top: 0;
    border-top: 1px solid var(--home-line);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.site-footer__title {
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a { font-size: 12px; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--home-ink); }

.site-footer__divider {
    height: 1px;
    background: var(--home-line);
    margin: 20px 0;
}

.site-footer__contact {
    margin-bottom: 16px;
}

.site-footer__contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__age {
    display: inline-block;
    background: var(--home-gold);
    color: var(--home-ink);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.site-footer__contact p {
    font-size: 12px;
    color: var(--home-muted);
    margin: 0;
}

.site-footer__social {
    margin-bottom: 16px;
}

.site-footer__social-list {
    display: flex;
    gap: 8px;
}

.site-footer__social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--home-line);
    font-size: 12px;
    font-weight: 800;
    color: var(--home-ink);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.site-footer__social-item:hover {
    background: var(--home-gold);
    border-color: var(--home-gold);
    color: var(--home-ink);
}

.site-footer__notice {
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
    color: var(--home-muted);
}

.site-footer__bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: var(--home-muted);
}

.site-footer__brand {
    font-weight: 800;
    color: var(--home-ink);
}

.site-footer__dot {
    margin: 0 6px;
    color: #9aa6b5;
}

.site-footer__copy {
    color: var(--home-muted);
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 20px;
}
.breadcrumbs a { color: #4a5568; }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== PAGE WRAP (shared container) ===== */
.page-wrap {
    padding: 0 0 80px;
}

.page-wrap__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a2a4a;
    margin: 0 0 12px;
}

/* Home Shell */
.home-shell {
    background: var(--home-bg);
    min-height: 100vh;
}

/* ===== 404 / Search / Archive page wraps ===== */
.page-wrap--404,
.page-wrap--search,
.page-wrap--archive {
    padding: 40px 0 80px;
    min-height: 60vh;
}

.page-wrap--404 p,
.page-wrap--search p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

/* Content None */
.content-none {
    text-align: center;
    padding: 40px 0;
    color: #a0aec0;
    font-size: 14px;
}

/* Entry Date (post meta) */
.entry-date {
    font-size: 11px;
    color: #a0aec0;
}

/* ========================================
   Home Register CTA
   ======================================== */
.home-register-cta {
  max-width: 420px;
  padding: 0;
  margin: 0 auto 12px;
}

.home-register-cta__inner {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid var(--home-line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: var(--home-shadow);
  padding: 24px 18px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-register-cta__inner::before {
  display: none;
}

.home-register-cta__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.home-register-cta__title {
  color: var(--home-ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 6px;
}

.home-register-cta__title span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--home-gold);
  margin-top: 4px;
}

.home-register-cta__desc {
  color: var(--home-muted);
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.home-register-cta__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.home-register-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-register-cta__btn:hover {
  transform: translateY(-1px);
}

.home-register-cta__btn--primary {
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.home-register-cta__btn--primary:hover {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.home-register-cta__btn--ghost {
  background: #ffffff;
  color: var(--home-ink);
  border: 1.5px solid var(--home-line);
}

.home-register-cta__btn--ghost:hover {
  border-color: rgba(18, 33, 58, 0.20);
  background: #f8fafc;
}

.home-register-cta__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-register-cta__trust-item {
  color: var(--home-muted);
  font-size: 11px;
  white-space: nowrap;
}

/* ========================================
   Home Jackpot
   ======================================== */
.home-jackpot {
  max-width: 420px;
  padding: 0;
  margin: 0 auto 12px;
}

.home-jackpot__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid var(--home-line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: var(--home-shadow);
  padding: 14px;
}

.home-jackpot__display {
  background: var(--home-card);
  border-radius: 13px;
  padding: 22px 16px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line);
}

.home-jackpot__display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.55), transparent);
}

.home-jackpot__display::after {
  display: none;
}

.home-jackpot__icon {
  font-size: 30px;
  margin-bottom: 8px;
  filter: none;
}

.home-jackpot__label {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.home-jackpot__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.home-jackpot__currency {
  color: var(--home-gold);
  font-size: 20px;
  font-weight: 700;
}

.home-jackpot__number {
  color: var(--home-gold);
  font-size: 32px;
  font-weight: 900;
  text-shadow: none;
  font-variant-numeric: tabular-nums;
}

.home-jackpot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
  padding: 12px 36px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-jackpot__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.home-jackpot__app {
  background: var(--home-card);
  border: 1px solid var(--home-line);
  border-radius: 13px;
  overflow: hidden;
}

.home-jackpot__app-img {
  width: 100%;
  height: auto;
  display: block;
}

.home-jackpot__app-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.home-jackpot__app-icon {
  font-size: 32px;
}

.home-jackpot__app-text {
  text-align: center;
}

.home-jackpot__app-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.home-jackpot__app-title {
  display: block;
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 700;
}

.home-jackpot__app-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.home-jackpot__app-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.home-jackpot__app-btn:hover {
  transform: translateY(-1px);
}

.home-jackpot__app-btn--primary {
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
}

.home-jackpot__app-btn--ghost {
  background: #ffffff;
  color: var(--home-ink);
  border: 1.5px solid var(--home-line);
}

/* ========================================
   Home Promotions
   ======================================== */
.home-promotions {
  max-width: 420px;
  padding: 0;
  margin: 0 auto 12px;
}

.home-promotions__inner {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid var(--home-line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: var(--home-shadow);
  padding: 14px;
}

.home-promotions__title {
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}

.home-promotions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  overflow: visible;
  padding-bottom: 0;
  scrollbar-width: none;
}

.home-promotions__grid::-webkit-scrollbar {
  display: none;
}

.home-promotions__card {
  min-width: 0;
  background: var(--home-card);
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 14px 8px 12px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.home-promotions__card:last-child {
  min-width: 0;
}

.home-promotions__card:hover {
  transform: translateY(-2px);
}

.home-promotions__card--gold {
  border-color: var(--home-line);
}

.home-promotions__card--gold::before {
  display: none;
}

.home-promotions__card--gold:hover {
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.home-promotions__card--blue {
  border-color: var(--home-line);
}

.home-promotions__card--blue::before {
  display: none;
}

.home-promotions__card--blue:hover {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.home-promotions__card--purple {
  border-color: var(--home-line);
}

.home-promotions__card--purple::before {
  display: none;
}

.home-promotions__card--purple:hover {
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
}

.home-promotions__card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.home-promotions__card-title {
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  min-height: 30px;
  margin: 0 0 6px;
}

.home-promotions__card-desc {
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.35;
  min-height: 40px;
  margin: 0 0 10px;
}

.home-promotions__card-btn {
  display: inline-block;
  width: 100%;
  padding: 6px 8px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
}

.home-promotions__card--gold .home-promotions__card-btn {
  background: linear-gradient(135deg, var(--home-gold), var(--home-gold-2));
  color: #172033;
}

.home-promotions__card--blue .home-promotions__card-btn {
  background: #edf5ff;
  color: #1f5f9f;
}

.home-promotions__card--purple .home-promotions__card-btn {
  background: #edf5ff;
  color: #1f5f9f;
}

/* Large emoji icons in home sections */
.home-register-cta__badge img.emoji,
.home-jackpot__icon img.emoji,
.home-jackpot__app-icon img.emoji,
.home-promotions__card-icon img.emoji {
  width: 1.5em !important;
  height: 1.5em !important;
  max-width: 1.5em !important;
  max-height: 1.5em !important;
  vertical-align: middle !important;
}

@media (min-width: 768px) {
  .home-shell,
  .site-header,
  .site-footer,
  .page-wrap__inner {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-shell {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
  }
}
