:root {
--primary: #38bdf8;
--primary-glow: rgba(56, 189, 248, 0.4);
--secondary: #0ea5e9;
--accent: #22d3ee;
--accent-glow: rgba(34, 211, 238, 0.3);
--bg-from: #0c1929;
--bg-via: #0f2847;
--bg-to: #020617;
--card-bg: rgba(15, 40, 71, 0.6);
--card-border: rgba(56, 189, 248, 0.2);
--text-light: #f8fafc;
--text-muted: #94a3b8;
}

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

body {
font-family: 'Open Sans', system-ui, sans-serif;
font-weight: 400;
background: linear-gradient(to bottom, var(--bg-from), var(--bg-via), var(--bg-to));
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}

body::before {
content: '';
position: fixed;
inset: 0;
background-image: url('');
pointer-events: none;
z-index: 1;
}

body::after {
content: '';
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 20% 80%, var(--primary-glow), transparent 40%), radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 40%);
pointer-events: none;
z-index: 0;
animation: float-orbs 20s ease-in-out infinite;
}

@keyframes float-orbs {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(30px, 30px); }
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', system-ui, sans-serif;
font-weight: 800;
line-height: 1.2;
}

.w90-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}

.w90-age-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
padding: 20px;
}

.w90-age-modal.hidden {
display: none;
}

.w90-age-modal-content {
background: var(--card-bg);
border: 2px solid var(--card-border);
padding: 40px;
max-width: 500px;
width: 100%;
text-align: center;
backdrop-filter: blur(10px);
}

.w90-age-modal-icon {
font-size: 64px;
margin-bottom: 20px;
display: block;
}

.w90-age-modal-content h2 {
font-size: 28px;
margin-bottom: 16px;
color: var(--primary);
}

.w90-age-modal-content p {
margin-bottom: 30px;
color: var(--text-muted);
font-size: 16px;
}

.w90-age-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}

.w90-btn {
padding: 14px 32px;
font-size: 16px;
font-weight: 700;
border: 2px solid var(--primary);
background: var(--primary);
color: var(--bg-to);
cursor: pointer;
transition: all 0.2s ease-in-out;
font-family: 'Montserrat', sans-serif;
text-decoration: none;
display: inline-block;
}

.w90-btn:hover {
transform: scale(1.01);
box-shadow: 0 0 20px var(--primary-glow);
}

.w90-btn-secondary {
background: transparent;
color: var(--text-light);
border-color: var(--text-muted);
}

.w90-btn-secondary:hover {
border-color: var(--primary);
color: var(--primary);
box-shadow: none;
}

.w90-header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(12, 25, 41, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
}

.w90-nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
}

.w90-logo {
font-size: 24px;
font-weight: 800;
color: var(--primary);
text-decoration: none;
font-family: 'Montserrat', sans-serif;
}

.w90-nav-links {
display: flex;
gap: 30px;
align-items: center;
list-style: none;
}

.w90-nav-links a {
color: var(--text-light);
text-decoration: none;
font-weight: 600;
transition: color 0.2s ease-in-out;
}

.w90-nav-links a:hover {
color: var(--primary);
}

.w90-age-badge {
background: var(--primary);
color: var(--bg-to);
padding: 6px 12px;
font-weight: 800;
font-size: 14px;
border: 2px solid var(--primary);
font-family: 'Montserrat', sans-serif;
}

.w90-hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}

.w90-hamburger span {
width: 25px;
height: 3px;
background: var(--primary);
transition: all 0.2s ease-in-out;
}

.w90-hero {
padding: 120px 0 80px;
text-align: left;
background-size: cover;
background-position: center;
position: relative;
min-height: 600px;
display: flex;
align-items: center;
}

.w90-hero::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(12, 25, 41, 0.95), rgba(12, 25, 41, 0.7));
}

.w90-hero-content {
position: relative;
z-index: 2;
max-width: 600px;
}

.w90-hero-badge {
position: absolute;
top: 40px;
right: 40px;
background: var(--primary);
color: var(--bg-to);
padding: 12px 24px;
font-weight: 800;
font-size: 24px;
border: 3px solid var(--primary);
font-family: 'Montserrat', sans-serif;
z-index: 3;
}

