:root {
  --body-bg-color: #080808;
  --body-text-color: #ffffff;
  --heading-color: #e9e8e8;
  --hero-gradient1: #ffffff;
  --hero-gradient2: #ffffff;
  --footer-bg-color: #0d0d0d6c;
  --link-color: #edd7fe;
  --header-bg-color: #ffffff;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background: url("/images/casino-patern.webp") center center / cover no-repeat fixed;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg,
    rgba(33, 30, 56, 0.918) 0%,
    rgba(67, 29, 78, 0.445) 18%,
    rgba(63, 1, 45, 0.521) 65%,
    rgba(73, 11, 94, 0.80) 100%
  );
  pointer-events: none;
}
.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
    box-shadow: 0 2px 10px rgb(102, 206, 255);
}
.hero-section.with-bg {
  background-image: url('/images/casino-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color);
  text-decoration: underline;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
      .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
      .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 1.9rem 19px;
  text-align: center;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-links {
  display: flex;
  gap: 15px;
}
.footer-links a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-divider {
  border: none;
  height: 1px;
  margin: 1.5rem auto;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--link-color),
    transparent
  );
  opacity: 0.5;
}
.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}
.footer img {
        filter: brightness(0) invert(1);
      }

 .navbar {
 background-color: transparent !important;
    transition: background-color 0.4s ease, box-shadow 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar.scrolled {
  background-color: transparent;
  position: absolute;
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.screen {
  position: relative;
  background: #e0dfdf;
  border-radius: 15px;
  margin: 50px 0;
}
.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}
.screen-header-right {
  display: flex;
}
.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}
.screen-body {
  display: flex;
}
.screen-body-item {
  flex: 1;
  padding: 50px;
}
.screen-body-item.left {
  display: flex;
  flex-direction: column;
}
.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--hero-gradient2);
  font-size: 26px;
}
.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: var(--link-color);
}
.app-contact {
  margin-top: auto;
  color: var(--body-text-color);
}
.app-form-group {
  margin-bottom: 15px;
}
.app-form-group.message {
  margin-top: 40px;
}
.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}
.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #000;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.app-form-control::placeholder {
  color: #666;
}
.app-form-control:focus {
  border-bottom-color: #000;
}
.app-form-button {
  background: var(--footer-bg-color);
  border: 2px solid var(--hero-gradient2);
  color: var(--link-color);
  font-size: 14px;
  cursor: pointer;
  outline: none;
  border-radius: 20px;
  padding: 5px 20px;
}
.app-form-button:hover {
  color: var(--hero-gradient1);
}
.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}
@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }
  .screen-body-item.left {
    margin-bottom: 30px;
  }
  .app-title {
    flex-direction: row;
  }
  .app-title span {
    margin-right: 12px;
  }
  .app-title:after {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }
  .screen-body-item {
    padding: 0;
  }
}
.custom-section {
  position: relative;
  background: linear-gradient(135deg,
    rgba(33, 30, 56, 0.92) 0%,
    rgba(67, 29, 78, 0.92) 22%,
    rgba(106, 0, 74, 0.92) 68%,
    rgba(73, 11, 94, 0.92) 100%
  );
  color: #efe9ff;
  padding: 60px 20px;
  border-radius: 22px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.custom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(89, 111, 163, 0.35), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(165, 38, 208, 0.28), transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,0.10) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.10) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.10) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.10) 75%);
  background-size: auto, auto, 44px 44px, 44px 44px, 44px 44px, 44px 44px;
  background-position: center, center, 0 0, 0 0, 0 0, 0 0;
  opacity: 0.9;
  pointer-events: none;
}
.custom-section::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 24px;
  width: 120px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(89, 111, 163, 0.0) 0%,
    rgba(89, 111, 163, 0.9) 25%,
    rgba(165, 38, 208, 0.9) 75%,
    rgba(165, 38, 208, 0.0) 100%
  );
  z-index: 1;
}
.custom-section * {
  position: relative;
  z-index: 1;
}
.custom-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.16);
}
.custom-section h2 {
  color: #ffffff !important;
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 22px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.custom-section h3 {
  color: rgba(239, 233, 255, 0.92) !important;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  text-shadow: 0 6px 14px rgba(0,0,0,0.30);
}
.custom-section p {
  color: rgba(239, 233, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 18px;
}
.custom-section a {
  color: #dbd577;
  text-decoration: none;
  border-bottom: 1px solid rgba(165, 38, 208, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.custom-section a:hover {
  color: #596fa3;
  border-color: rgba(89, 111, 163, 0.55);
}
.custom-section ul,
.custom-section ol {
  margin: 0 0 18px 18px;
  color: rgba(239, 233, 255, 0.88);
}
.custom-section li {
  margin-bottom: 8px;
}
.sidebar-linking{
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg,
    rgba(33, 30, 56, 0.92) 0%,
    rgba(67, 29, 78, 0.92) 22%,
    rgba(106, 0, 74, 0.92) 68%,
    rgba(73, 11, 94, 0.92) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
  overflow: hidden;
}
.sidebar-linking::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at 15% 15%, rgba(89,111,163,0.35), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(165,38,208,0.30), transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.08) 75%);
  background-size: auto, auto, 46px 46px, 46px 46px, 46px 46px, 46px 46px;
  opacity: .9;
  pointer-events:none;
}
.sidebar-linking > *{
  position: relative;
  z-index: 1;
}
.sidebar-linking h3{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .6px;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.sidebar-linking h3::after{
  content:"";
  display:block;
  width: 78px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(89,111,163,0.0) 0%,
    rgba(89,111,163,0.95) 25%,
    rgba(165,38,208,0.95) 75%,
    rgba(165,38,208,0.0) 100%
  );
}
.sidebar-linking .-page-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.sidebar-linking .-page-list li{
  margin: 0;
}
.sidebar-linking .-page-list a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(239,233,255,0.92);
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.sidebar-linking .-page-list a::before{
  content:"♠";
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #596fa3, #a526d0);
  box-shadow: 0 0 0 3px rgba(165,38,208,0.18);
  flex: 0 0 26px;
}
.sidebar-linking .-page-list li:nth-child(even) a::before{
  content:"♦";
}
.sidebar-linking .-page-list a:hover{
  transform: translateX(4px);
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(165,38,208,0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.sidebar-linking .-page-list a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(89,111,163,0.35), 0 14px 34px rgba(0,0,0,0.35);
}
.sidebar-linking .-page-list a:active{
  transform: translateX(2px);
}
.newsletter{
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg,
    rgba(33, 30, 56, 0.92) 0%,
    rgba(67, 29, 78, 0.92) 22%,
    rgba(106, 0, 74, 0.92) 68%,
    rgba(73, 11, 94, 0.92) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
  overflow: hidden;
}
.newsletter::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at 15% 15%, rgba(89,111,163,0.35), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(165,38,208,0.30), transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.08) 75%);
  background-size: auto, auto, 46px 46px, 46px 46px, 46px 46px, 46px 46px;
  opacity: .9;
  pointer-events:none;
}
.newsletter > *{
  position: relative;
  z-index: 1;
}
.newsletter-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .6px;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.newsletter-text{
  margin: 0 0 14px;
  color: rgba(239,233,255,0.86);
  line-height: 1.55;
}
.newsletter-label{
  display:block;
  margin: 0 0 8px;
  font-size: .95rem;
  color: rgba(239,233,255,0.92);
}
.newsletter-row{
  display:flex;
  gap: 10px;
  align-items: stretch;
}
.newsletter-input{
  flex: 1 1 auto;
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.95);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.newsletter-input::placeholder{
  color: rgba(239,233,255,0.55);
}
.newsletter-input:focus{
  border-color: rgba(165,38,208,0.45);
  box-shadow: 0 0 0 3px rgba(89,111,163,0.28);
  background: rgba(255,255,255,0.10);
}
.newsletter-btn{
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, #596fa3, #a526d0);
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  cursor: not-allowed;
  opacity: .55;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
.newsletter-note{
  display:block;
  margin-top: 10px;
  color: rgba(239,233,255,0.65);
}
@media (max-width: 520px){
  .newsletter-row{
    flex-direction: column;
  }
  .newsletter-btn{
    width: 100%;
  }
}
.glass-section{
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.glass-section::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 15% 20%, rgba(89,111,163,0.35), transparent 52%),
    radial-gradient(circle at 85% 25%, rgba(165,38,208,0.30), transparent 56%),
    radial-gradient(circle at 60% 90%, rgba(106,0,74,0.25), transparent 60%);
  filter: blur(6px);
  opacity: .95;
  animation: glowDrift 10s ease-in-out infinite alternate;
  pointer-events:none;
}
.glass-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.08) 75%);
  background-size: 46px 46px;
  opacity: .22;
  mask-image: radial-gradient(circle at 50% 30%, #000 0 55%, transparent 75%);
  pointer-events:none;
}
.glass-inner{
  position: relative;
  border-radius: 26px;
  padding: 34px 22px;
  background: linear-gradient(135deg,
    rgba(33, 30, 56, 0.62) 0%,
    rgba(67, 29, 78, 0.56) 28%,
    rgba(106, 0, 74, 0.52) 70%,
    rgba(73, 11, 94, 0.56) 100%
  );
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-inner::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.10)
  );
  opacity: .55;
  mask-image: linear-gradient( to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events:none;
}
.casino-cats h2{
  color: #ffffff !important;
  font-weight: 900;
  letter-spacing: .4px;
  text-shadow: 0 10px 22px rgba(0,0,0,0.35);
  margin-bottom: 14px;
}
.casino-cats p{
  color: rgba(239,233,255,0.86);
  line-height: 1.75;
  margin-bottom: 14px;
}
.box-one{
  position: relative;
  border-radius: 20px;
  padding: 22px 18px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.box-one::before{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(165,38,208,0.35), transparent 60%);
  filter: blur(2px);
  transform: rotate(18deg);
  animation: blobFloat 7s ease-in-out infinite;
  pointer-events:none;
}
.box-one::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,0.12) 48%,
    transparent 62%
  );
  transform: translateX(-120%) skewX(-18deg);
  opacity: .55;
  animation: sheen 4.8s ease-in-out infinite;
  pointer-events:none;
}
.box-one:hover{
  transform: translateY(-6px);
  border-color: rgba(165,38,208,0.30);
  box-shadow:
    0 22px 58px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.box-one h3{
  color: #ffffff !important;
  font-weight: 850;
  margin: 6px 0 10px;
  text-shadow: 0 10px 20px rgba(0,0,0,0.35);
  letter-spacing: .3px;
}
.box-one p{
  margin-bottom: 12px;
  color: rgba(239,233,255,0.86);
}
.box-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(89,111,163,0.95), rgba(165,38,208,0.95));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  margin-bottom: 10px;
  position: relative;
}
.box-icon::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(89,111,163,0.22), transparent 60%);
  animation: iconPulse 2.8s ease-in-out infinite;
  z-index:-1;
}
.box-icon i{
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 16px rgba(0,0,0,0.35);
}
@keyframes glowDrift{
  0%{ transform: translate3d(-10px,-8px,0) scale(1); }
  100%{ transform: translate3d(14px,10px,0) scale(1.03); }
}
@keyframes blobFloat{
  0%,100%{ transform: translate3d(0,0,0) rotate(18deg); opacity:.95; }
  50%{ transform: translate3d(-16px,10px,0) rotate(26deg); opacity:.75; }
}
@keyframes sheen{
  0%{ transform: translateX(-140%) skewX(-18deg); }
  45%{ transform: translateX(140%) skewX(-18deg); }
  100%{ transform: translateX(140%) skewX(-18deg); }
}
@keyframes iconPulse{
  0%,100%{ opacity:.55; transform: scale(1); }
  50%{ opacity:.85; transform: scale(1.04); }
}
@media (max-width: 991.98px){
  .glass-inner{ padding: 28px 16px; }
}
.casino-cats .row > [class*="col-"]{
  display: flex;
}
.casino-cats .box-one{
  height: 100%;
  width: 100%;
}
  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/images/casino-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #ffffff!important; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  