:root {
--primary: #1DBA84;
--secondary: #0E7C66;
--accent: #F3C85A;
--bg-main: #081311;
--surface: #12211D;
--txt-primary: #EAF7F2;
--txt-secondary: #A9C5BB;
--font-heading: 'Orbitron', sans-serif;
--font-body: 'Inter', sans-serif;
--transition-base: 0.3s ease-in-out;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-body);
background-color: var(--bg-main);
color: var(--txt-primary);
line-height: 1.6;
font-size: 16px;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}
a {
color: var(--primary);
text-decoration: none;
transition: color var(--transition-base);
}
a:hover {
color: var(--accent);
}
img {
max-width: 100%;
height: auto;
display: block;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.section-padding {
padding: 80px 0;
}
.bg-surface {
background-color: var(--surface);
}
.txt-primary {
color: var(--primary);
}
.txt-accent {
color: var(--accent);
}
.mt-4 {
margin-top: 1rem;
}
.mt-5 {
margin-top: 2rem;
}
.text-center {
text-align: center;
}
.global-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(8, 19, 17, 0.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--secondary);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
max-width: 1280px;
margin: 0 auto;
}
.header-logo-area {
display: flex;
align-items: center;
gap: 15px;
}
.header-logo {
height: 40px;
}
.age-badge-header {
background-color: var(--secondary);
color: var(--txt-primary);
font-weight: 700;
font-size: 0.85rem;
padding: 2px 8px;
border-radius: 4px;
border: 1px solid var(--primary);
}
.header-nav {
display: flex;
gap: 20px;
}
.nav-link {
color: var(--txt-secondary);
font-family: var(--font-heading);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.nav-link.active, .nav-link:hover {
color: var(--primary);
text-shadow: 0 0 8px rgba(29, 186, 132, 0.5);
}
.mobile-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
}
.mobile-menu-toggle span {
display: block;
width: 25px;
height: 3px;
background-color: var(--primary);
}
.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 24px;
font-family: var(--font-heading);
text-transform: uppercase;
font-weight: 700;
border-radius: 4px;
cursor: pointer;
transition: all var(--transition-base);
text-align: center;
border: none;
}
.btn-primary {
background-color: transparent;
color: var(--primary);
border: 1px solid var(--primary);
box-shadow: inset 0 0 10px rgba(29, 186, 132, 0.2);
}
.btn-primary:hover {
background-color: var(--primary);
color: var(--bg-main);
box-shadow: 0 0 20px rgba(29, 186, 132, 0.6);
}
.btn-secondary {
background-color: var(--surface);
color: var(--txt-primary);
border: 1px solid var(--secondary);
}
.btn-secondary:hover {
border-color: var(--primary);
}
.btn-text {
background: none;
border: none;
color: var(--txt-secondary);
text-decoration: underline;
cursor: pointer;
font-family: var(--font-body);
}
.btn-text:hover {
color: var(--primary);
}
.glow-pulse {
animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
0% { box-shadow: 0 0 5px rgba(29, 186, 132, 0.2), inset 0 0 5px rgba(29, 186, 132, 0.2); }
100% { box-shadow: 0 0 15px rgba(29, 186, 132, 0.6), inset 0 0 10px rgba(29, 186, 132, 0.4); }
}
.hero-dashboard-command {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
}
.hero-dashboard-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
z-index: 1;
}
.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.3;
}
.hero-matrix-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(to bottom, rgba(8,19,17,1) 0%, rgba(8,19,17,0.4) 50%, rgba(8,19,17,1) 100%);
}
.hero-dashboard-content {
position: relative;
z-index: 2;
container-type: inline-size;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 300px 1fr;
gap: 40px;
align-items: center;
}
.dashboard-metrics-panel {
background: rgba(18, 33, 29, 0.7);
border: 1px solid var(--secondary);
padding: 20px;
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 20px;
}
.metric-block {
display: flex;
flex-direction: column;
gap: 5px;
border-bottom: 1px solid rgba(14, 124, 102, 0.3);
padding-bottom: 10px;
}
.metric-block:last-child {
border-bottom: none;
padding-bottom: 0;
}
.metric-label {
font-size: 0.8rem;
color: var(--txt-secondary);
text-transform: uppercase;
letter-spacing: 1px;
}
.metric-value {
font-family: var(--font-heading);
font-size: 1.2rem;
color: var(--primary);
}
.dashboard-central-command {
padding: 40px 0;
}
.hero-title {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 0 0 10px rgba(29, 186, 132, 0.3);
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--txt-secondary);
max-width: 600px;
margin-bottom: 30px;
}
.operations-grid, .info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.operation-card, .info-block {
background: var(--surface);
border: 1px solid var(--secondary);
padding: 30px;
border-radius: 8px;
transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.operation-card:hover, .info-block:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.5);
border-color: var(--primary);
}
.card-icon {
height: 50px;
margin-bottom: 20px;
}
.matrix-glyph {
display: block;
width: 40px;
height: 40px;
background-color: var(--secondary);
mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" stroke="white" stroke-width="2" fill="none"/><path d="M8 12L12 8L16 12M12 8V16" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
-webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" stroke="white" stroke-width="2" fill="none"/><path d="M8 12L12 8L16 12M12 8V16" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
}
.locations-rail {
display: flex;
gap: 20px;
overflow-x: auto;
padding-bottom: 20px;
scrollbar-width: thin;
scrollbar-color: var(--primary) var(--surface);
}
.locations-rail::-webkit-scrollbar {
height: 6px;
}
.locations-rail::-webkit-scrollbar-track {
background: var(--surface);
}
.locations-rail::-webkit-scrollbar-thumb {
background-color: var(--primary);
border-radius: 3px;
}
.location-card {
min-width: 300px;
flex: 0 0 auto;
background: var(--bg-main);
border: 1px solid var(--secondary);
border-radius: 8px;
overflow: hidden;
}
.location-img, .location-placeholder {
width: 100%;
height: 160px;
object-fit: cover;
}
.location-placeholder {
background: linear-gradient(45deg, var(--surface), var(--secondary));
}
.location-info {
padding: 20px;
}
.location-info h4 {
color: var(--primary);
margin-bottom: 10px;
}
.location-info p {
font-size: 0.9rem;
color: var(--txt-secondary);
}
.easter-egg-zone {
padding: 40px 0;
cursor: crosshair;
}
.cipher-container {
display: inline-block;
position: relative;
border: 1px dashed var(--secondary);
padding: 10px;
border-radius: 8px;
transition: border-color var(--transition-base);
}
.cipher-container:hover {
border-color: var(--primary);
}
.cipher-img {
max-width: 300px;
opacity: 0.7;
}
.cipher-hint {
font-family: monospace;
font-size: 0.8rem;
color: var(--secondary);
margin-top: 10px;
}
.faq-accordion {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid var(--secondary);
margin-bottom: 10px;
}
.faq-trigger {
width: 100%;
text-align: left;
background: none;
border: none;
padding: 15px 0;
font-family: var(--font-heading);
font-size: 1.1rem;
color: var(--txt-primary);
cursor: pointer;
display: flex;
justify-content: space-between;
}
.faq-trigger::after {
content: '+';
color: var(--primary);
font-size: 1.5rem;
}
.faq-trigger.open::after {
content: '-';
}
.faq-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.faq-content p {
padding-bottom: 15px;
color: var(--txt-secondary);
}
.infiltration-main {
padding: 40px 20px;
max-width: 1400px;
margin: 0 auto;
}
.lobby-layout-container {
display: grid;
grid-template-columns: 280px 1fr 280px;
gap: 30px;
align-items: start;
}
.wallet-sidebar-terminal, .side-rail {
background: var(--surface);
border: 1px solid var(--secondary);
border-radius: 8px;
overflow: hidden;
}
.terminal-header, .rail-card h4 {
background: rgba(14, 124, 102, 0.2);
padding: 15px;
border-bottom: 1px solid var(--secondary);
font-family: var(--font-heading);
margin-bottom: 0;
}
.terminal-body {
padding: 20px;
}
.wallet-stat {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px dashed rgba(14, 124, 102, 0.4);
}
.stat-label {
font-size: 0.9rem;
color: var(--txt-secondary);
}
.stat-value {
font-weight: 700;
font-family: var(--font-heading);
}
.vault-event-widget, .achievements-widget {
margin-top: 25px;
}
.vault-event-widget h4, .achievements-widget h4 {
font-size: 1rem;
margin-bottom: 10px;
color: var(--primary);
}
.progress-bar-container {
height: 8px;
background: rgba(8, 19, 17, 0.8);
border: 1px solid var(--secondary);
border-radius: 4px;
overflow: hidden;
margin-bottom: 5px;
}
.progress-bar-fill {
height: 100%;
background: var(--primary);
transition: width 0.3s ease;
}
.progress-text, .vault-status, .small-txt {
font-size: 0.8rem;
color: var(--txt-secondary);
}
.vault-status {
margin-top: 5px;
color: var(--accent);
font-family: monospace;
}
.achievement-list {
list-style: none;
}
.achievement-list li {
font-size: 0.85rem;
padding: 8px 0;
border-bottom: 1px solid rgba(14, 124, 102, 0.2);
color: var(--txt-secondary);
}
.achievement-list li.unlocked {
color: var(--primary);
}
.achievement-list li.unlocked::before {
content: '[X] ';
}
.achievement-list li.locked::before {
content: '[ ] ';
}
.rail-card {
padding: 20px;
border-bottom: 1px solid var(--secondary);
}
.rail-card:last-child {
border-bottom: none;
}
.dynamic-node p {
margin-top: 10px;
}
.progressive-stepper-ui {
background: var(--bg-main);
border: 1px solid var(--secondary);
border-radius: 8px;
overflow: hidden;
}
.step-header {
display: flex;
border-bottom: 1px solid var(--secondary);
}
.step-tab {
flex: 1;
background: var(--surface);
color: var(--txt-secondary);
border: none;
padding: 15px;
font-family: var(--font-heading);
font-size: 1rem;
cursor: pointer;
transition: all var(--transition-base);
}
.step-tab.active {
background: rgba(14, 124, 102, 0.2);
color: var(--primary);
border-bottom: 2px solid var(--primary);
}
.step-content {
display: none;
padding: 30px;
}
.step-content.active {
display: block;
}
.game-canvas {
background: #000;
border: 2px solid var(--secondary);
border-radius: 8px;
height: 400px;
margin-bottom: 25px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.slot-canvas .payline-indicator {
position: absolute;
top: 50%; left: 0; right: 0;
height: 4px;
background: rgba(29, 186, 132, 0.5);
box-shadow: 0 0 10px var(--primary);
z-index: 10;
transform: translateY(-50%);
}
.slot-machine-frame {
display: flex;
gap: 20px;
z-index: 5;
background: rgba(8,19,17,0.8);
padding: 20px;
border: 1px solid var(--secondary);
border-radius: 8px;
}
.reel {
width: 100px;
height: 100px;
background: var(--surface);
border: 2px solid var(--secondary);
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.reel img {
width: 80px;
height: 80px;
object-fit: contain;
}
.wheel-canvas {
flex-direction: column;
}
.laser-pointer-top {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 30px;
background: var(--accent);
box-shadow: 0 0 10px var(--accent);
z-index: 20;
}
.wheel-wrapper {
width: 320px;
height: 320px;
border-radius: 50%;
border: 4px solid var(--secondary);
overflow: hidden;
position: relative;
}
.wheel-img {
width: 100%;
height: 100%;
object-fit: contain;
transform-origin: center center;
}
.game-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.control-group {
display: flex;
align-items: center;
gap: 10px;
}
.bet-selector {
background: var(--surface);
color: var(--primary);
border: 1px solid var(--secondary);
padding: 10px;
font-family: var(--font-heading);
border-radius: 4px;
outline: none;
}
.spin-btn {
min-width: 200px;
font-size: 1.1rem;
}
.spin-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
animation: none;
box-shadow: none;
}
.result-panel {
background: rgba(14, 124, 102, 0.1);
border: 1px solid var(--secondary);
border-radius: 4px;
padding: 15px;
text-align: center;
}
.result-panel p {
font-family: monospace;
color: var(--accent);
margin-bottom: 10px;
}
.recent-outcomes {
font-size: 0.85rem;
color: var(--txt-secondary);
display: flex;
justify-content: center;
gap: 10px;
}
.outcome-badge {
background: var(--surface);
padding: 2px 6px;
border-radius: 4px;
border: 1px solid rgba(29, 186, 132, 0.3);
}
.hero-solid-bg {
background: var(--surface);
padding: 60px 20px;
text-align: center;
border-bottom: 1px solid var(--secondary);
}
.page-title {
font-size: 2.5rem;
color: var(--primary);
}
.page-subtitle {
color: var(--txt-secondary);
font-size: 1.1rem;
}
.content-hero-img {
width: 100%;
max-height: 400px;
object-fit: cover;
border-radius: 8px;
border: 1px solid var(--secondary);
margin-bottom: 40px;
}
.text-block {
margin-bottom: 40px;
}
.text-block h2 {
color: var(--primary);
margin-bottom: 15px;
}
.split-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.tech-form .form-group {
margin-bottom: 20px;
}
.tech-form label {
display: block;
margin-bottom: 8px;
color: var(--txt-secondary);
font-family: var(--font-heading);
}
.tech-form input, .tech-form textarea {
width: 100%;
background: var(--surface);
border: 1px solid var(--secondary);
color: var(--txt-primary);
padding: 12px;
border-radius: 4px;
font-family: var(--font-body);
outline: none;
}
.tech-form input:focus, .tech-form textarea:focus {
border-color: var(--primary);
box-shadow: 0 0 5px rgba(29, 186, 132, 0.3);
}
.info-box {
padding: 25px;
border-radius: 8px;
border: 1px solid var(--secondary);
}
.legal-hub-layout {
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
}
.toc-sidebar {
background: var(--surface);
padding: 20px;
border: 1px solid var(--secondary);
border-radius: 8px;
position: sticky;
top: 90px;
}
.toc-list {
list-style: none;
}
.toc-list li {
margin-bottom: 10px;
}
.toc-list a {
color: var(--txt-secondary);
font-size: 0.95rem;
}
.toc-list a:hover {
color: var(--primary);
}
.legal-content-body article h2 {
color: var(--primary);
border-bottom: 1px solid var(--secondary);
padding-bottom: 10px;
margin-bottom: 15px;
}
.legal-content-body p {
margin-bottom: 15px;
}
.global-footer {
background: var(--surface);
border-top: 1px solid var(--secondary);
padding: 60px 20px 20px;
margin-top: 60px;
}
.footer-container {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
height: 50px;
margin-bottom: 20px;
}
.company-identity p, .footer-responsible p {
font-size: 0.85rem;
color: var(--txt-secondary);
margin-bottom: 5px;
}
.footer-links h4, .footer-responsible h4 {
color: var(--primary);
margin-bottom: 15px;
}
.footer-links nav {
display: flex;
flex-direction: column;
gap: 10px;
}
.partner-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.partner-label {
background: var(--bg-main);
border: 1px solid var(--secondary);
padding: 5px 10px;
font-size: 0.8rem;
border-radius: 4px;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(14, 124, 102, 0.3);
font-size: 0.8rem;
color: var(--txt-secondary);
}
.legal-drawer {
position: fixed;
bottom: -100%;
left: 0;
width: 100%;
background: var(--surface);
border-top: 2px solid var(--primary);
z-index: 1000;
transition: bottom 0.4s ease-in-out;
box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
}
.legal-drawer.open {
bottom: 0;
}
.legal-drawer-content {
max-width: 1280px;
margin: 0 auto;
padding: 30px 20px;
position: relative;
}
.close-drawer {
position: absolute;
top: 15px;
right: 20px;
background: none;
border: none;
color: var(--txt-primary);
font-size: 1.5rem;
cursor: pointer;
}
#toast-container {
position: fixed;
top: 20px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 10px;
}
.toast {
background: var(--surface);
border: 1px solid var(--primary);
color: var(--txt-primary);
padding: 15px 20px;
border-radius: 4px;
box-shadow: 0 5px 15px rgba(0,0,0,0.5);
animation: slideIn 0.3s forwards, fadeOut 0.3s forwards 2.7s;
font-family: monospace;
}
@keyframes slideIn {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
@media (max-width: 1024px) {
.lobby-layout-container {
grid-template-columns: 1fr;
}
.wallet-sidebar-terminal {
display: flex;
flex-direction: column;
}
.terminal-body {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
}
.vault-event-widget, .achievements-widget {
margin-top: 0;
flex: 1;
min-width: 250px;
}
.legal-hub-layout {
grid-template-columns: 1fr;
}
.toc-sidebar {
position: relative;
top: 0;
}
}
@media (max-width: 768px) {
.header-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--surface);
flex-direction: column;
padding: 20px;
border-bottom: 1px solid var(--secondary);
}
.header-nav.open {
display: flex;
}
.mobile-menu-toggle {
display: flex;
}
.hero-dashboard-content {
grid-template-columns: 1fr;
text-align: center;
}
.dashboard-metrics-panel {
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
margin: 0 auto 30px;
}
.split-layout {
grid-template-columns: 1fr;
}
.game-canvas {
height: 300px;
}
.slot-machine-frame {
gap: 10px;
padding: 10px;
}
.reel {
width: 70px;
height: 70px;
}
.reel img {
width: 50px;
height: 50px;
}
.wheel-wrapper {
width: 240px;
height: 240px;
}
.control-group {
flex-direction: column;
align-items: stretch;
width: 100%;
}
.spin-btn {
width: 100%;
}
}
@media (max-width: 360px) {
.hero-title {
font-size: 2rem;
}
.dashboard-metrics-panel {
flex-direction: column;
}
.reel {
width: 60px;
height: 60px;
}
.wheel-wrapper {
width: 200px;
height: 200px;
}
}
