/* ============================================
   Social Joy Space — sociajoyspace.com
   Background: back-fon.webp | Color scheme & fonts adapted to brand
   No money / no currency — entertainment only, virtual credits
   ============================================ */

:root {
    --sjs-primary: #b8860b;
    --sjs-primary-light: #daa520;
    --sjs-primary-dark: #8b6914;
    --sjs-accent: #c9a227;
    --sjs-accent-light: #e6c04a;
    --sjs-bg: #0c0f0a;
    --sjs-bg-elevated: #141a10;
    --sjs-surface: rgba(20, 26, 16, 0.94);
    --sjs-border: rgba(201, 162, 39, 0.15);
    --sjs-border-strong: rgba(201, 162, 39, 0.3);
    --sjs-text: #e8e6d9;
    --sjs-text-soft: #a8a898;
    --sjs-white: #f5f3eb;
    --sjs-font: 'Lato', system-ui, sans-serif;
    --sjs-font-head: 'Cinzel', Georgia, serif;
    --sjs-radius: 12px;
    --sjs-radius-pill: 999px;
    --sjs-ease: cubic-bezier(0.33, 1, 0.68, 1);
    --sjs-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --sjs-glow: 0 0 30px rgba(184, 134, 11, 0.2);
    --sjs-transition: 0.3s var(--sjs-ease);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--sjs-font);
    background: var(--sjs-bg);
    color: var(--sjs-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.sjs-menu-open { overflow: hidden; }

/* ========== Background: back-fon.webp on all pages ========== */
.sjs-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.sjs-bg__base {
    position: absolute;
    inset: 0;
    background-image: url("/assets../images/back-fon.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sjs-bg__base::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 15, 10, 0.72) 0%,
        rgba(12, 15, 10, 0.78) 40%,
        rgba(12, 15, 10, 0.82) 100%
    );
    pointer-events: none;
}

.sjs-bg__grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201, 162, 39, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: sjs-grid-shift 25s linear infinite;
}

@keyframes sjs-grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.sjs-bg__orb {
    display: none;
}

/* ========== Layout ========== */
.sjs-header, .sjs-section, .sjs-footer { position: relative; z-index: 1; }

/* ========== Modals ========== */
.sjs-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.sjs-modal.is-open { opacity: 1; visibility: visible; }

.sjs-modal__box {
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border-strong);
    border-radius: var(--sjs-radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--sjs-shadow), var(--sjs-glow);
    transform: scale(0.95);
    transition: transform 0.35s var(--sjs-ease);
}

.sjs-modal.is-open .sjs-modal__box { transform: scale(1); }

.sjs-modal__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    animation: sjs-pulse 2s ease-in-out infinite;
}

@keyframes sjs-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.sjs-modal__title {
    font-family: var(--sjs-font-head);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sjs-white);
    margin-bottom: 0.75rem;
}

.sjs-modal__text {
    color: var(--sjs-text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sjs-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.sjs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--sjs-font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--sjs-radius-pill);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.sjs-btn:focus-visible { outline: 2px solid var(--sjs-primary-light); outline-offset: 2px; }

.sjs-btn--primary {
    background: linear-gradient(135deg, var(--sjs-primary) 0%, var(--sjs-primary-dark) 100%);
    color: var(--sjs-white);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.35);
}

.sjs-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(184, 134, 11, 0.45);
}

.sjs-btn--outline {
    background: transparent;
    color: var(--sjs-text-soft);
    border: 2px solid var(--sjs-border-strong);
}

.sjs-btn--outline:hover {
    border-color: var(--sjs-primary);
    color: var(--sjs-primary-light);
}

/* ========== Cookie bar ========== */
.sjs-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 20px;
    background: var(--sjs-surface);
    border-top: 1px solid var(--sjs-border-strong);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.4s var(--sjs-ease);
}

.sjs-cookie.is-visible { transform: translateY(0); }

