@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600&display=swap');

:root {
  --bm-bg: #080B12;
  --bm-card-bg: #121826;
  --bm-card-border: #1F2937;
  --bm-gold: #D4AF37;
  --bm-red: #8B0000;
  --bm-text: #E2E8F0;
  --bm-muted: #94A3B8;
  --bm-font-head: 'Playfair Display', serif;
  --bm-font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bm-bg); color: var(--bm-text); font-family: var(--bm-font-body); line-height: 1.6; }
h1, h2, h3 { font-family: var(--bm-font-head); font-weight: 700; color: var(--bm-gold); }
a { color: var(--bm-gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #fff; }
ul { list-style: none; }

/* LAYOUT */
.bm-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bm-section { padding: 100px 0; border-bottom: 1px solid var(--bm-card-border); }

/* HEADER */
.bm-top-bar { padding: 20px 0; background: rgba(8, 11, 18, 0.95); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--bm-gold); }
.bm-top-flex { display: flex; justify-content: space-between; align-items: center; }
.bm-logo-group { display: flex; align-items: center; gap: 20px; }
.bm-logo-abbr { font-family: var(--bm-font-head); font-size: 2rem; color: var(--bm-bg); background: var(--bm-gold); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.bm-brand-title { font-size: 1.5rem; line-height: 1.2; font-family: var(--bm-font-head); font-weight: 700; color: var(--bm-gold); }
.bm-brand-sub { font-size: 0.8rem; color: var(--bm-muted); text-transform: uppercase; letter-spacing: 2px; }
.bm-badge { border: 1px solid var(--bm-red); color: var(--bm-red); padding: 5px 15px; font-weight: 600; border-radius: 20px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* HERO */
.bm-main-showcase { min-height: 80vh; display: flex; align-items: center; background: radial-gradient(circle at top right, #1F2937, transparent 50%), radial-gradient(circle at bottom left, #2D1414, transparent 50%); position: relative; padding: 60px 0; }
.bm-showcase-content { text-align: center; max-width: 800px; margin: 0 auto; }
.bm-kicker-label { display: inline-block; padding: 5px 15px; background: rgba(212, 175, 55, 0.1); color: var(--bm-gold); border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 20px; }
.bm-showcase-title { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.bm-showcase-desc { font-size: 1.2rem; color: var(--bm-muted); margin-bottom: 60px; }

.bm-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bm-info-box { background: var(--bm-card-bg); padding: 30px; border-radius: 12px; border: 1px solid var(--bm-card-border); transition: transform 0.4s; }
.bm-info-box:hover { transform: translateY(-10px); border-color: var(--bm-gold); }
.bm-info-title { font-size: 1.2rem; margin-bottom: 10px; }
.bm-info-text { font-size: 0.95rem; color: var(--bm-muted); }

/* SECTIONS (Responsible & Gaming) */
.bm-section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.bm-section-title { font-size: 2.5rem; margin-bottom: 20px; }
.bm-section-desc { font-size: 1.1rem; color: var(--bm-muted); }

.bm-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.bm-feature-card { background: linear-gradient(145deg, var(--bm-card-bg), #0f141e); padding: 40px; border-radius: 16px; border: 1px solid var(--bm-card-border); position: relative; overflow: hidden; }
.bm-feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--bm-gold); transform: scaleY(0); transition: transform 0.4s ease; transform-origin: bottom; }
.bm-feature-card:hover::before { transform: scaleY(1); transform-origin: top; }
.bm-card-kicker { font-size: 0.8rem; color: var(--bm-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.bm-card-title { font-size: 1.6rem; margin-bottom: 20px; }
.bm-card-text { font-size: 0.95rem; color: var(--bm-muted); margin-bottom: 25px; min-height: 50px; }
.bm-card-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 0.9rem; color: #cbd5e1; }
.bm-card-list li::before { content: '♦'; position: absolute; left: 0; color: var(--bm-gold); font-size: 1.1rem; top: -2px; }

/* FOOTER */
.bm-base { background: #05070A; padding: 80px 0 40px; border-top: 1px solid var(--bm-card-border); }
.bm-base-slogan { text-align: center; font-size: 2rem; color: var(--bm-gold); margin-bottom: 60px; font-family: var(--bm-font-head); }
.bm-base-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.bm-base-col-title { font-size: 1.1rem; color: #fff; margin-bottom: 20px; font-family: var(--bm-font-body); text-transform: uppercase; letter-spacing: 1px; }
.bm-base-text { font-size: 0.9rem; color: var(--bm-muted); }
.bm-base-contact p { font-size: 0.9rem; color: var(--bm-muted); margin-bottom: 10px; }
.bm-base-nav ul li { margin-bottom: 10px; }
.bm-base-nav a { font-size: 0.9rem; color: var(--bm-muted); }
.bm-base-nav a:hover { color: var(--bm-gold); padding-left: 5px; }
.bm-base-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--bm-card-border); font-size: 0.85rem; color: var(--bm-muted); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .bm-info-grid, .bm-card-grid, .bm-base-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-showcase-title { font-size: 3rem; }
}
@media (max-width: 768px) {
  .bm-top-flex { flex-direction: column; gap: 20px; text-align: center; }
  .bm-info-grid, .bm-card-grid, .bm-base-grid { grid-template-columns: 1fr; }
  .bm-showcase-title { font-size: 2.5rem; }
}
