:root{
  --sp-black:#000000;
  --sp-bg:#050505;
  --sp-bg2:#0b0b0b;
  --sp-surface:#121212;
  --sp-card:#181818;
  --sp-card2:#242424;
  --sp-card3:#2a2a2a;
  --sp-green:#1DB954;
  --sp-green2:#1ED760;
  --sp-green3:#18a84b;
  --sp-text:#ffffff;
  --sp-text2:#eeeeee;
  --sp-muted:#b3b3b3;
  --sp-muted2:#8d8d8d;
  --sp-line:rgba(255,255,255,.08);
  --sp-line2:rgba(29,185,84,.28);
  --sp-red:#ff4d4d;
  --sp-yellow:#f5c542;
  --sp-blue:#39a0ff;
  --sp-radius:28px;
  --sp-radius2:38px;
  --sp-shadow:0 22px 80px rgba(0,0,0,.62);
  --sp-shadow2:0 12px 40px rgba(0,0,0,.42);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  background:#000;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 10% 0%, rgba(29,185,84,.34), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(30,215,96,.18), transparent 28rem),
    linear-gradient(180deg,#111 0%,#050505 38%,#000 100%);
  color:var(--sp-text);
  font-family:Arial, Helvetica, sans-serif;
  min-height:100vh;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.65),transparent 70%);
  z-index:0;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,select,textarea{
  font:inherit;
}

.bmp-page{
  position:relative;
  z-index:1;
  min-height:100vh;
  padding:24px;
}

.bmp-shell{
  max-width:1480px;
  margin:0 auto;
}

.bmp-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 20px;
  margin-bottom:24px;
  border:1px solid var(--sp-line);
  border-radius:32px;
  background:rgba(18,18,18,.86);
  backdrop-filter:blur(20px);
  box-shadow:var(--sp-shadow2);
  position:sticky;
  top:16px;
  z-index:30;
}

.bmp-brand{
  display:flex;
  align-items:center;
  gap:15px;
  min-width:0;
}

.bmp-brand-logo{
  width:58px;
  height:58px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 25%, #fff 0 5%, transparent 6%),
    linear-gradient(135deg,var(--sp-green),var(--sp-green2));
  display:grid;
  place-items:center;
  color:#000;
  font-size:28px;
  font-weight:1000;
  box-shadow:0 0 38px rgba(29,185,84,.42);
  flex:0 0 auto;
}

.bmp-brand-text{
  min-width:0;
}

.bmp-brand-text h1{
  margin:0;
  font-size:23px;
  line-height:1.05;
  letter-spacing:-.05em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.bmp-brand-text p{
  margin:5px 0 0;
  color:var(--sp-muted);
  font-size:13px;
  line-height:1.35;
}

.bmp-menu{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
}

.bmp-menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 15px;
  border-radius:999px;
  border:1px solid var(--sp-line);
  background:rgba(255,255,255,.055);
  color:#fff;
  font-size:13px;
  font-weight:900;
  transition:.18s ease;
}

.bmp-menu a:hover{
  background:var(--sp-green);
  color:#000;
  border-color:var(--sp-green);
  transform:translateY(-1px);
}

.bmp-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:24px;
  align-items:stretch;
}

.bmp-hero-main{
  position:relative;
  overflow:hidden;
  min-height:610px;
  padding:50px;
  border-radius:44px;
  border:1px solid var(--sp-line);
  background:
    radial-gradient(circle at 84% 78%, rgba(29,185,84,.30), transparent 25rem),
    linear-gradient(135deg,rgba(29,185,84,.32),rgba(18,18,18,.95) 42%,rgba(0,0,0,.98));
  box-shadow:var(--sp-shadow);
}

.bmp-hero-main:before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-150px;
  bottom:-160px;
  border-radius:50%;
  background:
    repeating-radial-gradient(circle, rgba(0,0,0,.90) 0 17px, rgba(29,185,84,.55) 18px 20px, rgba(0,0,0,.92) 21px 38px);
  opacity:.78;
  filter:drop-shadow(0 0 50px rgba(29,185,84,.24));
}

.bmp-hero-main:after{
  content:"";
  position:absolute;
  inset:auto 52px 48px auto;
  width:150px;
  height:150px;
  border-radius:50%;
  border:34px solid rgba(29,185,84,.18);
  box-shadow:inset 0 0 30px rgba(0,0,0,.6),0 0 60px rgba(29,185,84,.18);
}

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

.bmp-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(30,215,96,.30);
  background:rgba(30,215,96,.13);
  color:var(--sp-green2);
  font-size:13px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.075em;
}

.bmp-kicker span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--sp-green2);
  box-shadow:0 0 18px rgba(30,215,96,.85);
}

