@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Open+Sans:wght@400&family=Source+Code+Pro&display=swap');

:root {
--primary-color: #06b6d4;
--primary-glow: rgba(6, 182, 212, 0.5);
--secondary-color: #0891b2;
--accent-color: #67e8f9;
--accent-glow: rgba(103, 232, 249, 0.3);
--bg-gradient-from: #042f2e;
--bg-gradient-via: #134e4a;
--bg-gradient-to: #021716;
--card-bg: rgba(19, 78, 74, 0.6);
--card-border: rgba(6, 182, 212, 0.25);
--text-light: #f0fdfa;
--text-dim: #99f6e4;
--font-heading: 'Montserrat', system-ui, sans-serif;
--font-body: 'Open Sans', system-ui, sans-serif;
--font-mono: 'Source Code Pro', monospace;
--border-radius: 14px;
--transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
font-family: var(--font-body);
background: linear-gradient(180deg, var(--bg-gradient-from), var(--bg-gradient-via), var(--bg-gradient-to));
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
overflow-x: hidden;
}

.fcb1-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.fcb1-age-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
z-index: 10000;
align-items: center;
justify-content: center;
}

.fcb1-age-modal.active { display: flex; }

.fcb1-age-modal-content {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
padding: 40px;
max-width: 500px;
text-align: center;
box-shadow: 0 0 40px var(--primary-glow);
}

.fcb1-age-icon {
font-size: 80px;
margin-bottom: 20px;
}

.fcb1-age-modal h2 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 28px;
margin-bottom: 20px;
color: var(--accent-color);
}

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

.fcb1-age-buttons {
display: flex;
gap: 15px;
justify-content: center;
}

.fcb1-btn {
padding: 14px 32px;
border: none;
border-radius: var(--border-radius);
font-family: var(--font-body);
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all var(--transition);
text-decoration: none;
display: inline-block;
}

.fcb1-btn-primary {
background: var(--primary-color);
color: #000;
box-shadow: 0 4px 20px var(--primary-glow);
}

.fcb1-btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 6px 30px var(--primary-glow);
}

.fcb1-btn-secondary {
background: transparent;
color: var(--text-light);
border: 2px solid var(--card-border);
}

.fcb1-btn-secondary:hover {
background: var(--card-bg);
border-color: var(--primary-color);
}

.fcb1-header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(4, 47, 46, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
}

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

.fcb1-logo {
font-family: var(--font-heading);
font-weight: 800;
font-size: 24px;
color: var(--accent-color);
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}

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

.fcb1-nav-links a {
color: var(--text-light);
text-decoration: none;
font-weight: 600;
transition: color var(--transition);
}

.fcb1-nav-links a:hover {
color: var(--accent-color);
}

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

.fcb1-hamburger span {
width: 30px;
height: 3px;
background: var(--accent-color);
border-radius: 3px;
transition: all var(--transition);
}

.age-badge {
background: #dc2626;
color: #fff;
padding: 4px 10px;
border-radius: 6px;
font-weight: 800;
font-size: 14px;
font-family: var(--font-heading);
}

.fcb1-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920');
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.fcb1-hero::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(4,47,46,0.95), rgba(2,23,22,0.85));
}

.fcb1-hero-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
padding: 40px 20px;
}

.fcb1-hero-badge {
position: absolute;
top: 30px;
right: 30px;
font-size: 40px;
animation: fcb1-pulse 2s infinite;
}

.fcb1-hero h1 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 56px;
margin-bottom: 20px;
line-height: 1.2;
text-shadow: 0 0 30px var(--primary-glow);
}

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

.fcb1-hero-cta {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 20px;
flex-wrap: wrap;
}

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

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

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

.fcb1-section-title {
font-family: var(--font-heading);
font-weight: 800;
font-size: 42px;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}

.fcb1-section-subtitle {
font-size: 18px;
color: var(--text-dim);
}

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

[data-game-card] {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
overflow: hidden;
transition: all var(--transition);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

[data-game-card]:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 40px var(--primary-glow);
border-color: var(--primary-color);
}

[data-game-image-wrap] {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
background: linear-gradient(135deg, var(--secondary-color), var(--bg-gradient-via));
}

[data-game-image] {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition);
}

[data-game-card]:hover [data-game-image] {
transform: scale(1.1);
}

[data-game-image-fallback] {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-weight: 800;
font-size: 18px;
text-align: center;
padding: 20px;
color: var(--accent-color);
}

[data-game-meta] {
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}

[data-game-category] {
font-size: 12px;
text-transform: uppercase;
color: var(--accent-color);
font-weight: 600;
letter-spacing: 1px;
}