.w90-hero h1 {
font-size: 56px;
margin-bottom: 20px;
color: var(--primary);
}

.w90-hero p {
font-size: 20px;
margin-bottom: 30px;
color: var(--text-muted);
}

.w90-hero-ctas {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 16px;
}

.w90-hero-disclaimer {
font-size: 14px;
color: var(--text-muted);
font-style: italic;
}

.w90-section {
padding: 80px 0;
position: relative;
}

.w90-section-header {
text-align: center;
margin-bottom: 60px;
}

.w90-section-header h2 {
font-size: 42px;
margin-bottom: 12px;
color: var(--primary);
display: inline-flex;
align-items: center;
gap: 12px;
}

.w90-section-header p {
font-size: 18px;
color: var(--text-muted);
max-width: 700px;
margin: 0 auto;
}

.w90-games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.w90-game-card {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-left: 4px solid var(--primary);
overflow: hidden;
transition: all 0.2s ease-in-out;
backdrop-filter: blur(10px);
}

.w90-game-card:hover {
transform: scale(1.01);
border-left-color: var(--accent);
}

.w90-game-image-wrap {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
background: linear-gradient(135deg, var(--bg-via), var(--bg-to));
}

.w90-game-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.w90-game-image-fallback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: var(--bg-to);
font-weight: 800;
padding: 20px;
text-align: center;
font-size: 18px;
}

.w90-game-meta {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 20px;
gap: 10px;
}

.w90-game-category {
font-size: 12px;
text-transform: uppercase;
color: var(--accent);
font-weight: 700;
letter-spacing: 1px;
}

.w90-game-card h3 {
padding: 0 20px 12px;
font-size: 20px;
color: var(--text-light);
}

.w90-game-card button {
width: 100%;
padding: 16px;
background: var(--primary);
color: var(--bg-to);
border: none;
font-weight: 700;
font-size: 16px;
cursor: pointer;
transition: all 0.2s ease-in-out;
font-family: 'Montserrat', sans-serif;
border-top: 2px solid var(--card-border);
}

.w90-game-card button:hover {
background: var(--accent);
}

.w90-features-timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.w90-features-timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: var(--card-border);
transform: translateX(-50%);
}

.w90-feature-item {
display: flex;
gap: 30px;
margin-bottom: 50px;
align-items: center;
position: relative;
}

.w90-feature-item:nth-child(odd) {
flex-direction: row;
}

.w90-feature-item:nth-child(even) {
flex-direction: row-reverse;
}

.w90-feature-content {
flex: 1;
background: var(--card-bg);
padding: 24px;
border: 2px solid var(--card-border);
border-left: 4px solid var(--primary);
backdrop-filter: blur(10px);
}

.w90-feature-icon {
font-size: 48px;
flex-shrink: 0;
z-index: 2;
background: var(--bg-via);
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border: 3px solid var(--primary);
}

.w90-feature-content h3 {
font-size: 22px;
margin-bottom: 8px;
color: var(--primary);
}

.w90-feature-content p {
color: var(--text-muted);
}

.w90-why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.w90-why-card {
background: var(--card-bg);
border: 2px solid var(--card-border);
padding: 30px;
text-align: center;
transition: all 0.2s ease-in-out;
backdrop-filter: blur(10px);
border-top: 4px solid var(--primary);
}

.w90-why-card:hover {
transform: scale(1.01);
border-top-color: var(--accent);
}

.w90-why-card-icon {
font-size: 48px;
margin-bottom: 16px;
display: block;
}

.w90-why-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
}

.w90-why-card p {
color: var(--text-muted);
font-size: 15px;
}

.w90-trust {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-left: 6px solid var(--accent);
padding: 40px;
margin: 60px auto;
max-width: 900px;
backdrop-filter: blur(10px);
}

.w90-trust h3 {
font-size: 26px;
margin-bottom: 20px;
color: var(--accent);
}

.w90-trust ul {
list-style: none;
}

