/* WINIDN.BET EXACT COPY - CSS with JILI62 Colors */

:root{
  /* JILI62 Color Scheme - Replacing winidn.bet colors */
  --g:#ffd700; --g2:#ffaa00;  /* Gold instead of green */
  --gold:#ffd700; --gold2:#ffaa00;
  --text:#ffffff; --muted:#ffd700; --panel:#3b1f07;
  --shadow:0 12px 36px rgba(0,0,0,.45);
  --bg:#3b1f07;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{
  width:100%;min-height:100%;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--text);
  background:transparent; /* 背景由 canvas 负责 */
}
body{
  position:relative;
  z-index:0;
}
a{color:#fff;text-decoration:none}

/* ===== 霓虹能量粒子 + 烟雾背景画布 ===== */
#cyber-bg{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(1400px 800px at 70% 10%, #3b1f07, #000000);
}

/* ===== 通用布局 ===== */
.wrap{
  width:min(1200px,92%);
  margin:0 auto;
}
.section{
  padding:44px 0;
}
.title{
  margin:0 0 14px;
  font-size:28px;
  font-weight:900;
  font-family:"Poppins","Segoe UI","Arial",sans-serif;
  letter-spacing:1px;
  text-transform:uppercase;
  text-shadow:0 0 10px rgba(255,255,255,0.3);
}

/* ===== 左侧社交图标（PC 竖排 / H5 顶部一排） ===== */
.social{
  position:fixed;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:8;
}
.social a,
.social .social-disabled{
  width:60px;
  height:60px;
  display:block;
}
.social a img,
.social .social-disabled img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
}
.social .social-disabled{
  cursor: default;
  opacity: 0.6;
}
.social .social-disabled:hover{
  opacity: 0.6;
  transform: none;
}

/* ===== 顶部栏：LOGO + 2 按钮（无文字菜单） ===== */
header.top{
  position:fixed;
  top:0;left:0;right:0;
  z-index:10;
  background:linear-gradient(90deg,#3b1f07,#2d1810);
  box-shadow:0 10px 25px rgba(0,0,0,.6);
}
header.top .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.logo{
  height:56px;
  width:auto;
  filter:drop-shadow(0 0 14px rgba(255,215,0,.3));
  flex-shrink:0;
}
.glowline{
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,215,0,.9),transparent);
}