[data-game-title] {
font-family: var(--font-heading);
font-weight: 800;
font-size: 20px;
padding: 0 15px 15px;
color: var(--text-light);
}

[data-play-demo] {
margin: 0 15px 15px;
width: calc(100% - 30px);
padding: 12px;
background: var(--primary-color);
color: #000;
border: none;
border-radius: 8px;
font-weight: 700;
cursor: pointer;
transition: all var(--transition);
font-family: var(--font-body);
font-size: 16px;
}

[data-play-demo]:hover {
transform: scale(1.05);
box-shadow: 0 5px 20px var(--primary-glow);
}

.fcb1-cta-band {
background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
padding: 60px 20px;
text-align: center;
box-shadow: 0 0 60px var(--primary-glow);
}

.fcb1-cta-band h2 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 36px;
margin-bottom: 20px;
color: #000;
}

.fcb1-cta-band p {
font-size: 18px;
margin-bottom: 30px;
color: rgba(0,0,0,0.8);
}

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

.fcb1-feature-card {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
padding: 30px;
text-align: center;
transition: all var(--transition);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.fcb1-feature-card:hover {
transform: translateY(-5px);
border-color: var(--accent-color);
box-shadow: 0 12px 35px var(--accent-glow);
}

.fcb1-feature-icon {
font-size: 48px;
margin-bottom: 20px;
animation: fcb1-float 3s ease-in-out infinite;
}

.fcb1-feature-card h3 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 22px;
margin-bottom: 15px;
color: var(--accent-color);
}

.fcb1-feature-card p {
color: var(--text-dim);
font-size: 15px;
}

.fcb1-trust-block {
background: var(--card-bg);
border: 2px solid var(--accent-color);
border-radius: var(--border-radius);
padding: 40px;
max-width: 800px;
margin: 0 auto;
box-shadow: 0 0 40px var(--accent-glow);
}

.fcb1-trust-block h3 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 28px;
margin-bottom: 20px;
color: var(--accent-color);
text-align: center;
}

.fcb1-trust-block ul {
list-style: none;
}

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

.fcb1-trust-block li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: 800;
font-size: 20px;
}

.fcb1-steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.fcb1-step-card {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
padding: 30px;
text-align: center;
position: relative;
transition: all var(--transition);
}

.fcb1-step-card:hover {
transform: scale(1.05);
border-color: var(--primary-color);
}

.fcb1-step-number {
position: absolute;
top: 15px;
right: 15px;
width: 40px;
height: 40px;
background: var(--primary-color);
color: #000;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-weight: 800;
font-size: 20px;
}

.fcb1-step-icon {
font-size: 56px;
margin-bottom: 20px;
}

.fcb1-step-card h3 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 22px;
margin-bottom: 15px;
color: var(--text-light);
}

.fcb1-step-card p {
color: var(--text-dim);
}

.fcb1-responsible {
background: var(--card-bg);
border: 3px solid #dc2626;
border-radius: var(--border-radius);
padding: 50px;
text-align: center;
max-width: 900px;
margin: 0 auto;
box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
}

.fcb1-responsible-icon {
font-size: 80px;
margin-bottom: 20px;
}

.fcb1-responsible h2 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 38px;
margin-bottom: 25px;
color: var(--accent-color);
}

.fcb1-responsible p {
font-size: 18px;
color: var(--text-dim);
margin-bottom: 20px;
line-height: 1.8;
}

.fcb1-responsible-links {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}

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

.fcb1-faq-item {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
margin-bottom: 20px;
overflow: hidden;
transition: all var(--transition);
}

.fcb1-faq-item:hover {
border-color: var(--primary-color);
}

.fcb1-faq-question {
width: 100%;
background: transparent;
border: none;
padding: 20px;
text-align: left;
font-family: var(--font-heading);
font-weight: 800;
font-size: 18px;
color: var(--text-light);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}

.fcb1-faq-question:hover {
color: var(--accent-color);
}

.fcb1-faq-icon {
font-size: 24px;
transition: transform var(--transition);
}

.fcb1-faq-item.active .fcb1-faq-icon {
transform: rotate(180deg);
}

.fcb1-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.fcb1-faq-item.active .fcb1-faq-answer {
max-height: 500px;
}

.fcb1-faq-answer p {
padding: 0 20px 20px;
color: var(--text-dim);
line-height: 1.8;
}

.fcb1-footer {
background: rgba(2, 23, 22, 0.9);
border-top: 2px solid var(--card-border);
padding: 60px 0 30px;
margin-top: 80px;
}

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