.sjs-cookie__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sjs-cookie__text {
    color: var(--sjs-text-soft);
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

.sjs-cookie__text a { color: var(--sjs-primary-light); text-decoration: underline; }
.sjs-cookie__text a:hover { color: var(--sjs-accent-light); }

.sjs-cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ========== Header ========== */
.sjs-header {
    position: relative;
    top: 0;
    padding: 14px 24px;
    background: rgba(15, 10, 26, 0.85);
    border-bottom: 1px solid var(--sjs-border);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s;
}

.sjs-header.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3); }

.sjs-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sjs-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--sjs-white);
    font-family: var(--sjs-font-head);
    font-weight: 700;
    font-size: 1.15rem;
    transition: opacity 0.2s;
}

.sjs-logo:hover { opacity: 0.9; }

.sjs-logo__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sjs-primary), var(--sjs-accent));
    border-radius: 8px;
    font-size: 1.1rem;
}

.sjs-nav__list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.sjs-nav__link {
    display: block;
    padding: 10px 16px;
    color: var(--sjs-text-soft);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--sjs-radius);
    transition: color 0.2s, background 0.2s;
}

.sjs-nav__link:hover,
.sjs-nav__link[aria-current="page"] {
    color: var(--sjs-white);
    background: rgba(184, 134, 11, 0.25);
}

.sjs-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sjs-white);
    aria-label: Menu;
}

.sjs-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.sjs-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sjs-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sjs-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.sjs-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px;
    background: var(--sjs-bg-elevated);
    border-bottom: 1px solid var(--sjs-border);
    flex-direction: column;
    gap: 4px;
}

.sjs-header__dropdown.is-open { display: flex; }

.sjs-header__dropdown a {
    padding: 12px 16px;
    color: var(--sjs-text-soft);
    text-decoration: none;
    border-radius: var(--sjs-radius);
}

.sjs-header__dropdown a:hover { background: rgba(184, 134, 11, 0.2); color: var(--sjs-white); }

@media (max-width: 768px) {
    .sjs-nav { display: none; }
    .sjs-burger { display: flex; }
    .sjs-header { position: relative; }
}

/* ========== Hero ========== */
.sjs-hero {
    padding: 80px 24px 100px;
    text-align: center;
}

.sjs-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    background: rgba(184, 134, 11, 0.25);
    border: 1px solid rgba(184, 134, 11, 0.45);
    border-radius: var(--sjs-radius-pill);
    color: var(--sjs-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: sjs-fade-up 0.8s var(--sjs-ease);
}

.sjs-hero__title {
    font-family: var(--sjs-font-head);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    color: var(--sjs-white);
    margin-bottom: 1.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: sjs-fade-up 0.8s 0.1s both var(--sjs-ease);
}

.sjs-hero__sub {
    color: var(--sjs-text-soft);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: sjs-fade-up 0.8s 0.2s both var(--sjs-ease);
}

.sjs-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: sjs-fade-up 0.8s 0.3s both var(--sjs-ease);
}

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

/* ========== Section ========== */
.sjs-section {
    padding: 72px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.sjs-section__head {
    text-align: center;
    margin-bottom: 3rem;
}

.sjs-section__title {
    font-family: var(--sjs-font-head);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--sjs-white);
    margin-bottom: 0.5rem;
}

.sjs-section__sub {
    color: var(--sjs-text-soft);
    font-size: 1rem;
}