/* ===== 顶部按钮（PC 长条 / H5 圆形） ===== */
.header-buttons{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-shrink:0;
}
.header-buttons a{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  overflow:hidden;
  position:relative;
  border:1px solid transparent;
  transition:all .25s ease;
  box-shadow:var(--shadow);
}
.header-buttons a img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.header-buttons .btn-gold{
  width:140px;
  height:50px;
  background:linear-gradient(90deg,#ffd700,#ffaa00);
  box-shadow:0 0 25px rgba(255, 215, 0, 0.9), inset 0 0 10px rgba(255,255,200,0.6);
  border-color:rgba(255,215,0,0.8);
  position:relative;
}
.header-buttons .btn-gold img{
  position:relative;
  z-index:1;
}
.header-buttons .btn-green{
  width:140px;
  height:50px;
  background:linear-gradient(90deg,#ffd700,#ffaa00);
  box-shadow:0 0 25px rgba(255, 215, 0, 0.9), inset 0 0 10px rgba(255,255,200,0.6);
  border-color:rgba(255,215,0,0.8);
  position:relative;
}
.header-buttons .btn-green img{
  position:relative;
  z-index:1;
}
.header-buttons .btn-gold:hover,
.header-buttons .btn-green:hover{
  transform:scale(1.05);
  box-shadow:0 0 35px rgba(255,215,0,1), inset 0 0 14px rgba(255,255,200,0.8);
}

/* ==== H5 圆形按钮（不变形） ==== */
@media (max-width:768px){
  .header-buttons{
    gap:10px;
    justify-content:center;
  }
  .header-buttons a{
    width:48px !important;
    height:48px !important;
    border-radius:50% !important;
    padding:0 !important;
    background:none !important;
    box-shadow:0 0 14px rgba(255,215,0,.6) !important;
  }
  .header-buttons a img{
    display:none !important;
  }
  .header-buttons .btn-gold{
    background-image:url('../img/android_round_gold.png') !important;
    background-position:center !important;
    background-size:contain !important;
    background-repeat:no-repeat !important;
    border:none !important;
  }
  .header-buttons .btn-green{
    background-image:url('../img/kefu_round_gold.png') !important;
    background-position:center !important;
    background-size:contain !important;
    background-repeat:no-repeat !important;
    border:none !important;
  }
  .header-buttons a:active{
    transform:scale(1.05);
    box-shadow:0 0 18px rgba(255,215,0,0.9),0 0 35px rgba(255,215,0,0.4);
  }
}

/* ===== 主区域整体顶出：给 fixed header 留空间 ===== */
main{
  padding-top:86px;
}
@media (max-width:768px){
  main{padding-top:96px;}
}

/* ===== BONUS + 倒计时 + 轮播 ===== */
.bonus-row{
  display:flex;
  gap:24px;
  align-items:stretch;
  flex-wrap:wrap;
}
.promo-box{
  flex:1 1 60%;
  min-width:320px;
  position:relative;
  overflow:hidden;
  border-radius:14px;
  box-shadow:var(--shadow);
  background:#020909;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* 轮播图完整显示，不裁切 */
.promo-box img{
  width:100%;
  height:auto;
  display:none;
  max-width:100%;
}
.promo-box img.active{
  display:block;
  animation:fade .8s ease;
}
@keyframes fade{from{opacity:0}to{opacity:1}}

.promo-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:3;
}
.promo-dots .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.85);
  background:transparent;
  cursor:pointer;
}
.promo-dots .dot.active{
  background:#fff;
}

/* 高级极简立体倒计时（PC & H5 自适应） */
.countdown-box{
  flex:1 1 35%;
  min-width:280px;
  position:relative;
  background:radial-gradient(circle at 40% 20%, rgba(255,215,0,0.06), rgba(30,15,5,0.9) 85%);
  border:1.2px solid rgba(255,215,0,0.35);
  border-radius:18px;
  padding:24px 18px;
  box-shadow:
    inset 0 0 20px rgba(255,215,0,0.08),
    0 0 20px rgba(255,215,0,0.2),
    0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  text-align:center;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:300px;
}
.countdown-box .title{
  position:relative;
  z-index:2;
  color:#fff8e1;
  font-weight:800;
  font-size:22px;
  letter-spacing:.5px;
  margin-bottom:12px;
  text-shadow:0 0 4px rgba(255,215,0,0.3);
}
.countdown{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:nowrap;
}
.countdown div{
  background:linear-gradient(180deg, rgba(255,215,0,0.08), rgba(30,15,5,0.8));
  border-radius:12px;
  border:1px solid rgba(255,215,0,0.45);
  box-shadow:
    0 0 10px rgba(255,215,0,0.15),
    inset 0 0 6px rgba(255,215,0,0.2),
    0 4px 10px rgba(0,0,0,0.25);
  padding:12px 20px;
  transition:all .3s ease;
}
.countdown div:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 20px rgba(255,215,0,0.3),
    inset 0 0 10px rgba(255,215,0,0.25);
}
.countdown span{
  display:block;
  font-weight:700;
  color:#fff8e1;
  line-height:1.2;
}
.countdown small{
  display:block;
  color:#ffd700;
  letter-spacing:.3px;
}
@media (min-width:768px){
  .countdown span{font-size:32px;}
  .countdown small{font-size:14px;}
  .countdown-box{max-width:600px;margin:0 auto;}
}
@media (max-width:767px){
  .countdown-box .title{
    font-size:17px;
    margin-bottom:8px;
  }
  .countdown{
    flex-wrap:nowrap;
    justify-content:center;
    gap:4px;
  }
  .countdown div{
    padding:5px 8px;
    min-width:58px;
    border-radius:9px;
    box-shadow:
      0 0 5px rgba(255,215,0,0.18),
      inset 0 0 3px rgba(255,215,0,0.22);
  }
  .countdown span{
    font-size:14px;
    font-weight:700;
    line-height:1.1;
  }
  .countdown small{
    font-size:9px;
    opacity:.85;
  }
}

