:root {
--primary: #f97316;
--primary-glow: rgba(249, 115, 22, 0.4);
--secondary: #ea580c;
--accent: #fdba74;
--accent-glow: rgba(253, 186, 116, 0.3);
--bg-dark: #1a0f00;
--bg-mid: #3d2200;
--bg-darker: #0f0800;
--card-bg: rgba(61, 34, 0, 0.6);
--card-border: rgba(249, 115, 22, 0.2);
--text-light: #ffffff;
--text-muted: rgba(255, 255, 255, 0.7);
--radius: 1.5rem;
--transition: 0.4s ease-out;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Work Sans', system-ui, sans-serif;
font-weight: 400;
background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-darker) 100%);
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }
.bvl1-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.bvl1-header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(26, 15, 0, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--card-border);
padding: 1rem 0;
}
.bvl1-header-inner {
display: flex;
justify-content: space-between;
align-items: center;
}
.bvl1-logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
text-shadow: 0 0 20px var(--primary-glow);
}
.bvl1-nav { display: flex; gap: 2rem; align-items: center; }
.bvl1-nav a {
transition: color var(--transition);
font-weight: 500;
}
.bvl1-nav a:hover { color: var(--primary); }
.bvl1-age-badge {
background: var(--primary);
color: var(--bg-dark);
padding: 0.25rem 0.75rem;
border-radius: 2rem;
font-weight: 700;
font-size: 0.875rem;
display: inline-block;
}
.bvl1-hamburger {
display: none;
flex-direction: column;
gap: 0.25rem;
background: transparent;
padding: 0.5rem;
}
.bvl1-hamburger span {
width: 1.5rem;
height: 2px;
background: var(--text-light);
transition: var(--transition);
}
.bvl1-mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: rgba(26, 15, 0, 0.98);
backdrop-filter: blur(20px);
padding: 2rem;
transition: var(--transition);
z-index: 2000;
}
.bvl1-mobile-menu.bvl1-active { right: 0; }
.bvl1-mobile-menu nav {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin-top: 3rem;
}
.bvl1-mobile-close {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 2rem;
background: transparent;
color: var(--text-light);
}
.bvl1-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 4rem 1rem;
overflow: hidden;
background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}
.bvl1-hero::before {
content: '';
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--primary-glow), transparent 70%);
top: -300px;
right: -200px;
animation: bvl1-pulse 4s ease-in-out infinite;
}
@keyframes bvl1-pulse {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 0.6; transform: scale(1.1); }
}
.bvl1-hero-content {
position: relative;
z-index: 1;
max-width: 800px;
}
.bvl1-hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--text-light), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.bvl1-hero p {
font-size: 1.25rem;
color: var(--text-muted);
margin-bottom: 2rem;
}
.bvl1-hero-cta {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 1rem;
}
.bvl1-btn {
padding: 1rem 2rem;
border-radius: 3rem;
font-weight: 600;
transition: var(--transition);
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 1rem;
}
.bvl1-btn-primary {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--text-light);
box-shadow: 0 4px 20px var(--primary-glow);
}
.bvl1-btn-primary:hover {
transform: scale(1.03);
box-shadow: 0 6px 30px var(--primary-glow);
}
.bvl1-btn-outline {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.bvl1-btn-outline:hover {
background: var(--primary);
color: var(--bg-dark);
transform: scale(1.03);
}
.bvl1-section {
padding: 6rem 0;
position: relative;
}
.bvl1-section-header {
text-align: center;
margin-bottom: 3rem;
}
.bvl1-section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 0.5rem;
display: inline-flex;
align-items: center;
gap: 0.75rem;
}
.bvl1-section-header p {
color: var(--text-muted);
font-size: 1.125rem;
}
.bvl1-games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 2rem;
}
.bvl1-game-card {
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--card-border);
border-radius: var(--radius);
padding: 1rem;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.bvl1-game-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, var(--accent-glow), transparent);
transform: rotate(45deg);
animation: bvl1-shimmer 3s linear infinite;
}
@keyframes bvl1-shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.bvl1-game-card:hover {
transform: translateY(-8px) scale(1.03);
border-color: var(--primary);
box-shadow: 0 8px 40px var(--primary-glow);
}
.bvl1-game-image-wrap {
position: relative;
width: 100%;
height: 180px;
border-radius: 0.75rem;
overflow: hidden;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--bg-mid), var(--bg-darker));
}
.bvl1-game-image-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
}
.bvl1-game-image-fallback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--text-light);
font-weight: 700;
padding: 1rem;
text-align: center;
}
.bvl1-game-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
font-size: 0.875rem;
}
.bvl1-game-meta span:first-child {
color: var(--accent);
font-weight: 600;
}
.bvl1-game-card h3 {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.bvl1-game-card button {
width: 100%;
padding: 0.75rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--text-light);
border-radius: 2rem;
font-weight: 600;
transition: var(--transition);
}
.bvl1-game-card button:hover {
transform: scale(1.05);
box-shadow: 0 4px 20px var(--primary-glow);
}
.bvl1-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.bvl1-step {
text-align: center;
padding: 2rem;
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--card-border);
border-radius: var(--radius);
transition: var(--transition);
}
.bvl1-step:hover {
transform: translateY(-8px);
border-color: var(--primary);
}
.bvl1-step-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.bvl1-step h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
}
.bvl1-step p { color: var(--text-muted); }
.bvl1-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.bvl1-feature {
padding: 2rem;
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--card-border);
border-radius: var(--radius);
transition: var(--transition);
}
.bvl1-feature:hover {
transform: translateY(-8px);
border-color: var(--primary);
box-shadow: 0 8px 40px var(--primary-glow);
}
.bvl1-feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.bvl1-feature h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
color: var(--accent);
}
.bvl1-trust {
text-align: center;
padding: 3rem;
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--card-border);
border-radius: var(--radius);
max-width: 800px;
margin: 0 auto;
}
.bvl1-trust h3 {
font-size: 2rem;
margin-bottom: 1rem;
}
.bvl1-trust ul {
list-style: none;
text-align: left;
max-width: 600px;
margin: 1.5rem auto;
}
.bvl1-trust li {
padding: 0.75rem 0;
padding-left: 2rem;
position: relative;
}
.bvl1-trust li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}
.bvl1-cta-band {
text-align: center;
padding: 4rem 2rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: var(--radius);
margin: 4rem auto;
}
.bvl1-cta-band h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.bvl1-cta-band p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.bvl1-responsible {
text-align: center;
padding: 4rem 2rem;
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 2px solid var(--primary);
border-radius: var(--radius);
max-width: 900px;
margin: 0 auto;
}
.bvl1-responsible-icon {
font-size: 4rem;
margin-bottom: 1rem;
}
.bvl1-responsible h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.bvl1-responsible p {
font-size: 1.125rem;
line-height: 1.8;
margin-bottom: 1rem;
}
.bvl1-responsible-links {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2rem;
}
.bvl1-responsible-links a {
color: var(--accent);
text-decoration: underline;
}
.bvl1-faq {
max-width: 800px;
margin: 0 auto;
}
.bvl1-faq-item {
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--card-border);
border-radius: var(--radius);
margin-bottom: 1rem;
overflow: hidden;
transition: var(--transition);
}
.bvl1-faq-item:hover { border-color: var(--primary); }
.bvl1-faq-question {
width: 100%;
text-align: left;
padding: 1.5rem;
font-weight: 600;
font-size: 1.125rem;
background: transparent;
color: var(--text-light);
display: flex;
justify-content: space-between;
align-items: center;
}
.bvl1-faq-question::after {
content: '+';
font-size: 1.5rem;
transition: var(--transition);
}
.bvl1-faq-item.bvl1-active .bvl1-faq-question::after {
transform: rotate(45deg);
}
.bvl1-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height var(--transition);
}
.bvl1-faq-item.bvl1-active .bvl1-faq-answer {
max-height: 500px;
}
.bvl1-faq-answer-inner {
padding: 0 1.5rem 1.5rem;
color: var(--text-muted);
}
.bvl1-footer {
background: rgba(15, 8, 0, 0.9);
padding: 4rem 0 2rem;
border-top: 1px solid var(--card-border);
margin-top: 4rem;
}
.bvl1-footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.bvl1-footer-section h3 {
font-size: 1.25rem;
margin-bottom: 1rem;
color: var(--primary);
}
.bvl1-footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.bvl1-footer-links a:hover { color: var(--primary); }
.bvl1-footer-disclaimer {
background: var(--card-bg);
padding: 2rem;
border-radius: var(--radius);
border: 1px solid var(--card-border);
margin-bottom: 2rem;
text-align: center;
}
.bvl1-footer-disclaimer .bvl1-age-badge {
font-size: 1.5rem;
padding: 0.5rem 1.5rem;
margin-bottom: 1rem;
}
.bvl1-footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--card-border);
color: var(--text-muted);
font-size: 0.875rem;
}
.bvl1-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.95);
display: none;
align-items: center;
justify-content: center;
z-index: 3000;
padding: 1rem;
}
.bvl1-modal.bvl1-active { display: flex; }
.bvl1-modal-content {
background: var(--bg-dark);
border: 2px solid var(--primary);
border-radius: var(--radius);
width: 100%;
max-width: 1200px;
max-height: 90vh;
display: flex;
flex-direction: column;
}
.bvl1-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid var(--card-border);
gap: 1rem;
}
.bvl1-modal-header h2 {
font-size: 1.5rem;
flex: 1;
}
.bvl1-modal-close {
background: transparent;
color: var(--text-light);
font-size: 2rem;
padding: 0;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.bvl1-modal-close:hover {
color: var(--primary);
transform: rotate(90deg);
}
.bvl1-modal-body {
flex: 1;
position: relative;
overflow: hidden;
}
.bvl1-modal-body iframe {
width: 100%;
height: 100%;
min-height: 600px;
border: none;
}
.bvl1-demo-unavailable {
display: none;
align-items: center;
justify-content: center;
height: 400px;
color: var(--text-muted);
font-size: 1.25rem;
}
.bvl1-age-popup {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.98);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
padding: 1rem;
}
.bvl1-age-popup-content {
background: var(--bg-dark);
border: 2px solid var(--primary);
border-radius: var(--radius);
padding: 3rem;
max-width: 500px;
text-align: center;
box-shadow: 0 10px 60px var(--primary-glow);
}
.bvl1-age-popup h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.bvl1-age-popup p {
font-size: 1.125rem;
margin-bottom: 2rem;
color: var(--text-muted);
}
.bvl1-age-popup-actions {
display: flex;
gap: 1rem;
justify-content: center;
}
.bvl1-filter-bar {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.bvl1-filter-btn {
padding: 0.75rem 1.5rem;
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 2rem;
color: var(--text-light);
font-weight: 600;
transition: var(--transition);
}
.bvl1-filter-btn:hover,
.bvl1-filter-btn.bvl1-active {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-color: var(--primary);
transform: scale(1.05);
}
.bvl1-page-header {
text-align: center;
padding: 4rem 0 2rem;
}
.bvl1-page-header h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1rem;
}
.bvl1-content-section {
max-width: 900px;
margin: 0 auto;
padding: 3rem 1rem;
}
.bvl1-content-section h2 {
font-size: 2rem;
margin: 3rem 0 1rem;
color: var(--primary);
}
.bvl1-content-section h3 {
font-size: 1.5rem;
margin: 2rem 0 1rem;
color: var(--accent);
}
.bvl1-content-section p {
margin-bottom: 1rem;
line-height: 1.8;
color: var(--text-muted);
}
.bvl1-content-section ul,
.bvl1-content-section ol {
margin: 1rem 0 1rem 2rem;
line-height: 1.8;
color: var(--text-muted);
}
.bvl1-alert {
background: var(--card-bg);
border: 2px solid var(--primary);
border-radius: var(--radius);
padding: 1.5rem;
margin: 2rem 0;
text-align: center;
}
.bvl1-alert .bvl1-age-badge {
font-size: 1.25rem;
padding: 0.5rem 1rem;
margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
.bvl1-nav { display: none; }
.bvl1-hamburger { display: flex; }
.bvl1-hero { min-height: 70vh; padding: 3rem 1rem; }
.bvl1-hero h1 { font-size: 2.5rem; }
.bvl1-hero-cta { flex-direction: column; }
.bvl1-section { padding: 3rem 0; }
.bvl1-games-grid { grid-template-columns: 1fr; }
.bvl1-steps { grid-template-columns: 1fr; }
.bvl1-features-grid { grid-template-columns: 1fr; }
.bvl1-footer-content { grid-template-columns: 1fr; }
.bvl1-modal-body iframe { min-height: 400px; }
}