:root {
--primary: #2D6BFF;
--primary-dark: #1A4BCC;
--secondary: #1E3A8A;
--accent: #F4B942;
--accent-hover: #D49D30;
--bg: #0A1022;
--surface: #131F3F;
--text: #EEF4FF;
--text-muted: #B5C2DE;
--header-bg: #0A1022;
--footer-bg: #060B18;
--border: rgba(238, 244, 255, 0.1);
--font-heading: 'Playfair Display', Georgia, serif;
--font-body: 'Lora', Georgia, serif;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-body);
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
font-size: 16px;
overflow-x: hidden;
padding-bottom: 70px;
}
h1, h2, h3, h4 {
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1rem;
color: var(--text);
}
a {
color: var(--accent);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--text);
}
img {
max-width: 100%;
height: auto;
display: block;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.section-padding {
padding: 80px 0;
}
.text-center {
text-align: center;
}
.mt-2 {
margin-top: 1rem;
}
.mt-3 {
margin-top: 1.5rem;
}
.mt-4 {
margin-top: 2rem;
}
.mb-2 {
margin-bottom: 1rem;
}
.max-w-700 {
max-width: 700px;
}
.max-w-800 {
max-width: 800px;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.bg-surface {
background-color: var(--surface);
}
.bg-cobalt {
background-color: var(--secondary);
}
.border-radius {
border-radius: 8px;
}
.btn {
display: inline-block;
padding: 12px 24px;
font-family: var(--font-body);
font-weight: 700;
border: none;
border-radius: 4px;
cursor: pointer;
transition: var(--transition);
text-align: center;
font-size: 1rem;
}
.btn-primary {
background-color: var(--accent);
color: #0A1022;
}
.btn-primary:hover:not(:disabled) {
background-color: var(--accent-hover);
}
.btn-secondary {
background-color: transparent;
border: 2px solid var(--accent);
color: var(--accent);
}
.btn-secondary:hover {
background-color: var(--accent);
color: #0A1022;
}
.btn-ghost {
background-color: transparent;
color: var(--text);
}
.btn-ghost:hover {
color: var(--accent);
}
.btn-outline {
background-color: transparent;
border: 1px solid var(--border);
color: var(--text);
}
.btn-outline:hover, .btn-outline.selected {
border-color: var(--accent);
color: var(--accent);
}
.btn-full {
width: 100%;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-large {
padding: 16px 32px;
font-size: 1.1rem;
}
.link-arrow::after {
content: ' ➔';
transition: transform 0.3s;
display: inline-block;
}
.link-arrow:hover::after {
transform: translateX(5px);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.main-header {
background-color: var(--header-bg);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
max-width: 1280px;
margin: 0 auto;
}
.brand-area {
display: flex;
align-items: center;
gap: 15px;
}
.age-badge {
background: var(--accent);
color: #0A1022;
font-weight: 700;
font-size: 0.8rem;
padding: 4px 8px;
border-radius: 4px;
}
.logo {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--accent);
}
.main-nav {
display: flex;
gap: 20px;
}
.main-nav a {
color: var(--text);
font-weight: 700;
}
.main-nav a.active, .main-nav a:hover {
color: var(--accent);
}
.auth-area {
display: flex;
gap: 10px;
}
.mobile-nav-toggle {
display: none;
background: none;
border: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.mobile-nav-toggle span {
width: 25px;
height: 2px;
background: var(--text);
transition: var(--transition);
}
.hero-dashboard {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
background: url('images/winshelter-express-first-class.webp') center/cover no-repeat;
}
.hero-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(90deg, rgba(10, 16, 34, 0.95) 0%, rgba(10, 16, 34, 0.6) 50%, rgba(10, 16, 34, 0.2) 100%);
}
.hero-content {
position: relative;
z-index: 2;
container-type: inline-size;
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 40px;
max-width: 1280px;
margin: 0 auto;
padding: 40px 20px;
align-items: center;
}
.hero-text-block h1 {
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 20px;
}
.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 30px;
max-width: 500px;
color: var(--text-muted);
}
.hero-cta-group {
display: flex;
gap: 15px;
}
.dashboard-command-panel {
background: rgba(19, 31, 63, 0.8);
backdrop-filter: blur(10px);
border: 1px solid var(--accent);
border-radius: 8px;
padding: 30px;
display: flex;
flex-direction: column;
gap: 20px;
}
.command-widget {
display: flex;
flex-direction: column;
gap: 5px;
border-bottom: 1px solid var(--border);
padding-bottom: 15px;
}
.command-widget:last-child {
border-bottom: none;
padding-bottom: 0;
}
.widget-label {
font-size: 0.9rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1px;
}
.widget-value {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--accent);
}
.feature-card {
background: var(--surface);
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--border);
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--accent);
}
.feature-img {
width: 100%;
height: 200px;
object-fit: cover;
border-bottom: 2px solid var(--primary);
}
.feature-body {
padding: 20px;
}
.feature-body h3 {
color: var(--accent);
}
.easter-egg-container {
cursor: pointer;
position: relative;
}
.easter-egg-container .feature-img {
object-fit: contain;
background: var(--bg);
padding: 20px;
}
.easter-egg-active {
animation: shake 0.5s ease-in-out;
}
@keyframes shake {
0%, 100% {transform: translateX(0);}
25% {transform: translateX(-5px) rotate(-5deg);}
75% {transform: translateX(5px) rotate(5deg);}
}
.split-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.split-content.reverse .split-visual {
order: 2;
}
.content-img {
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
border: 1px solid var(--border);
}
.fact-list {
list-style: none;
margin-top: 20px;
}
.fact-list li {
margin-bottom: 15px;
padding-left: 20px;
border-left: 3px solid var(--accent);
}
.info-box {
background: var(--bg);
padding: 30px;
border-radius: 8px;
border: 1px dashed var(--accent);
}
.milestone-track {
display: flex;
flex-direction: column;
gap: 20px;
position: relative;
}
.milestone-track::before {
content: '';
position: absolute;
left: 14px;
top: 0;
bottom: 0;
width: 2px;
background: var(--border);
}
.milestone-node {
display: flex;
gap: 20px;
position: relative;
z-index: 2;
}
.node-indicator {
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--surface);
border: 2px solid var(--border);
flex-shrink: 0;
}
.milestone-node.active .node-indicator {
background: var(--accent);
border-color: var(--accent);
box-shadow: 0 0 10px var(--accent);
}
.node-content {
background: var(--surface);
padding: 20px;
border-radius: 8px;
flex-grow: 1;
}
.node-content h4 {
margin-bottom: 5px;
color: var(--accent);
}
.highlight-block h2 {
border-bottom: 1px solid var(--border);
padding-bottom: 10px;
margin-bottom: 20px;
}
.winner-card, .event-card {
background: rgba(10, 16, 34, 0.5);
padding: 15px;
border-radius: 4px;
margin-bottom: 15px;
border-left: 3px solid var(--accent);
}
.winner-name {
font-weight: 700;
}
.winner-amount {
color: var(--accent);
font-family: var(--font-heading);
font-size: 1.2rem;
}
.small-text {
font-size: 0.8rem;
color: var(--text-muted);
}
.lab-item h4 {
color: var(--accent);
}
.faq-collapsible {
margin-bottom: 10px;
}
.faq-trigger {
width: 100%;
text-align: left;
padding: 15px 20px;
background: var(--bg);
border: 1px solid var(--border);
color: var(--text);
font-family: var(--font-heading);
font-size: 1.1rem;
cursor: pointer;
border-radius: 4px;
transition: var(--transition);
}
.faq-trigger:hover, .faq-trigger.active {
background: var(--primary-dark);
border-color: var(--primary);
}
.faq-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
background: var(--bg);
border-radius: 0 0 4px 4px;
}
.faq-content p {
padding: 15px 20px;
border: 1px solid var(--border);
border-top: none;
}
.companion-float {
position: fixed;
right: 20px;
top: 50%;
transform: translateY(-50%);
width: 80px;
height: 80px;
border-radius: 50%;
cursor: pointer;
z-index: 90;
border: 2px solid var(--accent);
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
transition: transform 0.3s;
}
.companion-float img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.companion-float:hover {
transform: translateY(-50%) scale(1.1);
}
.companion-tooltip {
position: absolute;
right: 100px;
top: 50%;
transform: translateY(-50%);
background: var(--surface);
padding: 10px 15px;
border-radius: 4px;
border: 1px solid var(--accent);
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
}
.companion-float:hover .companion-tooltip {
opacity: 1;
}
.wallet-status-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--header-bg);
border-top: 3px solid var(--accent);
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 95;
box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.wallet-gauge {
display: flex;
align-items: center;
gap: 15px;
}
.gauge-label {
font-size: 0.8rem;
text-transform: uppercase;
color: var(--text-muted);
}
.gauge-value {
font-family: var(--font-heading);
font-size: 1.5rem;
color: var(--accent);
background: #000;
padding: 5px 15px;
border-radius: 4px;
border: 1px inset #333;
}
.disclaimer-drawer {
position: fixed;
bottom: -100%;
left: 0;
right: 0;
background: var(--surface);
border-top: 2px solid var(--accent);
z-index: 96;
transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}
.disclaimer-drawer.open {
bottom: 60px;
}
.drawer-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
border-bottom: 1px solid var(--border);
background: var(--bg);
}
.drawer-close {
background: none;
border: none;
color: var(--text);
font-size: 1.5rem;
cursor: pointer;
}
.drawer-content {
padding: 20px;
max-width: 800px;
margin: 0 auto;
font-size: 0.9rem;
color: var(--text-muted);
}
.toast-container {
position: fixed;
top: 80px;
right: 20px;
z-index: 200;
display: flex;
flex-direction: column;
gap: 10px;
}
.toast {
background: var(--surface);
border-left: 4px solid var(--accent);
padding: 15px 20px;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0,0,0,0.5);
animation: slideInRight 0.3s forwards;
max-width: 300px;
}
@keyframes slideInRight {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
.toast.fade-out {
animation: fadeOut 0.3s forwards;
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
.modal-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.8);
backdrop-filter: blur(5px);
display: flex;
align-items: center;
justify-content: center;
z-index: 300;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
}
.modal-overlay.open {
opacity: 1;
pointer-events: all;
}
.modal-content {
background: var(--surface);
padding: 40px;
border-radius: 8px;
max-width: 400px;
width: 90%;
position: relative;
border: 1px solid var(--border);
}
.modal-close {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
color: var(--text);
font-size: 1.2rem;
cursor: pointer;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-size: 0.9rem;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 10px;
background: var(--bg);
border: 1px solid var(--border);
color: var(--text);
border-radius: 4px;
font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: var(--accent);
}
.main-footer {
background: var(--footer-bg);
padding: 60px 0 20px;
border-top: 1px solid var(--border);
margin-bottom: 60px;
}
.footer-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.footer-identity p, .footer-legal p {
color: var(--text-muted);
font-size: 0.9rem;
margin-bottom: 10px;
}
.footer-links h4 {
margin-bottom: 15px;
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 8px;
}
.footer-bottom {
text-align: center;
border-top: 1px solid var(--border);
padding-top: 20px;
font-size: 0.8rem;
color: var(--text-muted);
}
.page-header {
background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
padding: 60px 20px 40px;
border-bottom: 1px solid var(--border);
}
.contact-form-container {
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.game-page-layout {
background: var(--bg);
}
.stepper-indicator {
display: flex;
justify-content: center;
gap: 20px;
padding: 20px 0;
border-bottom: 1px solid var(--border);
margin-bottom: 20px;
}
.step {
color: var(--text-muted);
font-weight: 700;
opacity: 0.5;
}
.step.active {
color: var(--accent);
opacity: 1;
}
.highlight-plus-rail {
display: grid;
grid-template-columns: 1fr 300px;
gap: 30px;
}
.game-highlight-area {
background: var(--surface);
border-radius: 8px;
border: 1px solid var(--border);
padding: 30px;
min-height: 500px;
display: flex;
flex-direction: column;
}
.game-world-header {
text-align: center;
margin-bottom: 20px;
border-bottom: 1px solid var(--border);
padding-bottom: 15px;
}
.game-hint {
color: var(--accent);
font-size: 0.9rem;
}
.slot-machine-wrapper {
position: relative;
margin: 0 auto 30px;
max-width: 400px;
}
.slot-bg {
width: 100%;
display: block;
}
.slot-reels {
position: absolute;
top: 24%;
left: 14%;
width: 72%;
height: 50%;
display: flex;
gap: 5%;
}
.reel {
flex: 1;
background: #fff;
border: 2px solid #333;
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.reel img {
width: 80%;
height: 80%;
object-fit: contain;
}
.reel.spinning img {
animation: blurSpin 0.1s linear infinite;
}
@keyframes blurSpin {
0% { transform: translateY(-50%); opacity: 0.8; }
100% { transform: translateY(50%); opacity: 0.8; }
}
.roulette-wrapper {
position: relative;
margin: 0 auto 30px;
max-width: 350px;
}
.wheel-pointer {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
font-size: 2rem;
color: var(--text);
z-index: 10;
text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.roulette-wheel {
width: 100%;
display: block;
transform-origin: center;
}
.game-controls {
margin-top: auto;
text-align: center;
background: var(--bg);
padding: 20px;
border-radius: 8px;
border: 1px inset var(--border);
}
.bet-selector {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 15px;
}
.target-selector {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.game-result-panel {
margin-top: 15px;
font-weight: 700;
color: var(--accent);
min-height: 24px;
}
.game-rail {
background: var(--surface);
border-radius: 8px;
border: 1px solid var(--border);
padding: 20px;
}
.rail-item {
width: 100%;
display: flex;
align-items: center;
gap: 15px;
background: var(--bg);
border: 1px solid var(--border);
padding: 15px;
margin-bottom: 10px;
border-radius: 4px;
cursor: pointer;
color: var(--text);
text-align: left;
transition: var(--transition);
}
.rail-item:hover {
border-color: var(--accent);
}
.rail-item.active {
border-color: var(--accent);
background: var(--primary-dark);
}
.rail-icon {
font-size: 2rem;
}
.rail-info h4 {
margin: 0;
font-size: 1rem;
color: var(--accent);
}
.rail-info span {
font-size: 0.8rem;
color: var(--text-muted);
}
.achievement-list {
list-style: none;
font-size: 0.9rem;
}
.achievement-list li {
margin-bottom: 10px;
display: flex;
gap: 10px;
align-items: center;
}
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
}
.split-content, .grid-2, .grid-3, .footer-container {
grid-template-columns: 1fr;
}
.split-content.reverse .split-visual {
order: -1;
}
.highlight-plus-rail {
grid-template-columns: 1fr;
}
.stepper-indicator {
flex-wrap: wrap;
}
}
@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 60px;
left: 0;
right: 0;
background: var(--header-bg);
flex-direction: column;
padding: 20px;
border-bottom: 1px solid var(--border);
}
.main-nav.open {
display: flex;
}
.mobile-nav-toggle {
display: flex;
}
#header-auth-area {
display: none;
}
.hero-text-block h1 {
font-size: 2.5rem;
}
.companion-float {
width: 60px;
height: 60px;
right: 10px;
}
.companion-tooltip {
display: none;
}
.wallet-status-bar {
flex-direction: column;
gap: 10px;
padding: 10px;
}
.disclaimer-drawer.open {
bottom: 85px;
}
.game-highlight-area {
padding: 15px;
}
.bet-selector {
flex-wrap: wrap;
}
}
@media (max-width: 360px) {
.hero-text-block h1 {
font-size: 2rem;
}
.btn {
padding: 10px 16px;
}
.gauge-value {
font-size: 1.2rem;
}
}