.w90-trust li {
padding: 12px 0;
padding-left: 30px;
position: relative;
color: var(--text-muted);
}

.w90-trust li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 800;
font-size: 18px;
}

.w90-cta-band {
background: linear-gradient(135deg, var(--primary), var(--accent));
padding: 60px 40px;
text-align: center;
margin: 80px 0;
position: relative;
}

.w90-cta-band::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0L0 30l30 30 30-30z' fill='%23000' opacity='0.1'/%3E%3C/svg%3E");
}

.w90-cta-band-content {
position: relative;
z-index: 2;
}

.w90-cta-band h2 {
font-size: 36px;
margin-bottom: 16px;
color: var(--bg-to);
}

.w90-cta-band p {
font-size: 18px;
margin-bottom: 30px;
color: var(--bg-to);
opacity: 0.9;
}

.w90-cta-band .w90-btn {
background: var(--bg-to);
color: var(--primary);
border-color: var(--bg-to);
}

.w90-responsible {
background: var(--card-bg);
padding: 60px 40px;
text-align: center;
border: 3px solid var(--primary);
backdrop-filter: blur(10px);
margin: 80px auto;
max-width: 900px;
}

.w90-responsible-icon {
font-size: 80px;
margin-bottom: 20px;
display: block;
}

.w90-responsible h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary);
}

.w90-responsible p {
font-size: 18px;
margin-bottom: 30px;
color: var(--text-muted);
line-height: 1.8;
}

.w90-responsible-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.w90-faq {
max-width: 800px;
margin: 0 auto;
}

.w90-faq-item {
background: var(--card-bg);
border: 2px solid var(--card-border);
margin-bottom: 16px;
overflow: hidden;
backdrop-filter: blur(10px);
}

.w90-faq-question {
width: 100%;
padding: 20px 24px;
background: none;
border: none;
color: var(--text-light);
font-size: 18px;
font-weight: 700;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'Montserrat', sans-serif;
transition: all 0.2s ease-in-out;
}

.w90-faq-question:hover {
color: var(--primary);
}

.w90-faq-question::after {
content: '+';
font-size: 24px;
color: var(--primary);
transition: transform 0.2s ease-in-out;
}

.w90-faq-question.active::after {
transform: rotate(45deg);
}

.w90-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-in-out;
}

.w90-faq-answer-content {
padding: 0 24px 20px;
color: var(--text-muted);
line-height: 1.8;
}

.w90-footer {
background: var(--bg-from);
border-top: 2px solid var(--card-border);
padding: 60px 0 30px;
margin-top: 80px;
}

.w90-footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.w90-footer-section h4 {
font-size: 18px;
margin-bottom: 16px;
color: var(--primary);
}

.w90-footer-links {
list-style: none;
}

.w90-footer-links a {
color: var(--text-muted);
text-decoration: none;
display: block;
padding: 6px 0;
transition: color 0.2s ease-in-out;
}

.w90-footer-links a:hover {
color: var(--primary);
}

.w90-footer-disclaimer {
background: var(--card-bg);
border: 2px solid var(--primary);
padding: 30px;
margin-bottom: 40px;
text-align: center;
backdrop-filter: blur(10px);
}

.w90-footer-disclaimer-badge {
display: inline-block;
background: var(--primary);
color: var(--bg-to);
padding: 12px 24px;
font-weight: 800;
font-size: 28px;
margin-bottom: 16px;
border: 3px solid var(--primary);
font-family: 'Montserrat', sans-serif;
}

.w90-footer-disclaimer p {
color: var(--text-muted);
font-size: 15px;
line-height: 1.8;
}

.w90-footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--card-border);
color: var(--text-muted);
font-size: 14px;
}

.w90-game-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
z-index: 9998;
opacity: 0;
visibility: hidden;
transition: all 0.2s ease-in-out;
}

.w90-game-modal.active {
opacity: 1;
visibility: visible;
}

.w90-modal-content {
background: var(--bg-via);
width: 90%;
max-width: 1200px;
height: 90vh;
display: flex;
flex-direction: column;
border: 3px solid var(--primary);
}