.fcb1-footer-section h4 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 20px;
margin-bottom: 20px;
color: var(--accent-color);
}

.fcb1-footer-section p,
.fcb1-footer-section a {
color: var(--text-dim);
font-size: 14px;
line-height: 1.8;
}

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

.fcb1-footer-links li {
margin-bottom: 10px;
}

.fcb1-footer-links a {
text-decoration: none;
transition: color var(--transition);
}

.fcb1-footer-links a:hover {
color: var(--accent-color);
}

.fcb1-footer-badge {
font-size: 60px;
margin-bottom: 15px;
}

.fcb1-footer-disclaimer {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--card-border);
}

.fcb1-footer-disclaimer p {
color: var(--text-dim);
font-size: 14px;
margin-bottom: 10px;
}

.game-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
z-index: 9999;
align-items: center;
justify-content: center;
}

.game-modal.active {
display: flex;
}

.modal-content {
width: 95%;
height: 90%;
max-width: 1400px;
background: var(--card-bg);
border: 2px solid var(--primary-color);
border-radius: var(--border-radius);
display: flex;
flex-direction: column;
box-shadow: 0 0 60px var(--primary-glow);
}

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

.modal-header h2 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 24px;
color: var(--accent-color);
flex: 1;
}

.close-btn {
background: transparent;
border: 2px solid var(--card-border);
color: var(--text-light);
font-size: 32px;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
transition: all var(--transition);
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
}

.close-btn:hover {
background: #dc2626;
border-color: #dc2626;
transform: rotate(90deg);
}

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

.demo-unavailable {
flex: 1;
display: none;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-weight: 800;
font-size: 24px;
color: var(--text-dim);
}

.fcb1-bg-motif {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
opacity: 0.05;
background-image: 
linear-gradient(var(--primary-color) 1px, transparent 1px),
linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
background-size: 50px 50px;
}

.fcb1-floating-orb {
position: fixed;
width: 300px;
height: 300px;
border-radius: 50%;
filter: blur(80px);
pointer-events: none;
z-index: 0;
animation: fcb1-float 8s ease-in-out infinite;
}

.fcb1-orb-1 {
top: 10%;
left: 10%;
background: var(--primary-glow);
}

.fcb1-orb-2 {
bottom: 20%;
right: 15%;
background: var(--accent-glow);
animation-delay: -4s;
}

.fcb1-glow-divider {
height: 2px;
background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
margin: 60px 0;
box-shadow: 0 0 20px var(--primary-glow);
}

.fcb1-category-filters {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.fcb1-filter-btn {
padding: 10px 24px;
background: var(--card-bg);
border: 2px solid var(--card-border);
color: var(--text-light);
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: all var(--transition);
font-family: var(--font-body);
}

.fcb1-filter-btn:hover,
.fcb1-filter-btn.active {
background: var(--primary-color);
color: #000;
border-color: var(--primary-color);
transform: scale(1.05);
}

.fcb1-page-header {
padding: 40px 0;
text-align: center;
background: var(--card-bg);
border-bottom: 2px solid var(--card-border);
margin-bottom: 40px;
}

.fcb1-page-header h1 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 42px;
color: var(--accent-color);
}

.fcb1-content-section {
max-width: 900px;
margin: 40px auto;
padding: 40px;
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: var(--border-radius);
}

.fcb1-content-section h2 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 28px;
margin: 30px 0 15px;
color: var(--accent-color);
}

.fcb1-content-section h3 {
font-family: var(--font-heading);
font-weight: 800;
font-size: 22px;
margin: 25px 0 12px;
color: var(--primary-color);
}

.fcb1-content-section p {
margin-bottom: 15px;
color: var(--text-dim);
line-height: 1.8;
}

.fcb1-content-section ul {
margin: 15px 0;
padding-left: 30px;
color: var(--text-dim);
}

.fcb1-content-section li {
margin-bottom: 10px;
line-height: 1.8;
}

@keyframes fcb1-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes fcb1-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
.fcb1-nav-links {
position: fixed;
top: 70px;
right: -100%;
flex-direction: column;
background: rgba(4, 47, 46, 0.98);
padding: 30px;
border-radius: var(--border-radius);
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
transition: right var(--transition);
backdrop-filter: blur(10px);
}

.fcb1-nav-links.active {
right: 20px;
}

.fcb1-hamburger {
display: flex;
}

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

.fcb1-hero p {
font-size: 16px;
}

.fcb1-hero-cta {
flex-direction: column;
}

.fcb1-section-title {
font-size: 32px;
}

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

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

.modal-content {
width: 100%;
height: 100%;
border-radius: 0;
}
}