.elementor-11 .elementor-element.elementor-element-70616876{--display:flex;--border-radius:25px 25px 25px 25px;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-11 .elementor-element.elementor-element-70616876.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-11 .elementor-element.elementor-element-b65a7cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:25px 25px 25px 25px;}.elementor-11 .elementor-element.elementor-element-b65a7cb.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-5fd319b{text-align:center;}.elementor-11 .elementor-element.elementor-element-5fd319b .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:35px;font-weight:600;color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-34ac788.elementor-element{--align-self:center;}.elementor-11 .elementor-element.elementor-element-5527b1e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-5384769{font-family:"Roboto", Sans-serif;font-size:18px;font-weight:400;color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-8414453{--display:flex;}@media(min-width:768px){.elementor-11 .elementor-element.elementor-element-70616876{--width:100%;}.elementor-11 .elementor-element.elementor-element-b65a7cb{--width:97.451%;}}/* Start custom CSS for html, class: .elementor-element-34ac788 */.casino-btn {
  position: relative;
  display: inline-block;
  padding: 16px 42px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  background: linear-gradient(270deg, #ff004c, #ffcc00, #00f0ff, #ff004c);
  background-size: 400% 400%;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 0 15px rgba(255, 0, 76, 0.7),
              0 0 30px rgba(255, 204, 0, 0.6);
  transition: all 0.3s ease;
}

/* 渐变流动 */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 外发光边框（跑马灯） */
.casino-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff004c, #ffcc00, #00f0ff, #ff004c);
  background-size: 300%;
  z-index: -1;
  animation: borderRun 4s linear infinite;
  filter: blur(8px);
}

@keyframes borderRun {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

/* hover效果 */
.casino-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 0, 76, 1),
              0 0 50px rgba(255, 204, 0, 1);
}

/* 点击反馈 */
.casino-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}/* End custom CSS */