/* ========== Feature cards (3 columns) ========== */
.sjs-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.sjs-feature-card {
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sjs-feature-card:hover {
    border-color: rgba(184, 134, 11, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--sjs-glow);
}

.sjs-feature-card h3 {
    font-family: var(--sjs-font-head);
    font-size: 1.2rem;
    color: var(--sjs-white);
    margin-bottom: 0.5rem;
}

.sjs-feature-card p { color: var(--sjs-text-soft); font-size: 0.95rem; }

/* ========== Game cards ========== */
.sjs-game-modes {
    display: grid;
    gap: 32px;
}

.sjs-game-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sjs-game-card:hover { border-color: rgba(184, 134, 11, 0.35); box-shadow: var(--sjs-glow); }

@media (max-width: 768px) {
    .sjs-game-card { grid-template-columns: 1fr; }
}

.sjs-game-card__tag {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0.75rem;
    background: rgba(184, 134, 11, 0.2);
    border-radius: var(--sjs-radius-pill);
    color: var(--sjs-accent-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.sjs-game-card h3 {
    font-family: var(--sjs-font-head);
    font-size: 1.5rem;
    color: var(--sjs-white);
    margin-bottom: 0.5rem;
}

.sjs-game-card__desc { color: var(--sjs-text-soft); margin-bottom: 1rem; font-size: 0.95rem; }

.sjs-game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--sjs-text-soft);
}

.sjs-game-card__meta span { display: flex; align-items: center; gap: 6px; }

.sjs-game-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sjs-game-card__visual {
    width: 200px;
    min-height: 140px;
    border-radius: var(--sjs-radius);
    overflow: hidden;
    border: 2px solid var(--sjs-border-strong);
    box-shadow: var(--sjs-shadow);
    flex-shrink: 0;
    background: var(--sjs-bg-elevated);
}

.sjs-game-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sjs-feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--sjs-border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjs-bg-elevated);
}

.sjs-feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Why us / list ========== */
.sjs-why-list {
    display: grid;
    gap: 20px;
}

.sjs-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
}

.sjs-why-item__icon { font-size: 1.5rem; flex-shrink: 0; }

.sjs-why-item h3 { font-size: 1.1rem; color: var(--sjs-white); margin-bottom: 0.25rem; }

.sjs-why-item p { color: var(--sjs-text-soft); font-size: 0.95rem; }

/* ========== Quick links ========== */
.sjs-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.sjs-quick-link {
    display: block;
    padding: 1.5rem;
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s;
}

.sjs-quick-link:hover {
    border-color: var(--sjs-primary);
    transform: translateY(-2px);
}

.sjs-quick-link h3 { font-size: 1.1rem; color: var(--sjs-white); margin-bottom: 0.5rem; }

.sjs-quick-link p { color: var(--sjs-text-soft); font-size: 0.9rem; }

/* ========== Age notice block ========== */
.sjs-age-notice {
    text-align: center;
    padding: 2rem;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--sjs-radius);
    margin-top: 2rem;
}

.sjs-age-notice p { color: var(--sjs-text-soft); margin-bottom: 1rem; }

/* ========== Footer ========== */
.sjs-footer {
    margin-top: 4rem;
    padding-top: 0;
    border-top: 1px solid var(--sjs-border);
}

.sjs-footer__stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--sjs-primary), var(--sjs-primary-light));
    margin-bottom: 2rem;
}

.sjs-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px 2rem; }

.sjs-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .sjs-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.sjs-footer__brand .sjs-logo { margin-bottom: 0.5rem; }

.sjs-footer__slogan {
    color: var(--sjs-text-soft);
    font-size: 0.9rem;
    max-width: 280px;
}

.sjs-footer__links-title {
    display: block;
    font-weight: 600;
    color: var(--sjs-white);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sjs-footer__links a {
    display: block;
    color: var(--sjs-text-soft);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.sjs-footer__links a:hover { color: var(--sjs-primary-light); }

.sjs-footer__disclaimer {
    padding: 1rem 0;
    border-top: 1px solid var(--sjs-border);
    margin-bottom: 1rem;
}

.sjs-footer__disclaimer p {
    font-size: 0.8rem;
    color: var(--sjs-text-soft);
    line-height: 1.6;
}

.sjs-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--sjs-border);
}

.sjs-footer__badge-link {
    display: inline-block;
    transition: opacity 0.2s;
}

.sjs-footer__badge-link:hover { opacity: 0.85; }

.sjs-footer__badge-link img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.sjs-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sjs-footer__copy, .sjs-footer__geo {
    font-size: 0.85rem;
    color: var(--sjs-text-soft);
}