.bmp-hero h2{
  margin:24px 0 18px;
  max-width:820px;
  font-size:clamp(48px,7vw,104px);
  line-height:.90;
  letter-spacing:-.085em;
}

.bmp-hero p{
  max-width:820px;
  margin:0 0 28px;
  color:#e6e6e6;
  font-size:20px;
  line-height:1.62;
}

.bmp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.bmp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid var(--sp-line);
  font-weight:1000;
  transition:.18s ease;
}

.bmp-btn-main{
  background:var(--sp-green);
  color:#000;
  border-color:var(--sp-green);
  box-shadow:0 0 34px rgba(29,185,84,.28);
}

.bmp-btn-main:hover{
  background:var(--sp-green2);
  transform:translateY(-2px) scale(1.01);
}

.bmp-btn-dark{
  background:rgba(255,255,255,.07);
  color:#fff;
}

.bmp-btn-dark:hover{
  background:#fff;
  color:#000;
  transform:translateY(-2px);
}

.bmp-hero-note{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:34px;
  max-width:760px;
}

.bmp-note{
  padding:16px;
  border-radius:22px;
  border:1px solid var(--sp-line);
  background:rgba(0,0,0,.35);
}

.bmp-note b{
  display:block;
  font-size:22px;
  letter-spacing:-.04em;
}

.bmp-note small{
  display:block;
  color:var(--sp-muted);
  margin-top:5px;
  line-height:1.35;
}

.bmp-side{
  display:grid;
  gap:24px;
}

.bmp-player{
  border-radius:44px;
  border:1px solid var(--sp-line);
  background:rgba(18,18,18,.92);
  box-shadow:var(--sp-shadow);
  padding:28px;
  min-height:610px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
}

.bmp-player:before{
  content:"";
  position:absolute;
  inset:-80px -90px auto auto;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(29,185,84,.24);
  filter:blur(14px);
}

.bmp-cover{
  position:relative;
  aspect-ratio:1/1;
  border-radius:36px;
  background:
    radial-gradient(circle at 28% 22%,rgba(255,255,255,.95),transparent 0 4%,transparent 6%),
    repeating-radial-gradient(circle, rgba(0,0,0,.92) 0 15px, rgba(29,185,84,.78) 16px 18px, rgba(0,0,0,.92) 19px 34px);
  box-shadow:0 28px 90px rgba(0,0,0,.55),0 0 60px rgba(29,185,84,.16);
  overflow:hidden;
}

.bmp-cover:before{
  content:"BÜCHLER";
  position:absolute;
  inset:22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.09);
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.18);
  font-size:44px;
  font-weight:1000;
  letter-spacing:-.08em;
}

.bmp-cover:after{
  content:"";
  position:absolute;
  inset:50%;
  width:86px;
  height:86px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:#101010;
  border:22px solid rgba(29,185,84,.88);
  box-shadow:inset 0 0 30px #000;
}

.bmp-player-info{
  position:relative;
  z-index:2;
  margin-top:22px;
}

.bmp-player-info h3{
  margin:0;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.055em;
}

.bmp-player-info p{
  margin:8px 0 0;
  color:var(--sp-muted);
  line-height:1.45;
}

.bmp-bars{
  display:flex;
  align-items:end;
  gap:5px;
  height:54px;
  margin-top:20px;
}

.bmp-bars span{
  width:100%;
  border-radius:999px;
  background:linear-gradient(180deg,var(--sp-green2),var(--sp-green));
  min-height:10px;
  opacity:.9;
}

.bmp-bars span:nth-child(1){height:22%}
.bmp-bars span:nth-child(2){height:55%}
.bmp-bars span:nth-child(3){height:35%}
.bmp-bars span:nth-child(4){height:84%}
.bmp-bars span:nth-child(5){height:48%}
.bmp-bars span:nth-child(6){height:68%}
.bmp-bars span:nth-child(7){height:30%}
.bmp-bars span:nth-child(8){height:76%}
.bmp-bars span:nth-child(9){height:42%}
.bmp-bars span:nth-child(10){height:88%}
.bmp-bars span:nth-child(11){height:52%}
.bmp-bars span:nth-child(12){height:31%}

.bmp-progress{
  height:9px;
  margin-top:20px;
  border-radius:999px;
  background:#333;
  overflow:hidden;
}

.bmp-progress span{
  display:block;
  width:72%;
  height:100%;
  border-radius:999px;
  background:var(--sp-green);
}

.bmp-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.bmp-mini{
  min-height:128px;
  padding:19px;
  border-radius:28px;
  border:1px solid var(--sp-line);
  background:rgba(24,24,24,.92);
  box-shadow:var(--sp-shadow2);
}

.bmp-mini b{
  display:block;
  font-size:25px;
  letter-spacing:-.04em;
}

