:root {
--bg: #0b1535;
--bg-soft: #0f1f45;
--surface: #ffffff;
--surface-tint: #f3f6ff;
--text: #0f172a;
--muted: #475569;
--line: #e2e8f0;
--brand: #c9a227;
--brand-2: #2dd4bf;
--danger: #b45309;
--shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
--radius: 16px;
--radius-sm: 10px;
--max: 1240px;
--font: "Manrope", system-ui, sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
[hidden] {
display: none !important;
}
html {
scroll-behavior: smooth;
scrollbar-gutter: stable;
}
html.is-scroll-locked {
overflow: hidden;
}
html.is-scroll-locked body {
overflow: hidden;
}
body {
margin: 0;
font-family: var(--font);
color: var(--text);
background: var(--surface-tint);
line-height: 1.6;
}
img {
max-width: 100%;
height: auto;
display: block;
}
h1, h2, h3, .h2, .h3 {
overflow-wrap: break-word;
word-break: break-word;
}
a {
color: #1d4ed8;
text-underline-offset: 3px;
}
a:hover {
color: #1e3a8a;
}
.wrap {
width: min(100% - 32px, var(--max));
margin-inline: auto;
}
.skip {
position: absolute;
left: -999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
.skip:focus {
left: 16px;
top: 16px;
width: auto;
height: auto;
padding: 10px 14px;
background: #fff;
z-index: 2000;
border-radius: 8px;
outline: 2px solid var(--brand);
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.topnote {
background: #fff7ed;
color: #7c2d12;
border-bottom: 1px solid #fed7aa;
font-size: 0.95rem;
}
.topnote p {
margin: 0;
padding: 12px 16px;
width: min(100% - 32px, var(--max));
margin-inline: auto;
}
.breadcrumb {
margin: 0;
}
.breadcrumb__list {
display: flex;
flex-wrap: wrap;
align-items: center;
list-style: none;
margin: 0 0 18px;
padding: 0;
font-size: 0.875rem;
color: var(--muted);
}
.breadcrumb__item {
display: inline-flex;
align-items: center;
max-width: 100%;
}
.breadcrumb__item + .breadcrumb__item::before {
content: "\203a";
margin-right: 10px;
margin-left: 2px;
color: #94a3b8;
font-size: 1.05rem;
line-height: 1;
}
.breadcrumb__link {
color: var(--text);
text-decoration: none;
font-weight: 600;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.breadcrumb__link:hover {
color: #1d4ed8;
}
.breadcrumb__link--home {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
min-height: 40px;
margin: 0 2px 0 -8px;
padding: 8px;
border-radius: 10px;
color: #c9a227;
line-height: 0;
}
.breadcrumb__link.breadcrumb__link--home:hover {
color: #e8d48b;
background: rgba(201, 162, 39, 0.14);
}
.breadcrumb__link--home:focus-visible {
outline: 2px solid #c9a227;
outline-offset: 2px;
}
.breadcrumb__home-ico {
display: block;
flex-shrink: 0;
transform: translateY(-0.06em);
}
.breadcrumb__current {
font-weight: 600;
color: var(--muted);
overflow-wrap: break-word;
word-break: break-word;
}
.header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--line);
}
.header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 14px 0;
}
.brand {
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--bg);
font-weight: 700;
letter-spacing: -0.02em;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.brand__mark {
flex-shrink: 0;
border-radius: 12px;
overflow: hidden;
display: block;
}
.nav {
display: flex;
align-items: center;
gap: 18px;
}
.nav a {
text-decoration: none;
color: var(--text);
font-weight: 600;
font-size: 0.95rem;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.nav a:hover {
color: #1d4ed8;
}
.nav__cta {
padding: 10px 16px;
border-radius: 999px;
background: linear-gradient(120deg, var(--brand), #e8d48b);
color: #1a1508 !important;
box-shadow: var(--shadow);
transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover {
filter: brightness(1.06);
transform: translateY(-2px);
box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}
.nav__cta:active {
transform: translateY(0);
filter: brightness(0.98);
}
.navtoggle {
display: none;
border: 0;
background: transparent;
padding: 10px;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.2s ease, opacity 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.navtoggle:hover {
background: #f1f5f9;
}
.navtoggle__bar {
display: block;
width: 26px;
height: 2px;
background: var(--bg);
margin: 6px 0;
border-radius: 2px;
transition: transform 0.2s ease, opacity 0.2s ease;
}
.navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(2) {
opacity: 0;
}
.navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
.hero {
position: relative;
isolation: isolate;
min-height: clamp(420px, 62vh, 720px);
display: grid;
align-items: center;
color: #f8fafc;
background-color: #0b1535;
}
.hero__media {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}
.hero__img {
display: block;
width: 100%;
height: 100%;
min-height: 100%;
object-fit: cover;
object-position: center;
max-height: 720px;
}
.hero::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(51, 54, 62, 0.5) 0%, rgba(11, 21, 53, 0.92) 100%);
z-index: 1;
pointer-events: none;
}
.hero__content {
position: relative;
z-index: 2;
padding: 48px 0 56px;
}
.hero__eyebrow {
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.75rem;
margin: 0 0 12px;
opacity: 0.9;
}
.hero__title {
font-size: clamp(1.9rem, 4vw, 3rem);
line-height: 1.1;
margin: 0 0 14px;
}
.hero__lead {
font-size: clamp(1.05rem, 2.2vw, 1.25rem);
margin: 0 0 22px;
max-width: 52ch;
opacity: 0.95;
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.section {
padding: 64px 0;
}
.section--tint {
background: #eef2ff;
}
.section__intro {
max-width: 70ch;
color: var(--muted);
margin-top: 0;
}
.h2 {
font-size: clamp(1.5rem, 2.6vw, 2rem);
margin: 0 0 16px;
}
.h3 {
font-size: 1.15rem;
margin: 0 0 10px;
}
.h2:has(> svg),
.h3:has(> svg) {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.h2:has(> svg) {
gap: 10px;
}
.h3:has(> svg) {
gap: 8px;
}
.h2:has(> svg) > svg,
.h3:has(> svg) > svg {
flex-shrink: 0;
display: block;
margin: 0;
}
.lottery .h3:has(> svg) {
justify-content: center;
}
.lead {
font-size: 1.05rem;
}
.grid-2 {
display: grid;
gap: 28px;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
}
.card {
background: var(--surface);
border-radius: var(--radius);
padding: 22px;
box-shadow: var(--shadow);
border: 1px solid var(--line);
}
.card--soft {
background: #ffffffcc;
}
.card--outline {
border: 1px dashed #cbd5e1;
box-shadow: none;
margin-top: 20px;
}
.list {
padding-left: 1.1rem;
margin: 0;
}
.list li {
margin: 8px 0;
}
.kv {
list-style: none;
padding: 0;
margin: 0;
}
.kv li {
display: grid;
grid-template-columns: 140px 1fr;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid var(--line);
font-size: 0.95rem;
}
.kv li span:first-child {
color: var(--muted);
}
.strong {
font-weight: 700;
}
.small {
font-size: 0.85rem;
color: var(--muted);
}
.alert {
padding: 14px 16px;
border-radius: var(--radius-sm);
background: #fffbeb;
border: 1px solid #fcd34d;
color: #92400e;
font-weight: 600;
}
.lottery-grid {
display: grid;
gap: 18px;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lottery {
background: var(--surface);
border-radius: var(--radius);
padding: 20px;
border: 1px solid var(--line);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.lottery__logo {
height: 84px;
width: auto;
max-width: 100%;
object-fit: contain;
margin-bottom: 20px;
}
.lottery:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.lottery__jackpot strong {
font-size: 1.25rem;
color: #0f766e;
}
.iframe-wrap {
border-radius: var(--radius-sm);
overflow: hidden;
border: 1px solid var(--line);
margin-top: 12px;
background: #fff;
}
.iframe-wrap iframe {
width: 100%;
min-height: 320px;
border: 0;
}
.table-wrap {
overflow-x: auto;
border-radius: var(--radius-sm);
border: 1px solid var(--line);
background: var(--surface);
}
.table {
width: 100%;
border-collapse: collapse;
font-size: 0.95rem;
}
.table th,
.table td {
padding: 12px 14px;
text-align: left;
border-bottom: 1px solid var(--line);
}
.table th {
background: #f8fafc;
}
.faq-tools {
margin: 18px 0;
}
.faq-item {
border: 1px solid var(--line);
border-radius: var(--radius-sm);
background: var(--surface);
margin-bottom: 10px;
overflow: hidden;
}
.faq-q {
width: 100%;
text-align: left;
padding: 16px 18px;
background: transparent;
border: 0;
font: inherit;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
gap: 12px;
transition: background-color 0.2s ease, color 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.faq-q:hover {
background: #f8fafc;
color: #1d4ed8;
}
.faq-q::after {
content: "+";
font-weight: 700;
color: var(--muted);
}
.faq-q[aria-expanded="true"]::after {
content: "–";
}
.faq-a {
padding: 0 18px 16px;
color: var(--muted);
}
.faq-item.is-hidden {
display: none;
}
.form {
background: var(--surface);
padding: 22px;
border-radius: var(--radius);
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 10px;
}
.form label {
font-weight: 600;
font-size: 0.9rem;
}
.input {
width: 100%;
padding: 12px 14px;
border-radius: 10px;
border: 1px solid #cbd5e1;
font: inherit;
background: #fff;
}
.input:focus {
outline: 2px solid #93c5fd;
border-color: #60a5fa;
}
.input--area {
resize: vertical;
min-height: 120px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 18px;
border-radius: 999px;
border: 0;
cursor: pointer;
font: inherit;
font-weight: 700;
text-decoration: none;
transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.btn:hover {
transform: translateY(-2px);
}
.btn:active {
transform: translateY(0);
filter: brightness(0.97);
}
.btn--primary {
background: linear-gradient(120deg, var(--brand), #e8d48b);
color: #1a1508;
box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}
.btn--primary:hover {
filter: brightness(1.06);
box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}
.btn--ghost {
background: transparent;
color: #e2e8f0;
border: 1px solid rgba(226, 232, 240, 0.55);
box-shadow: none;
}
.btn--ghost:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.9);
filter: brightness(1.05);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.hero .btn--ghost {
color: #f8fafc;
}
.agegate__actions .btn--ghost:hover {
background: #f1f5f9;
border-color: #64748b;
color: var(--text);
filter: none;
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}
.btn--sm {
padding: 8px 12px;
font-size: 0.85rem;
}
.footer {
background: var(--bg);
color: #e2e8f0;
padding: 48px 0 24px;
margin-top: 24px;
}
.footer a {
color: #bfdbfe;
text-decoration: none;
}
.footer a:hover {
color: #fff;
}
.footer__grid {
display: grid;
gap: 28px;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer__brand.brand {
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 0 8px;
display: inline-flex;
}
.brand--footer {
color: #f8fafc;
}
.brand--footer:hover {
color: #fff;
}
.footer__disc {
margin: 0 0 12px;
color: #cbd5e1;
}
.footer__disc + .footer__logos {
margin-top: 4px;
margin-bottom: 12px;
}
.footer__links {
list-style: none;
padding: 0;
margin: 0;
}
.footer__links li {
margin: 8px 0;
}
.footer__bottom {
border-top: 1px solid rgba(148, 163, 184, 0.25);
margin-top: 28px;
padding-top: 16px;
font-size: 0.9rem;
color: #94a3b8;
}
.footer__copy {
margin: 0;
}
.footer__logos {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
gap: 20px 28px;
list-style: none;
padding: 0;
margin: 0;
}
.footer__logos a {
display: block;
line-height: 0;
text-decoration: none;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.footer__logos img {
	max-height: 36px;
	width: auto;
	max-width: min(162px, 100%);
	height: auto;
	opacity: 0.95;
}
.footer__logo--mono {
	filter: grayscale(1) brightness(0) invert(1);
}
.footer__logos .footer__age {
	display: block;
	max-height: 36px;
	width: auto;
	max-width: min(90px, 100%);
	height: auto;
}
.footer__logos a:hover img {
	opacity: 1;
}
.footer__logos a:hover .footer__logo--mono {
	filter: grayscale(1) brightness(0) invert(1);
}
.agegate {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.72);
display: grid;
place-items: center;
z-index: 3000;
padding: 20px;
}
.agegate__panel {
background: #fff;
border-radius: var(--radius);
padding: 28px;
max-width: 480px;
width: 100%;
box-shadow: var(--shadow);
}
.agegate__badge {
margin: 0 0 8px;
font-weight: 800;
}
.agegate__text {
margin: 0 0 18px;
color: var(--muted);
}
.agegate__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.agegate__actions .btn--ghost {
color: var(--text);
border: 1px solid #cbd5e1;
}
.playmodal {
position: fixed;
inset: 0;
z-index: 2900;
padding: 20px;
display: grid;
place-items: center;
overflow-y: auto;
box-sizing: border-box;
}
.playmodal__scrim {
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.65);
border: 0;
padding: 0;
margin: 0;
cursor: pointer;
}
.playmodal__panel {
position: relative;
z-index: 1;
background: #fff;
border-radius: var(--radius);
padding: 22px 24px;
max-width: 440px;
width: 100%;
box-shadow: var(--shadow);
}
.playmodal__close {
position: absolute;
top: 10px;
right: 10px;
border: 0;
background: transparent;
font-size: 1.5rem;
line-height: 1;
width: 2.25rem;
height: 2.25rem;
border-radius: 10px;
cursor: pointer;
color: var(--muted);
transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.playmodal__close:hover {
background: #f1f5f9;
color: var(--text);
}
.playmodal__panel .h2 {
margin-top: 0;
}
.playmodal__form {
display: grid;
gap: 10px;
margin-top: 12px;
}
.playmodal__check {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.9rem;
line-height: 1.45;
}
.playmodal__check input {
margin-top: 4px;
flex-shrink: 0;
}
.playmodal__check label {
margin: 0;
font-weight: 600;
}
.playmodal__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-end;
margin-top: 10px;
}
.playmodal .playmodal__cancel {
color: var(--text);
border: 1px solid #cbd5e1;
background: #fff;
box-shadow: none;
}
.playmodal .playmodal__cancel:hover {
background: #f8fafc;
border-color: #64748b;
filter: none;
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}
@media (max-width: 820px) {
.playmodal__actions {
flex-direction: column;
align-items: stretch;
}
.playmodal__actions .btn {
width: 100%;
justify-content: center;
}
}
.cookiebar {
position: fixed;
left: 16px;
right: 16px;
bottom: 16px;
z-index: 2500;
background: #fff;
border-radius: var(--radius);
border: 1px solid var(--line);
box-shadow: var(--shadow);
padding: 14px 16px;
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
justify-content: space-between;
}
.cookiebar__text {
margin: 0;
flex: 1 1 280px;
font-size: 0.92rem;
color: var(--muted);
}
.form-flash {
position: fixed;
inset: 0;
z-index: 3200;
display: grid;
place-items: center;
padding: 24px;
background: rgba(15, 23, 42, 0.48);
box-sizing: border-box;
}
.form-flash__text {
margin: 0;
max-width: min(440px, 100%);
background: #0f172a;
color: #fff;
padding: 22px 28px;
border-radius: var(--radius);
font-weight: 600;
font-size: 1.05rem;
line-height: 1.45;
text-align: center;
box-shadow: var(--shadow);
animation: form-flash-in 0.32s ease;
}
@keyframes form-flash-in {
from {
opacity: 0;
transform: scale(0.96) translateY(6px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.chatfab {
position: fixed;
right: 18px;
bottom: 96px;
z-index: 2400;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 16px;
border-radius: 999px;
border: 0;
cursor: pointer;
background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
color: #fff;
font-weight: 700;
box-shadow: var(--shadow);
transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.chatfab:hover {
transform: translateY(-2px);
filter: brightness(1.08);
box-shadow: 0 14px 36px rgba(29, 78, 216, 0.35);
}
.chatfab:active {
transform: translateY(0);
filter: brightness(0.96);
}
.chatpanel {
position: fixed;
right: 18px;
bottom: 164px;
width: min(100% - 36px, 360px);
background: #fff;
border-radius: var(--radius);
border: 1px solid var(--line);
box-shadow: var(--shadow);
z-index: 2400;
display: flex;
flex-direction: column;
max-height: min(70vh, 520px);
}
.chatpanel__head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 14px;
border-bottom: 1px solid var(--line);
font-weight: 700;
}
.chatpanel__close {
border: 0;
background: transparent;
font-size: 1.4rem;
line-height: 1;
width: 2.25rem;
height: 2.25rem;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.chatpanel__close:hover {
background: #f1f5f9;
color: #0f172a;
transform: scale(1.05);
}
.chatpanel__close:active {
transform: scale(0.98);
}
.chatpanel__body {
padding: 12px;
overflow-y: auto;
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
font-size: 0.92rem;
}
.chat-bubble {
padding: 10px 12px;
border-radius: 12px;
max-width: 92%;
}
.chat-bubble--bot {
align-self: flex-start;
background: #f1f5f9;
color: var(--text);
}
.chat-bubble--user {
align-self: flex-end;
background: #dbeafe;
color: #1e3a8a;
}
.chatpanel__foot {
display: grid;
grid-template-columns: 1fr auto;
gap: 8px;
padding: 10px;
border-top: 1px solid var(--line);
}
@media (max-width: 1220px) {
.navtoggle {
display: block;
}
.nav {
position: fixed;
inset: 64px 0 auto 0;
background: #fff;
border-bottom: 1px solid var(--line);
padding: 16px;
flex-direction: column;
align-items: flex-start;
transform: translateY(-120%);
opacity: 0;
pointer-events: none;
transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav.is-open {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
}
.nav__cta {
width: 100%;
text-align: center;
justify-content: center;
}
}
@media (max-width: 820px) {
.topnote {
font-size: 0.7rem;
line-height: 1.3;
}
.hero {
min-height: clamp(300px, 48svh, 520px);
}
.hero__content {
padding: 32px 0 32px;
}
.section {
padding: 48px 0;
}
.grid-2 {
grid-template-columns: 1fr;
}
.lottery-grid {
grid-template-columns: 1fr;
}
.footer__grid {
grid-template-columns: 1fr;
}
.kv li {
grid-template-columns: 1fr;
}
.hero__actions .btn {
width: 100%;
justify-content: center;
}
.chatfab span {
display: none;
}
}
@media (max-width: 360px) {
.wrap {
width: min(100% - 20px, var(--max));
}
}