/* ========== Page title (inner pages) ========== */
.sjs-page-hero {
    padding: 48px 24px 40px;
    text-align: center;
    position: relative;
}

.sjs-page-hero h1 {
    font-family: var(--sjs-font-head);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--sjs-white);
    margin-bottom: 0.5rem;
}

.sjs-page-hero p { color: var(--sjs-text-soft); font-size: 1rem; }

/* ========== Content block ========== */
.sjs-content {
    max-width: 720px;
    margin: 0 auto;
}

.sjs-content h2 { font-size: 1.35rem; color: var(--sjs-white); margin: 2rem 0 0.75rem; }

.sjs-content p, .sjs-content li { color: var(--sjs-text-soft); margin-bottom: 0.75rem; }

.sjs-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.sjs-content a { color: var(--sjs-primary-light); text-decoration: underline; }

.sjs-content a:hover { color: var(--sjs-accent-light); }

/* ========== Game page layout ========== */
.sjs-game-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

.sjs-game-panel {
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sjs-game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.sjs-game-stat {
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.25) 0%, rgba(201, 162, 39, 0.1) 100%);
    border-radius: var(--sjs-radius);
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.sjs-game-stat__label { font-size: 0.8rem; color: var(--sjs-text-soft); margin-bottom: 4px; }

.sjs-game-stat__value { font-size: 1.35rem; font-weight: 700; color: var(--sjs-white); text-shadow: 0 0 20px rgba(184, 134, 11, 0.35); }

/* ========== Joy Reels page — Beautiful flower style ========== */
.sjs-reels-page {
    padding: 24px 24px 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sjs-reels-game {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(184, 134, 11, 0.4);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sjs-reels-game--reels {
    background-image: linear-gradient(180deg, rgba(12,15,10,0.82) 0%, rgba(12,15,10,0.75) 50%, rgba(12,15,10,0.82) 100%),
                      url("/assets../images/Joy-Reels.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sjs-reels-game__top {
    padding: 16px 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    visibility: visible !important;
    min-height: 56px;
    flex-shrink: 0;
}

.sjs-reels-game__title {
    font-family: var(--sjs-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sjs-primary-light);
}

.sjs-reels-game__stats {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--sjs-text-soft);
}

.sjs-reels-game__stats strong { color: var(--sjs-white); }

.sjs-reels-game__top,
.sjs-reels-game__bottom { color: var(--sjs-text); }

.sjs-reels-game__reels-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    background: linear-gradient(180deg, rgba(15,25,12,0.75) 0%, rgba(10,18,8,0.8) 100%);
}

.sjs-reels-game--reels .sjs-reels-game__reels-wrap {
    background: linear-gradient(180deg, rgba(15,25,12,0.5) 0%, rgba(10,18,8,0.6) 100%);
}

.sjs-reels-game__reels {
    display: flex;
    justify-content: center;
    gap: 6px;
    perspective: 400px;
}

.sjs-reels-game__bottom {
    padding: 20px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    visibility: visible !important;
    min-height: 120px;
    flex-shrink: 0;
}

.sjs-reels-game__bet {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sjs-reels-game__bet .sjs-bet-control__label { margin: 0; }

.sjs-reels-game__bet input[type="number"] {
    width: 70px;
    padding: 8px 10px;
    font-size: 1rem;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 8px;
    color: var(--sjs-white);
}

.sjs-reels-game__bet button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.5);
    border-radius: 8px;
    color: var(--sjs-primary-light);
    font-size: 1.25rem;
    cursor: pointer;
}

.sjs-reels-game__spin {
    padding: 16px 48px;
    font-family: var(--sjs-font-head);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, var(--sjs-primary-light) 0%, var(--sjs-primary) 100%);
    border: none;
    border-radius: 12px;
    color: #0c0f0a;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sjs-reels-game__spin:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(184, 134, 11, 0.6);
}