/* ===== 游戏区域（H5 2 列） ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  position:relative;
  display:flex;
  flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  outline:1px solid rgba(255,255,255,.06);
  color:#fff;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.card span{
  padding:10px 12px 14px;
  font-weight:800;
  font-size:15px;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.6);
}
.card:hover img{
  transform:scale(1.05);
}

@media (max-width:768px){
  .grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .card img{
    height:150px;
  }
  .card span{
    font-size:14px;
  }
  .section{
    padding:24px 0;
  }
}

/* ===== 快速导航按钮区域 ===== */
.nav-buttons-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:20px;
}
.nav-btn{
  position:relative;
  display:block;
  background:linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,170,0,0.1) 100%);
  border:2px solid rgba(255,215,0,0.5);
  border-radius:16px;
  padding:20px 14px;
  text-decoration:none;
  color:#fff;
  transition:all .35s ease;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.4),
    0 0 15px rgba(255,215,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
  overflow:hidden;
}
.nav-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transition:left .5s ease;
}
.nav-btn:hover::before{
  left:100%;
}
.nav-btn:hover{
  transform:translateY(-4px) scale(1.03);
  border-color:rgba(255,215,0,1);
  box-shadow:
    0 10px 30px rgba(255,215,0,0.5),
    0 0 30px rgba(255,215,0,0.4),
    0 0 50px rgba(255,215,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25);
  background:linear-gradient(135deg, rgba(255,215,0,0.25) 0%, rgba(255,170,0,0.2) 100%);
}
.nav-btn:hover .nav-btn-domain{
  color:#fff;
  text-shadow:
    0 0 15px rgba(255,215,0,1),
    0 0 30px rgba(255,215,0,0.8),
    0 0 45px rgba(255,215,0,0.5),
    0 2px 4px rgba(0,0,0,0.5);
  transform:scale(1.05);
  transition:all .35s ease;
}
.nav-btn:hover .nav-btn-domain::after{
  width:80%;
  height:3px;
  box-shadow:0 0 12px rgba(255,215,0,1);
}
.nav-btn-content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.nav-btn-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.3px;
  color:rgba(255,255,255,0.6);
  text-transform:uppercase;
  opacity:0.8;
}
.nav-btn-domain{
  font-size:18px;
  font-weight:900;
  color:#ffd700;
  letter-spacing:0.8px;
  text-shadow:
    0 0 10px rgba(255,215,0,0.8),
    0 0 20px rgba(255,215,0,0.5),
    0 2px 4px rgba(0,0,0,0.5);
  font-family:"Poppins","Segoe UI","Arial",sans-serif;
  line-height:1.2;
  text-transform:uppercase;
  position:relative;
}
.nav-btn-domain::after{
  content:"";
  position:absolute;
  bottom:-2px;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:2px;
  background:linear-gradient(90deg, transparent, #ffd700, transparent);
  box-shadow:0 0 8px rgba(255,215,0,0.8);
}
.nav-btn-speed{
  margin-top:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:20px;
}
.speed-indicator{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:600;
}
.speed-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#888;
  box-shadow:0 0 4px rgba(136,136,136,0.6);
  animation:pulse 1.5s ease-in-out infinite;
}
.speed-dot.testing{
  background:#ffd700;
  box-shadow:0 0 6px rgba(255,215,0,0.8);
  animation:pulse 0.8s ease-in-out infinite;
}
.speed-dot.fast{
  background:#00ff00;
  box-shadow:0 0 6px rgba(0,255,0,0.8);
  animation:none;
}
.speed-dot.medium{
  background:#ffaa00;
  box-shadow:0 0 6px rgba(255,170,0,0.8);
  animation:none;
}
.speed-dot.slow{
  background:#ff4444;
  box-shadow:0 0 6px rgba(255,68,68,0.8);
  animation:none;
}
.speed-dot.error{
  background:#888;
  box-shadow:0 0 4px rgba(136,136,136,0.6);
  animation:none;
}
.speed-text{
  color:rgba(255,255,255,0.7);
  font-size:10px;
  min-width:50px;
  text-align:center;
}
@keyframes pulse{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(0.8); }
}
.nav-btn.speed-fast .speed-text{
  color:#00ff00;
  text-shadow:0 0 4px rgba(0,255,0,0.6);
}
.nav-btn.speed-medium .speed-text{
  color:#ffaa00;
  text-shadow:0 0 4px rgba(255,170,0,0.6);
}
.nav-btn.speed-slow .speed-text{
  color:#ff4444;
  text-shadow:0 0 4px rgba(255,68,68,0.6);
}
.nav-btn.speed-error .speed-text{
  color:#888;
}

