:root {
--primary: #6D5BFF;
--secondary: #9333EA;
--accent: #F5D48F;
--bg: #100C1F;
--surface: #1F1A37;
--surface-light: #2A244A;
--text-primary: #F3EEFF;
--text-secondary: #BEB3D8;
--font-heading: 'Playfair Display', serif;
--font-body: 'Lato', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--bg);
color: var(--text-primary);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
display: inline-flex; align-items: center; justify-content: center;
padding: 10px 24px; border-radius: 4px; font-weight: bold; cursor: pointer;
transition: all 0.3s ease; border: 2px solid transparent; text-transform: uppercase; letter-spacing: 1px;
font-family: var(--font-body); min-height: 44px;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: 0 4px 15px rgba(109, 91, 255, 0.4); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(245, 212, 143, 0.6); transform: translateY(-2px); border-color: var(--accent); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: rgba(245, 212, 143, 0.1); }
.btn-large { padding: 15px 32px; font-size: 1.1rem; }
.btn-text { background: none; border: none; color: var(--text-secondary); cursor: pointer; text-decoration: underline; padding: 5px; }
.full-width { width: 100%; }
.site-header {
background-color: rgba(21, 10, 33, 0.95);
border-bottom: 1px solid var(--accent);
position: sticky; top: 0; z-index: 1000;
backdrop-filter: blur(10px);
}
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.header-left { display: flex; align-items: center; gap: 15px; }
.age-badge { background: var(--accent); color: var(--bg); font-weight: bold; padding: 4px 8px; border-radius: 4px; font-size: 0.9rem; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--accent); font-weight: bold; }
.header-nav { display: flex; gap: 20px; }
.header-nav a { color: var(--text-primary); font-weight: bold; position: relative; }
.header-nav a.active::after, .header-nav a:hover::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--accent); }
.header-right { display: flex; gap: 10px; align-items: center; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 10px; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--accent); transition: 0.3s; }
.hero-split-right { display: flex; min-height: 80vh; align-items: center; background: var(--bg); }
.hero-content { flex: 1; padding: 60px 40px; }
.glint-text { font-size: 3.5rem; line-height: 1.1; text-shadow: 0 0 20px rgba(245, 212, 143, 0.4); }
.hero-content p { font-size: 1.2rem; margin: 20px 0 40px; color: var(--text-secondary); max-width: 500px; }
.hero-visual { flex: 1; height: 100%; position: relative; }
.hero-visual img { width: 100%; height: 80vh; object-fit: cover; border-left: 2px solid var(--primary); }
.hero-solid { background: linear-gradient(to bottom, var(--surface), var(--bg)); padding: 80px 20px 40px; border-bottom: 1px solid var(--surface-light); }
.hero-solid h1 { font-size: 3rem; margin-bottom: 10px; }
.hero-solid p { font-size: 1.2rem; color: var(--text-secondary); }
section { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.5rem; }
.section-header p { font-size: 1.1rem; color: var(--text-secondary); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.card { background: var(--surface); padding: 30px; border-radius: 8px; border: 1px solid var(--surface-light); transition: transform 0.3s ease; }
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
.card h3 { color: var(--text-primary); }
.dark-surface { background-color: var(--surface); }
.split-align { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.streak-text { flex: 1; min-width: 300px; }
.mission-checklist { list-style: none; margin-top: 20px; }
.mission-checklist li { padding: 10px 0; border-bottom: 1px solid var(--surface-light); color: var(--accent); }
.streak-timer { flex: 0 0 300px; background: var(--bg); padding: 30px; border-radius: 8px; text-align: center; border: 1px solid var(--primary); box-shadow: 0 0 20px rgba(109, 91, 255, 0.2); }
.countdown-display { font-size: 2.5rem; font-family: monospace; color: var(--accent); letter-spacing: 2px; margin-top: 10px; }
.event-cards { justify-content: center; }
.event-card { position: relative; overflow: hidden; }
.event-date { position: absolute; top: 15px; right: 15px; background: var(--primary); padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.table-responsive { overflow-x: auto; }
.cosmic-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--surface); border-radius: 8px; overflow: hidden; }
.cosmic-table th, .cosmic-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--surface-light); }
.cosmic-table th { background: var(--primary); color: #fff; font-family: var(--font-heading); }
.cosmic-table tr:hover { background: rgba(109, 91, 255, 0.1); }
.page-play .lobby-main { padding: 0 0 60px 0; }
.progression-bar { background: var(--surface); padding: 15px 0; border-bottom: 1px solid var(--primary); margin-bottom: 40px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.rank-info { flex: 1; max-width: 400px; }
.rank-title { font-weight: bold; color: var(--accent); display: block; margin-bottom: 5px; }
.rank-track { height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }
.rank-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.5s; }
.combo-meter { display: flex; align-items: center; gap: 15px; font-weight: bold; }
.combo-dots { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--surface-light); border: 1px solid var(--primary); transition: 0.3s; }
.dot.active { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.layout-sidebar { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }
.sidebar-lore { display: flex; flex-direction: column; gap: 30px; position: sticky; top: 100px; }
.lore-widget { background: var(--surface); border: 1px solid var(--primary); border-radius: 8px; padding: 20px; }
.lore-widget h3 { border-bottom: 1px solid var(--surface-light); padding-bottom: 10px; margin-bottom: 15px; }
.lore-chapter { margin-bottom: 15px; padding: 10px; border-radius: 4px; }
.lore-chapter.unlocked { background: rgba(245, 212, 143, 0.1); border-left: 3px solid var(--accent); }
.lore-chapter.locked { opacity: 0.5; border-left: 3px solid var(--text-secondary); }
.easter-egg-zone { text-align: center; padding: 20px; }
.easter-egg-trigger { cursor: crosshair; transition: transform 0.3s, filter 0.3s; max-width: 80px; margin: 0 auto; filter: grayscale(80%) opacity(0.6); }
.easter-egg-trigger:hover { transform: scale(1.1); filter: grayscale(0) opacity(1) drop-shadow(0 0 15px var(--accent)); }
.lobby-masonry-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.game-module { background: var(--surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--surface-light); display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.game-header { padding: 20px; background: rgba(0,0,0,0.2); display: flex; justify-content: space-between; align-items: center; }
.game-header h2 { margin: 0; font-size: 1.5rem; }
.game-type { background: var(--bg); padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; color: var(--accent); }
.game-board { height: 250px; position: relative; background: #000; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.slot-board { display: flex; gap: 10px; padding: 20px; }
.reel { width: 30%; height: 100%; background: #1a1a1a; overflow: hidden; border: 2px solid var(--surface-light); position: relative; border-radius: 4px; }
.reel-strip { display: flex; flex-direction: column; width: 100%; position: absolute; top: 0; transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reel-strip img { width: 100%; height: 105px; object-fit: cover; }
.reel-strip img.shift-1 { object-position: 0 33%; }
.reel-strip img.shift-2 { object-position: 0 66%; }
.payline { position: absolute; top: 50%; left: 0; right: 0; height: 4px; background: rgba(245, 212, 143, 0.5); transform: translateY(-50%); z-index: 10; box-shadow: 0 0 10px var(--accent); }
.slot-board.dark-mode .reel { border-color: #555; }
.payline.glow { background: rgba(147, 51, 234, 0.8); box-shadow: 0 0 15px var(--secondary); }
.wheel-board-container { flex-direction: column; }
.wheel-disk { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; transition: transform 3.5s cubic-bezier(0.2, 0.8, 0.2, 1); border: 4px solid var(--accent); }
.wheel-pointer { width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 25px solid var(--accent); position: absolute; top: 10px; z-index: 10; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.brass-mode .wheel-disk { border-color: #B5A8C8; }
.brass-pointer { border-top-color: #B5A8C8; }
.game-controls { padding: 20px; background: var(--surface-light); display: flex; flex-direction: column; gap: 15px; }
.bet-selector { display: flex; justify-content: space-between; align-items: center; }
.bet-selector select { background: var(--bg); color: var(--text-primary); border: 1px solid var(--primary); padding: 8px; border-radius: 4px; font-family: var(--font-body); outline: none; }
.game-result { padding: 15px; text-align: center; font-weight: bold; background: rgba(0,0,0,0.3); min-height: 54px; color: var(--accent); }
.content-body { padding: 60px 20px; }
.text-block { max-width: 800px; margin: 0 auto 40px; }
.text-block p { margin-bottom: 20px; }
.text-block ul { margin-left: 20px; margin-bottom: 20px; }
.text-block li { margin-bottom: 10px; }
.image-banner { width: 100%; max-height: 400px; overflow: hidden; border-radius: 12px; margin-bottom: 40px; border: 2px solid var(--primary); }
.image-banner img { width: 100%; object-fit: cover; }
.contact-form-section { background: var(--surface); padding: 30px; border-radius: 8px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border-radius: 4px; border: 1px solid var(--surface-light); background: var(--bg); color: var(--text-primary); font-family: var(--font-body); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 8px rgba(109, 91, 255, 0.4); }
.contact-sidebar { display: flex; flex-direction: column; gap: 30px; }
.faq-item { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--surface-light); }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-primary); }
.faq-item p { font-size: 0.95rem; color: var(--text-secondary); }
.site-footer { background: #08030C; border-top: 2px solid var(--primary); padding: 60px 20px 20px; margin-top: 40px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 1.8rem; margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-responsible h4 { color: var(--text-primary); margin-bottom: 15px; border-bottom: 1px solid var(--surface-light); padding-bottom: 10px; }
.footer-responsible p { font-size: 0.9rem; color: var(--text-secondary); }
.footer-partners { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; grid-column: 1 / -1; justify-content: center; border-top: 1px solid var(--surface-light); padding-top: 20px; }
.footer-partners a { display: flex; flex-direction: column; align-items: center; gap: 5px; opacity: 0.7; }
.footer-partners a:hover { opacity: 1; }
.footer-partners img { height: 40px; width: auto; filter: grayscale(100%) brightness(200%); }
.footer-partners span { font-size: 0.7rem; color: var(--text-secondary); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--surface-light); padding-top: 20px; text-align: center; display: flex; flex-direction: column; gap: 10px; }
.company-identity p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 5px; }
.copyright { font-size: 0.85rem; color: var(--primary); margin-top: 10px; }
.wallet-floating-widget { position: fixed; bottom: 20px; right: 20px; background: rgba(26, 16, 37, 0.95); border: 2px solid var(--accent); padding: 15px 25px; border-radius: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.8); z-index: 900; display: flex; align-items: center; gap: 10px; backdrop-filter: blur(5px); }
.wallet-label { font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; }
.wallet-amount { font-family: monospace; font-size: 1.4rem; font-weight: bold; color: var(--accent); }
.wallet-currency { font-weight: bold; color: var(--primary); }
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--surface); padding: 40px; border-radius: 8px; width: 100%; max-width: 400px; position: relative; border: 1px solid var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.5); transform: translateY(20px); transition: transform 0.3s ease; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: var(--text-secondary); font-size: 1.5rem; cursor: pointer; }
.modal-close:hover { color: var(--accent); }
#toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--primary); color: #fff; padding: 15px 20px; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); font-weight: bold; transform: translateX(120%); transition: transform 0.3s ease; border-left: 4px solid var(--accent); pointer-events: auto; }
.toast.show { transform: translateX(0); }
@media (max-width: 1024px) {
.layout-sidebar { grid-template-columns: 1fr; }
.sidebar-lore { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
.lore-widget { flex: 1; min-width: 300px; }
.hero-split-right { flex-direction: column; text-align: center; }
.hero-visual { width: 100%; }
.hero-visual img { border-left: none; border-top: 2px solid var(--primary); height: 40vh; }
}
@media (max-width: 768px) {
.header-nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 20px; gap: 15px; transform: translateY(-150%); transition: 0.3s; opacity: 0; pointer-events: none; border-bottom: 2px solid var(--primary); }
.header-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-toggle { display: flex; }
.grid-3, .grid-2, .lobby-masonry-two-col { grid-template-columns: 1fr; }
.glint-text { font-size: 2.5rem; }
.hero-solid h1 { font-size: 2.2rem; }
.split-align { flex-direction: column; text-align: center; }
.wallet-floating-widget { bottom: 10px; right: 10px; padding: 10px 15px; }
.wallet-amount { font-size: 1.2rem; }
}
@media (max-width: 360px) {
.btn { padding: 10px 16px; font-size: 0.9rem; }
.hero-content { padding: 40px 20px; }
.glint-text { font-size: 2rem; }
.card { padding: 20px; }
.wallet-floating-widget { left: 10px; justify-content: center; border-radius: 8px; }
}