.bmp-mini span{
  display:block;
  color:var(--sp-muted);
  margin-top:7px;
  line-height:1.35;
  font-size:13px;
}

.bmp-section{
  margin-top:24px;
  padding:34px;
  border-radius:44px;
  border:1px solid var(--sp-line);
  background:rgba(18,18,18,.86);
  box-shadow:var(--sp-shadow2);
}

.bmp-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}

.bmp-section-head h2{
  margin:0;
  font-size:38px;
  line-height:1.05;
  letter-spacing:-.065em;
}

.bmp-section-head p{
  margin:8px 0 0;
  color:var(--sp-muted);
  line-height:1.5;
  max-width:760px;
}

.bmp-grid4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.bmp-grid3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.bmp-card{
  position:relative;
  overflow:hidden;
  padding:24px;
  min-height:220px;
  border-radius:32px;
  border:1px solid var(--sp-line);
  background:rgba(24,24,24,.92);
  box-shadow:0 12px 42px rgba(0,0,0,.32);
  transition:.18s ease;
}

.bmp-card:hover{
  transform:translateY(-3px);
  background:rgba(36,36,36,.95);
  border-color:rgba(29,185,84,.30);
}

.bmp-card:after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-70px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:rgba(29,185,84,.09);
}

.bmp-card-icon{
  width:54px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:rgba(29,185,84,.15);
  color:var(--sp-green2);
  font-size:26px;
  margin-bottom:18px;
}

.bmp-card h3{
  position:relative;
  z-index:2;
  margin:0 0 10px;
  font-size:23px;
  letter-spacing:-.045em;
}

.bmp-card p{
  position:relative;
  z-index:2;
  margin:0;
  color:var(--sp-muted);
  line-height:1.55;
  font-size:14px;
}

.bmp-card a{
  position:relative;
  z-index:2;
  display:inline-flex;
  margin-top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid var(--sp-line);
  font-weight:900;
  font-size:13px;
}

.bmp-card a:hover{
  background:var(--sp-green);
  color:#000;
}

.bmp-price{
  min-height:260px;
  display:flex;
  flex-direction:column;
}

.bmp-price strong{
  display:block;
  font-size:40px;
  line-height:1;
  letter-spacing:-.07em;
  margin:8px 0 10px;
}

.bmp-price ul{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
}

.bmp-price li{
  color:var(--sp-muted);
  font-size:14px;
}

.bmp-price li:before{
  content:"✓";
  color:var(--sp-green2);
  font-weight:1000;
  margin-right:8px;
}

.bmp-badge{
  display:inline-flex;
  width:max-content;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(29,185,84,.14);
  color:var(--sp-green2);
  border:1px solid rgba(29,185,84,.26);
  font-weight:1000;
  font-size:12px;
}

.bmp-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.bmp-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  min-height:74px;
  border-radius:24px;
  border:1px solid var(--sp-line);
  background:rgba(255,255,255,.05);
  transition:.18s ease;
}

.bmp-link:hover{
  background:rgba(29,185,84,.14);
  border-color:rgba(29,185,84,.34);
  transform:translateY(-2px);
}

.bmp-link b{
  display:block;
  font-size:16px;
}

.bmp-link small{
  display:block;
  color:var(--sp-muted);
  margin-top:4px;
}

.bmp-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  min-height:32px;
  padding:0 11px;
  border-radius:999px;
  background:var(--sp-green);
  color:#000;
  font-weight:1000;
  font-size:12px;
}

.bmp-track-list{
  display:grid;
  gap:12px;
}

.bmp-track{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:14px;
  border-radius:22px;
  border:1px solid var(--sp-line);
  background:rgba(255,255,255,.045);
}

.bmp-track:hover{
  background:rgba(255,255,255,.075);
}