@media (max-width:768px){
  .nav-buttons-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .nav-btn{
    padding:18px 12px;
  }
  .nav-btn-label{
    font-size:11px;
  }
  .nav-btn-domain{
    font-size:16px;
    letter-spacing:0.6px;
  }
}

/* ===== 底部、下载按钮、浮动按钮 ===== */
.footer{
  padding:28px 0 34px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:30px;
  color:var(--muted);
  background:#3b1f07dd;
}
.logo.big{
  height:70px;
  margin-bottom:10px;
}
.btns{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.3px;
  box-shadow:var(--shadow);
}

.btn.gold{
  position:relative;
  display:inline-block;
  color:#2b2100;
  font-family:"Poppins","Segoe UI","Arial",sans-serif;
  font-size:20px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:14px 48px;
  border-radius:999px;
  text-shadow:
    0 1px 2px rgba(255,255,255,0.8),
    0 2px 6px rgba(255,200,0,0.7);
  background:linear-gradient(180deg,#ffe680 0%,#ffb300 45%,#ff8c00 100%);
  box-shadow:
    0 0 10px rgba(255,190,0,0.5),
    inset 0 2px 5px rgba(255,255,255,0.6),
    inset 0 -2px 6px rgba(0,0,0,0.2);
  border:1px solid rgba(255,200,0,0.4);
  overflow:hidden;
  transition:all .35s ease;
  min-width:220px;
}
.btn.gold::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(120deg,rgba(255,255,255,0.8) 0%,transparent 100%);
  transform:skewX(-25deg);
  animation:shimmer 2.2s infinite;
}
@keyframes shimmer{
  0%{left:-75%;}
  50%{left:125%;}
  100%{left:125%;}
}
.btn.gold:hover{
  transform:scale(1.08);
  box-shadow:
    0 0 25px rgba(255,210,60,0.9),
    0 0 55px rgba(255,160,0,0.6);
  color:#3a2500;
}

.fab{
  position:fixed;
  right:16px;
  bottom:18px;
  background:linear-gradient(90deg,var(--g),var(--g2));
  color:#000000;
  padding:12px 22px;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(255,215,0,.35), inset 0 0 14px rgba(255,255,255,.35);
  font-weight:900;
  letter-spacing:.3px;
  z-index:9;
}