.w90-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
background: var(--bg-from);
border-bottom: 2px solid var(--card-border);
gap: 16px;
}

.w90-modal-header h2 {
font-size: 22px;
color: var(--primary);
flex: 1;
}

.w90-close-btn {
background: none;
border: 2px solid var(--primary);
color: var(--primary);
font-size: 28px;
width: 40px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease-in-out;
}

.w90-close-btn:hover {
background: var(--primary);
color: var(--bg-to);
}

.w90-game-iframe {
flex: 1;
border: none;
width: 100%;
background: #000;
}

.w90-demo-unavailable {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-to);
color: var(--text-muted);
font-size: 20px;
}

.w90-filter-buttons {
display: flex;
gap: 12px;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
}

.w90-filter-btn {
padding: 10px 24px;
background: var(--card-bg);
border: 2px solid var(--card-border);
color: var(--text-light);
cursor: pointer;
font-weight: 600;
transition: all 0.2s ease-in-out;
font-family: 'Montserrat', sans-serif;
}

.w90-filter-btn:hover, .w90-filter-btn.active {
background: var(--primary);
color: var(--bg-to);
border-color: var(--primary);
}

.w90-page-header {
padding: 120px 0 60px;
text-align: center;
}

.w90-page-header h1 {
font-size: 48px;
color: var(--primary);
margin-bottom: 16px;
}

.w90-page-header p {
font-size: 18px;
color: var(--text-muted);
}

.w90-content-section {
max-width: 900px;
margin: 0 auto;
padding: 60px 0;
}

.w90-content-section h2 {
font-size: 32px;
color: var(--primary);
margin: 40px 0 20px;
}

.w90-content-section h3 {
font-size: 24px;
color: var(--accent);
margin: 30px 0 16px;
}

.w90-content-section p {
color: var(--text-muted);
margin-bottom: 16px;
line-height: 1.8;
}

.w90-content-section ul, .w90-content-section ol {
color: var(--text-muted);
margin: 16px 0 16px 30px;
line-height: 1.8;
}

.w90-age-banner {
background: var(--primary);
color: var(--bg-to);
padding: 16px;
text-align: center;
font-weight: 700;
font-size: 16px;
border-bottom: 3px solid var(--accent);
}

@media (max-width: 768px) {
.w90-nav-links {
position: fixed;
top: 70px;
left: -100%;
flex-direction: column;
background: rgba(12, 25, 41, 0.98);
width: 100%;
padding: 30px;
transition: left 0.2s ease-in-out;
border-bottom: 2px solid var(--card-border);
backdrop-filter: blur(10px);
}

.w90-nav-links.active {
left: 0;
}

.w90-hamburger {
display: flex;
}

.w90-hero {
padding: 80px 0 60px;
min-height: 500px;
text-align: center;
}

.w90-hero::before {
background: rgba(12, 25, 41, 0.9);
}

.w90-hero-content {
max-width: 100%;
}

.w90-hero h1 {
font-size: 36px;
}

.w90-hero p {
font-size: 18px;
}

.w90-hero-badge {
top: 20px;
right: 20px;
padding: 8px 16px;
font-size: 18px;
}

.w90-hero-ctas {
justify-content: center;
}

.w90-section {
padding: 60px 0;
}

.w90-section-header h2 {
font-size: 32px;
}

.w90-games-grid {
grid-template-columns: 1fr;
}

.w90-features-timeline::before {
display: none;
}

.w90-feature-item, .w90-feature-item:nth-child(even) {
flex-direction: column !important;
text-align: center;
}

.w90-feature-icon {
width: 60px;
height: 60px;
font-size: 36px;
}

.w90-why-grid {
grid-template-columns: 1fr;
}

.w90-cta-band h2 {
font-size: 28px;
}

.w90-responsible h2 {
font-size: 28px;
}

.w90-footer-content {
grid-template-columns: 1fr;
}

.w90-modal-content {
width: 95%;
height: 85vh;
}

.w90-modal-header h2 {
font-size: 16px;
}
}