.bmp-track-cover{
  width:56px;
  height:56px;
  border-radius:16px;
  background:
    radial-gradient(circle at center,#111 0 20%,transparent 21%),
    linear-gradient(135deg,var(--sp-green),#111);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.bmp-track h3{
  margin:0;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.bmp-track p{
  margin:4px 0 0;
  color:var(--sp-muted);
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.bmp-track-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--sp-green);
  color:#000;
  font-weight:1000;
}

.bmp-info-band{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}

.bmp-textbox{
  padding:28px;
  border-radius:32px;
  background:
    linear-gradient(135deg,rgba(29,185,84,.18),rgba(255,255,255,.04));
  border:1px solid var(--sp-line);
}

.bmp-textbox h3{
  margin:0 0 12px;
  font-size:29px;
  line-height:1.05;
  letter-spacing:-.055em;
}

.bmp-textbox p{
  margin:0;
  color:#dedede;
  line-height:1.65;
}

.bmp-status{
  display:grid;
  gap:12px;
}

.bmp-status-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:15px 16px;
  border-radius:20px;
  border:1px solid var(--sp-line);
  background:rgba(255,255,255,.045);
}

.bmp-status-row span{
  color:var(--sp-muted);
}

.bmp-status-row b{
  text-align:right;
}

.bmp-footer{
  color:var(--sp-muted);
  text-align:center;
  padding:34px 10px 8px;
  font-size:13px;
}

.bmp-empty{
  padding:22px;
  border-radius:24px;
  border:1px dashed rgba(255,255,255,.18);
  color:var(--sp-muted);
  background:rgba(255,255,255,.035);
}

@media(max-width:1180px){
  .bmp-hero{grid-template-columns:1fr}
  .bmp-side{grid-template-columns:1fr 1fr}
  .bmp-player{min-height:auto}
  .bmp-grid4{grid-template-columns:repeat(2,1fr)}
  .bmp-grid3{grid-template-columns:1fr}
  .bmp-links{grid-template-columns:repeat(2,1fr)}
  .bmp-info-band{grid-template-columns:1fr}
}

@media(max-width:760px){
  .bmp-page{padding:14px}
  .bmp-topbar{
    position:relative;
    top:auto;
    flex-direction:column;
    align-items:flex-start;
    border-radius:24px;
  }
  .bmp-menu{justify-content:flex-start}
  .bmp-brand-text h1{white-space:normal}
  .bmp-hero-main{
    min-height:auto;
    padding:30px;
    border-radius:30px;
  }
  .bmp-hero-main:before,.bmp-hero-main:after{display:none}
  .bmp-hero-note{grid-template-columns:1fr}
  .bmp-side{grid-template-columns:1fr}
  .bmp-section{
    padding:24px;
    border-radius:30px;
  }
  .bmp-section-head{
    display:block;
  }
  .bmp-grid4,.bmp-links{grid-template-columns:1fr}
  .bmp-track{
    grid-template-columns:48px minmax(0,1fr);
  }
  .bmp-track-action{display:none}
}


/* BMP_FORCE_RIGHT_DROPDOWN_START */
.bmp-menu{
  display:none !important;
}

.bmp-topbar{
  position:sticky;
  top:16px;
  z-index:9999;
}

.bmp-right-menu{
  position:relative;
  margin-left:auto;
  z-index:10000;
}

.bmp-right-menu-check{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.bmp-right-menu-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:1000;
  cursor:pointer;
  user-select:none;
  box-shadow:0 14px 36px rgba(0,0,0,.35);
}

.bmp-right-menu-button:hover{
  background:#1DB954;
  color:#000;
  border-color:#1DB954;
}

.bmp-right-menu-button span{
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
}

.bmp-right-menu-dark{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  opacity:0;
  pointer-events:none;
  z-index:10001;
  transition:.18s ease;
}

.bmp-right-menu-panel{
  position:fixed;
  top:0;
  right:0;
  width:min(430px, 92vw);
  height:100vh;
  padding:22px;
  background:
    radial-gradient(circle at top right, rgba(29,185,84,.30), transparent 20rem),
    #121212;
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow:-30px 0 90px rgba(0,0,0,.75);
  transform:translateX(105%);
  transition:.22s ease;
  z-index:10002;
  overflow:auto;
}

.bmp-right-menu-check:checked ~ .bmp-right-menu-dark{
  opacity:1;
  pointer-events:auto;
}

.bmp-right-menu-check:checked ~ .bmp-right-menu-panel{
  transform:translateX(0);
}

.bmp-right-menu-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.bmp-right-menu-top strong{
  display:block;
  font-size:28px;
  line-height:1;
  letter-spacing:-.06em;
}

.bmp-right-menu-top small{
  display:block;
  margin-top:8px;
  color:#b3b3b3;
}

.bmp-right-menu-top label{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:30px;
  font-weight:1000;
  cursor:pointer;
}

.bmp-right-menu-top label:hover{
  background:#1DB954;
  color:#000;
}

.bmp-right-menu-links{
  display:grid;
  gap:12px;
}

.bmp-right-menu-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  color:#fff;
}

.bmp-right-menu-links a:hover{
  background:#1DB954;
  color:#000;
  border-color:#1DB954;
  transform:translateX(-4px);
}

.bmp-right-menu-links b{
  font-size:17px;
}

.bmp-right-menu-links small{
  color:#b3b3b3;
  text-align:right;
}

.bmp-right-menu-links a:hover small{
  color:#063914;
}

@media(max-width:760px){
  .bmp-right-menu{
    width:100%;
  }

  .bmp-right-menu-button{
    width:100%;
  }
}
/* BMP_FORCE_RIGHT_DROPDOWN_END */