/* ===== 悬浮LOGO按钮 - 品牌强化 ===== */
.logo-fab{
  position:fixed;
  left:20px;
  bottom:20px;
  width:140px;
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,170,0,0.1) 100%);
  border:3px solid rgba(255,215,0,0.6);
  box-shadow:
    0 0 20px rgba(255,215,0,0.5),
    0 0 40px rgba(255,215,0,0.3),
    0 8px 24px rgba(0,0,0,0.4),
    inset 0 0 15px rgba(255,215,0,0.2);
  z-index:9;
  cursor:pointer;
  transition:all .3s ease;
  overflow:visible;
  animation:logoFloat 3s ease-in-out infinite;
  padding:0;
}
.logo-fab::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:100%;
  height:100%;
  border-radius:12px;
  background:radial-gradient(circle at center, rgba(255,215,0,0.3) 0%, transparent 70%);
  animation:logoPulse 2s ease-in-out infinite;
}
.logo-fab img{
  width:calc(100% + 2px);
  height:calc(100% + 2px);
  object-fit:cover;
  padding:0;
  margin:-1px;
  position:relative;
  z-index:1;
  filter:drop-shadow(0 0 10px rgba(255,215,0,0.8));
  transition:transform .3s ease;
  border-radius:13px;
}
.logo-fab:hover{
  transform:scale(1.1);
  border-color:rgba(255,215,0,1);
  box-shadow:
    0 0 30px rgba(255,215,0,0.8),
    0 0 60px rgba(255,215,0,0.5),
    0 0 90px rgba(255,215,0,0.3),
    0 12px 32px rgba(0,0,0,0.5),
    inset 0 0 20px rgba(255,215,0,0.3);
}
.logo-fab:hover img{
  transform:scale(1.05);
  filter:drop-shadow(0 0 15px rgba(255,215,0,1));
}
.logo-fab:active{
  transform:scale(1.05);
}

@keyframes logoFloat{
  0%, 100%{
    transform:translateY(0px) rotate(0deg);
  }
  25%{
    transform:translateY(-8px) rotate(1deg);
  }
  50%{
    transform:translateY(-12px) rotate(0deg);
  }
  75%{
    transform:translateY(-8px) rotate(-1deg);
  }
}

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

/* ===== H5 社交栏位置与间距（空白缩小版） ===== */
@media (max-width:768px){
  .bonus-row{
    flex-direction:column;
    gap:16px;
  }
  .promo-box{
    flex:1 1 100%;
    width:100%;
    min-width:auto;
    min-height:auto;
  }
  .promo-box img{
    width:100%;
    height:auto;
    display:none;
  }
  .promo-box img.active{
    display:block;
  }
  .countdown-box{
    flex:1 1 100%;
    width:100%;
    min-width:auto;
    min-height:auto;
  }
  .social{
    position:fixed;
    top:88px;
    left:0;right:0;
    margin:0 auto;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:14px;
    transform:none;
    z-index:9;
  }
  .social a{
    width:48px;
    height:48px;
  }
  /* 让 bonus 区紧跟在社交栏之后，空白缩小 */
  #bonus{
    margin-top:40px;
  }
}

.footer .mini {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== 游戏馆认证图标 - 平面显示样式 ===== */
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent !important;
}

.footer-vendor {
  margin: 30px 0;
  padding: 30px 0;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  background: transparent !important;
}

.vendor-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: transparent !important;
}

.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-height: 50px;
}

.item-icon:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.item-icon .icon-color {
  display: block;
  width: auto;
  height: 50px;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
  filter: none !important;
  /* 图标已经是白色，不需要filter */
}

.item-icon .badge-text {
  display: none;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff !important;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.item-icon.has-text .badge-text {
  display: block !important;
}

.item-icon.has-text .icon-color {
  display: none !important;
}

.item-icon:not(.has-text) .icon-color {
  display: block !important;
}

.item-icon:not(.has-text) .badge-text {
  display: none !important;
}

@media (max-width: 768px) {
  .w1200 {
    padding: 0 15px;
  }
  
  .footer-vendor {
    margin: 20px 0;
    padding: 20px 0;
  }
  
  .vendor-icons {
    gap: 20px;
  }
  
  .item-icon .icon-color {
    height: 40px;
    max-width: 120px;
  }

  /* 悬浮LOGO按钮 - 移动端自适应 */
  .logo-fab {
    width: 70px;
    height: 70px;
    left: 12px;
    bottom: 12px;
    border-width: 2px;
    border-radius: 10px;
    cursor: move;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
  }
  .logo-fab::before {
    border-radius: 8px;
  }
  .logo-fab img {
    padding: 0;
    margin: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 9px;
    pointer-events: none;
  }
  .logo-fab.dragging {
    transition: none;
    z-index: 999;
  }
}