.sjs-reels-game__spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sjs-reels-game__msg {
    font-size: 0.95rem;
    color: var(--sjs-text-soft);
    margin: 0;
    min-height: 1.5em;
}

.sjs-reels-page__links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sjs-reels-page__help {
    max-width: 560px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid var(--sjs-border);
}

.sjs-reels-page__help summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--sjs-text-soft);
}

.sjs-reels-page__help p { margin: 0.75rem 0 0; color: var(--sjs-text-soft); font-size: 0.9rem; }

/* ========== Game frame (Joy Wheel / Joy 21 — same style as Joy Reels) ========== */
.sjs-game-page {
    padding: 24px 24px 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sjs-game-frame {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(184, 134, 11, 0.4);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sjs-game-frame--wheel {
    background-image: linear-gradient(180deg, rgba(12,15,10,0.82) 0%, rgba(12,15,10,0.75) 50%, rgba(12,15,10,0.82) 100%),
                      url("/assets../images/Joy-Wheel.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sjs-game-frame--21 {
    background-image: linear-gradient(180deg, rgba(12,15,10,0.82) 0%, rgba(12,15,10,0.75) 50%, rgba(12,15,10,0.82) 100%),
                      url("/assets../images/Joy-21.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sjs-game-frame__top {
    background: rgba(0, 0, 0, 0.9);
    padding: 16px 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    visibility: visible !important;
    min-height: 56px;
    flex-shrink: 0;
}

.sjs-game-frame__title {
    font-family: var(--sjs-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sjs-primary-light);
}

.sjs-game-frame__stats {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--sjs-text-soft);
}

.sjs-game-frame__stats strong { color: var(--sjs-white); }

.sjs-game-frame__top,
.sjs-game-frame__bottom { color: var(--sjs-text); }

.sjs-game-frame__area {
    padding: 20px;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(15,25,12,0.75) 0%, rgba(10,18,8,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sjs-game-frame--wheel .sjs-game-frame__area,
.sjs-game-frame--21 .sjs-game-frame__area {
    background: linear-gradient(180deg, rgba(15,25,12,0.5) 0%, rgba(10,18,8,0.6) 100%);
}

.sjs-game-frame__bottom {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    visibility: visible !important;
    min-height: 120px;
    flex-shrink: 0;
}

/* Reel — 5 reels, 3 visible rows (Beautiful flower style) */
.sjs-reels-game__reels .sjs-reel {
    width: 100px;
    height: 288px;
    background: linear-gradient(180deg, #1a1f14 0%, #0f140a 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(184, 134, 11, 0.35);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.sjs-reels-game__reels .sjs-reel__window {
    width: 100%;
    height: 288px;
    overflow: hidden;
    position: relative;
}

.sjs-reels-game__reels .sjs-reel__strip {
    position: relative;
    width: 100%;
    height: 100%;
}

.sjs-reels-game__reels .sjs-reel__symbol {
    position: absolute;
    left: 0;
    width: 100px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 2px;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.2), inset 0 -2px 6px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.15);
    transition: none;
}

.sjs-reels-game__reels .sjs-reel__symbol-char {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.sjs-reels-game__reels .sjs-reel__symbol--K { background: linear-gradient(165deg, #f59e0b 0%, #d97706 50%, #b45309 100%); }
.sjs-reels-game__reels .sjs-reel__symbol--B { background: linear-gradient(165deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%); }
.sjs-reels-game__reels .sjs-reel__symbol--F { background: linear-gradient(165deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%); }
.sjs-reels-game__reels .sjs-reel__symbol--W { background: linear-gradient(165deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%); }
.sjs-reels-game__reels .sjs-reel__symbol--M { background: linear-gradient(165deg, #ec4899 0%, #db2777 50%, #be185d 100%); }
.sjs-reels-game__reels .sjs-reel__symbol--S { background: linear-gradient(165deg, #10b981 0%, #059669 50%, #047857 100%); }

.sjs-reels-game__reels .sjs-reel.spinning {
    filter: blur(4px);
    transition: filter 0.15s ease-out;
}

/* Legacy reels (e.g. index preview) — keep 3 reels compact */
.sjs-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
    perspective: 600px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(10,20,8,0.7) 0%, rgba(20,35,15,0.6) 50%, rgba(10,20,8,0.7) 100%);
    border-radius: 20px;
    border: 3px solid rgba(184, 134, 11, 0.5);
    box-shadow: inset 0 0 40px rgba(184, 134, 11, 0.15), 0 0 30px rgba(184, 134, 11, 0.2);
}

.sjs-reels .sjs-reel {
    width: 88px;
    height: 104px;
    background: linear-gradient(180deg, #1a1f14 0%, #0f140a 100%);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255,255,255,0.15);
}

.sjs-reels .sjs-reel__window { height: 104px; overflow: hidden; }

.sjs-reels .sjs-reel__strip { display: flex; flex-direction: column; align-items: center; }

.sjs-reels .sjs-reel__symbol {
    width: 88px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    margin: 2px;
    border: 2px solid rgba(255,255,255,0.2);
}

.sjs-reels .sjs-reel__symbol-char { font-size: 2rem; font-weight: 800; color: #fff; }

.sjs-reels .sjs-reel__symbol--K { background: linear-gradient(165deg, #f59e0b 0%, #d97706 100%); }
.sjs-reels .sjs-reel__symbol--B { background: linear-gradient(165deg, #3b82f6 0%, #2563eb 100%); }
.sjs-reels .sjs-reel__symbol--F { background: linear-gradient(165deg, #ef4444 0%, #dc2626 100%); }
.sjs-reels .sjs-reel__symbol--W { background: linear-gradient(165deg, #8b5cf6 0%, #7c3aed 100%); }
.sjs-reels .sjs-reel__symbol--M { background: linear-gradient(165deg, #ec4899 0%, #db2777 100%); }
.sjs-reels .sjs-reel__symbol--S { background: linear-gradient(165deg, #10b981 0%, #059669 100%); }

/* ========== Wheel game — colorful ========== */
.sjs-wheel-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    padding: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(15,25,12,0.85) 0%, rgba(10,18,8,0.95) 70%);
    border-radius: 50%;
    border: 4px solid rgba(184, 134, 11, 0.45);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.4), 0 0 40px rgba(184, 134, 11, 0.2);
}

.sjs-wheel {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 0 30px rgba(184, 134, 11, 0.35);
    transition: transform 4s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.sjs-wheel::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.35);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.25), 0 0 20px rgba(184, 134, 11, 0.5);
    z-index: 1;
}

.sjs-wheel__segment {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0% 0%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12%;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7), 0 0 10px rgba(255,255,255,0.2);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border: 1px solid rgba(255,255,255,0.15);
}

.sjs-wheel__segment span {
    position: relative;
    z-index: 1;
}

.sjs-wheel__pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 32px solid #daa520;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.sjs-wheel-controls { text-align: center; margin-top: 1.5rem; }

/* ========== 21 / Blackjack — colorful cards ========== */
.sjs-21-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 2rem 0;
    padding: 24px;
    background: linear-gradient(180deg, rgba(15,35,18,0.75) 0%, rgba(10,25,12,0.85) 100%);
    border-radius: 20px;
    border: 2px solid rgba(184, 134, 11, 0.4);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.25);
}

.sjs-21-hand {
    width: 100%;
    max-width: 420px;
    min-height: 130px;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.sjs-21-hand__title { font-size: 0.9rem; color: var(--sjs-text-soft); margin-bottom: 10px; font-weight: 600; }

.sjs-21-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sjs-21-card {
    width: 64px;
    height: 88px;
    background: linear-gradient(155deg, #ffffff 0%, #f8fafc 40%, #e2e8f0 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.sjs-21-card::before {
    content: none;
}

.sjs-21-card.red { color: #dc2626; }

.sjs-21-card.red .sjs-21-card__suit { color: #dc2626; }

.sjs-21-card .sjs-21-card__rank {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.sjs-21-card .sjs-21-card__suit {
    font-size: 1.5rem;
    margin-top: 2px;
    color: #1e293b;
}

.sjs-21-card.back {
    background: linear-gradient(145deg, #1a2f1a 0%, #0d1a0d 100%);
    border: 2px solid rgba(184, 134, 11, 0.4);
    color: var(--sjs-primary-light);
    font-size: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35), inset 0 0 30px rgba(184, 134, 11, 0.08);
}

.sjs-21-card.back::before {
    content: '♪';
    font-size: 1.75rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

.sjs-21-card.back .sjs-21-card__rank,
.sjs-21-card.back .sjs-21-card__suit { display: none; }

.sjs-21-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

.sjs-21-actions .sjs-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ========== Bet control ========== */
.sjs-bet-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1rem 0;
}

.sjs-bet-control__label { font-weight: 600; color: var(--sjs-text-soft); }

.sjs-bet-control input[type="number"] {
    width: 80px;
    padding: 10px 12px;
    font-size: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    color: var(--sjs-white);
}

.sjs-bet-control button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    color: var(--sjs-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.sjs-bet-control button:hover {
    background: rgba(184, 134, 11, 0.25);
    border-color: var(--sjs-primary);
}

/* ========== Achievements ========== */
.sjs-badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.sjs-badge {
    padding: 1.25rem;
    background: var(--sjs-bg-elevated);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    text-align: center;
    transition: border-color 0.3s;
}

.sjs-badge.unlocked { border-color: rgba(184, 134, 11, 0.55); }

.sjs-badge__icon { font-size: 2rem; margin-bottom: 0.5rem; }

.sjs-badge__name { font-weight: 600; color: var(--sjs-white); font-size: 0.95rem; }

.sjs-badge__desc { font-size: 0.8rem; color: var(--sjs-text-soft); }

/* ========== Form ========== */
.sjs-form-group { margin-bottom: 1rem; }

.sjs-form-group label {
    display: block;
    font-weight: 500;
    color: var(--sjs-text-soft);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.sjs-form-group input,
.sjs-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    color: var(--sjs-white);
    font-family: var(--sjs-font);
    font-size: 1rem;
}

.sjs-form-group textarea { min-height: 120px; resize: vertical; }

.sjs-form-group input:focus,
.sjs-form-group textarea:focus {
    outline: none;
    border-color: var(--sjs-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25);
}

/* ========== FAQ ========== */
.sjs-faq-list { max-width: 680px; margin: 0 auto; }

.sjs-faq-item {
    border: 1px solid var(--sjs-border);
    border-radius: var(--sjs-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.sjs-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--sjs-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sjs-faq-item summary::-webkit-details-marker { display: none; }

.sjs-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--sjs-primary-light);
}

.sjs-faq-item[open] summary::after { content: '−'; }

.sjs-faq-item__content { padding: 0 1.25rem 1rem; color: var(--sjs-text-soft); font-size: 0.95rem; }

/* ========== Utility ========== */
.sjs-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== Games — mobile adaptation ========== */
@media (max-width: 768px) {
    .sjs-reels-page,
    .sjs-game-page {
        padding: 16px 16px 1.5rem;
    }

    .sjs-reels-game__top,
    .sjs-game-frame__top {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-height: auto;
    }

    .sjs-reels-game__title,
    .sjs-game-frame__title { font-size: 1.25rem; }

    .sjs-reels-game__stats,
    .sjs-game-frame__stats {
        gap: 12px;
        font-size: 0.9rem;
    }

    .sjs-reels-game__reels-wrap {
        padding: 12px;
        min-height: 240px;
    }

    .sjs-reels-game__reels .sjs-reel {
        width: 52px;
        height: 156px;
    }

    .sjs-reels-game__reels .sjs-reel__window { height: 156px; }

    .sjs-reels-game__reels .sjs-reel__symbol {
        width: 52px;
        height: 52px;
        margin: 1px;
    }

    .sjs-reels-game__reels .sjs-reel__symbol-char { font-size: 1.1rem; }

    .sjs-reels-game__bottom,
    .sjs-game-frame__bottom {
        padding: 16px;
        min-height: auto;
        gap: 10px;
    }

    .sjs-reels-game__bet,
    .sjs-game-frame .sjs-reels-game__bet {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sjs-reels-game__bet input[type="number"],
    .sjs-game-frame .sjs-reels-game__bet input[type="number"] {
        width: 64px;
        padding: 10px 8px;
        font-size: 1rem;
    }

    .sjs-reels-game__bet button,
    .sjs-game-frame .sjs-reels-game__bet button {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .sjs-reels-game__spin {
        padding: 14px 32px;
        font-size: 1.15rem;
        min-width: 120px;
    }

    .sjs-21-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .sjs-21-actions .sjs-btn,
    .sjs-21-actions .sjs-reels-game__spin {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .sjs-game-frame__area { padding: 10px; min-height: 220px;flex-direction: column; }

    .sjs-21-area {
        margin: 1rem 0;
        padding: 16px;
        gap: 16px;
    }

    .sjs-21-hand {
        max-width: 100%;
        min-height: 100px;
        padding: 1rem;
    }

    .sjs-21-cards { gap: 6px; }

    .sjs-21-card {
        width: 48px;
        height: 66px;
        font-size: 1rem;
    }

    .sjs-21-card .sjs-21-card__rank { font-size: 0.85rem; }
    .sjs-21-card .sjs-21-card__suit { font-size: 1.1rem; }

    .sjs-wheel-wrap {
        margin: 1rem 0;
        padding: 12px;
    }

    .sjs-wheel {
        width: 220px;
        height: 220px;
    }

    .sjs-wheel__segment { font-size: 0.9rem; }

    .sjs-reels-page__links,
    .sjs-game-page > div[style*="flex"] {
        padding: 0 16px !important;
        margin: 0.75rem auto !important;
        gap: 8px;
    }

    .sjs-reels-page__links .sjs-btn,
    .sjs-game-page > div[style*="flex"] .sjs-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sjs-reels-game__reels .sjs-reel {
        width: 44px;
        height: 132px;
    }

    .sjs-reels-game__reels .sjs-reel__window { height: 132px; }
    .sjs-reels-game__reels .sjs-reel__symbol { width: 44px; height: 44px; }
    .sjs-reels-game__reels .sjs-reel__symbol-char { font-size: 0.95rem; }

    .sjs-wheel { width: 180px; height: 180px; }
    .sjs-wheel__segment { font-size: 0.75rem; }

    .sjs-21-card { width: 42px; height: 58px; font-size: 0.9rem; }
}

/* ========== Contact page — better visibility ========== */
.sjs-contact .sjs-page-hero {
    padding: 32px 20px 28px;
    margin: 0 24px 0;
    background: rgba(20, 26, 16, 0.92);
    border-radius: 16px;
    border: 1px solid var(--sjs-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.sjs-contact .sjs-page-hero h1 {
    color: var(--sjs-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.sjs-contact .sjs-page-hero p {
    color: var(--sjs-text);
    font-size: 1.05rem;
}

.sjs-contact .sjs-content {
    background: rgba(20, 26, 16, 0.92);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--sjs-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sjs-contact .sjs-form-group label {
    color: var(--sjs-text);
    font-weight: 600;
}

.sjs-contact .sjs-form-group input,
.sjs-contact .sjs-form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: var(--sjs-white);
}

.sjs-contact .sjs-form-group input::placeholder,
.sjs-contact .sjs-form-group textarea::placeholder {
    color: var(--sjs-text-soft);
}

@media (max-width: 768px) {
    .sjs-contact .sjs-page-hero { margin: 0 16px 0; padding: 24px 16px; }
    .sjs-contact .sjs-section { padding: 32px 16px; }
    .sjs-contact .sjs-content { padding: 1.5rem 1rem; }
}
