@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap");

/* Base Styles */
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Orbitron", monospace;
  background-color: #2d3142;
  color: #bfc0c0;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.97), rgba(27, 27, 30, 0.95)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F9FF' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  pointer-events: none;
  z-index: -1;
}

a {
  color: #00f9ff;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 249, 255, 0.3);
}

a:hover {
  color: #7ae582;
  text-shadow: 0 0 10px rgba(122, 229, 130, 0.8), 0 0 20px rgba(122, 229, 130, 0.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #00f9ff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

h1 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  animation: textFlicker 5s infinite alternate;
}

@keyframes textFlicker {
  0%,
  19.999%,
  22%,
  62.999%,
  64%,
  64.999%,
  70%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 249, 255, 0.5), 0 0 20px rgba(0, 249, 255, 0.3);
  }
  20%,
  21.999%,
  63%,
  63.999%,
  65%,
  69.999% {
    opacity: 0.6;
    text-shadow: none;
  }
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #00f9ff;
  box-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff;
}

h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #00f9ff;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #00f9ff;
  box-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff;
}

h3 {
  font-size: 36px;
  color: #7ae582;
  text-shadow: 0 0 10px rgba(122, 229, 130, 0.5);
}

p {
  margin: 0 0 20px 0;
  font-weight: 400;
  line-height: 1.7;
  color: #bfc0c0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  transition: all 0.3s ease;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

img:hover {
  border-color: #7ae582;
  box-shadow: 0 0 15px rgba(122, 229, 130, 0.8), 0 0 30px rgba(122, 229, 130, 0.4);
  transform: scale(1.02);
}

/* SVG Icons */
svg[class^="icon"],
svg[class*=" icon"] {
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  max-width: 100%;
  max-height: 100%;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

/* Buttons */
a.button,
.button,
button {
  display: inline-block;
  background: #1b1b1e;
  color: #00f9ff;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border: 1px solid #00f9ff;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.5), inset 0 0 5px rgba(0, 249, 255, 0.2);
  width: auto;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

a.button:hover,
.button:hover,
button:hover {
  background: #00f9ff;
  color: #1b1b1e;
  box-shadow: 0 0 20px rgba(0, 249, 255, 0.8), 0 0 40px rgba(0, 249, 255, 0.4), inset 0 0 10px rgba(0, 249, 255, 0.4);
  transform: translateY(-2px);
}

a.button:active,
.button:active,
button:active {
  transform: translateY(1px);
  box-shadow: 0 0 5px rgba(0, 249, 255, 0.5), inset 0 0 5px rgba(0, 249, 255, 0.2);
}

a.button.go-btn,
.button.go-btn,
button.go-btn {
  background: #1b1b1e;
  border-color: #7ae582;
  color: #7ae582;
  box-shadow: 0 0 10px rgba(122, 229, 130, 0.5), inset 0 0 5px rgba(122, 229, 130, 0.2);
  font-weight: 700;
}

a.button.go-btn:hover,
.button.go-btn:hover,
button.go-btn:hover {
  background: #7ae582;
  color: #1b1b1e;
  box-shadow: 0 0 20px rgba(122, 229, 130, 0.8), 0 0 40px rgba(122, 229, 130, 0.4), inset 0 0 10px
    rgba(122, 229, 130, 0.4);
}

/* Form Elements */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: #1b1b1e;
  border: 1px solid #00f9ff;
  border-radius: 0;
  padding: 16px 20px;
  color: #bfc0c0;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: "Orbitron", monospace;
  box-shadow: 0 0 5px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #7ae582;
  box-shadow: 0 0 10px rgba(122, 229, 130, 0.5), inset 0 0 10px rgba(122, 229, 130, 0.2);
}

/* Lists */
ul,
ol {
  padding-left: 20px;
  margin: 0 0 20px 0;
}

ul > li,
ol > li {
  margin-bottom: 10px;
  position: relative;
  color: #bfc0c0;
}

ul > li::marker {
  color: #00f9ff;
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.aus_header {
  background: rgba(27, 27, 30, 0.9);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 249, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aus_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%2300F9FF' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: -1;
}

.aus_header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aus_header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #00f9ff;
  font-size: 32px;
  font-weight: 700;
  font-family: "Orbitron", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.aus_header .logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
  border: none;
  box-shadow: none;
}

.aus_header .menu {
  display: flex;
}

.aus_header .menu a {
  color: #bfc0c0;
  margin-left: 30px;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  font-family: "Orbitron", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.aus_header .menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00f9ff;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #00f9ff;
}

.aus_header .menu a:hover {
  color: #00f9ff;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.8);
}

.aus_header .menu a:hover::after {
  width: 100%;
}

/* Main Content */
.aus_main {
  margin-top: 100px;
  padding: 60px 0;
  position: relative;
  background: #2d3142;
}

.aus_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300F9FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: -1;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  animation: textFlicker 5s infinite alternate;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237AE582' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: -1;
}

.hero-section p {
  font-size: 20px;
  color: #bfc0c0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  position: relative;
  padding-bottom: 20px;
}

/* Sections */
.aus_section {
  position: relative;
  max-width: 1070px;
  margin: 0 auto 80px auto;
  padding: 50px;
  background: #1b1b1e;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 20px rgba(0, 249, 255, 0.3), inset 0 0 10px rgba(0, 249, 255, 0.1);
  overflow: hidden;
  z-index: 1;
}

.aus_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F9FF' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: -1;
}

.aus_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00f9ff;
  box-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff;
  opacity: 1;
}

.aus_section > .content {
  position: relative;
  z-index: 5;
  padding: 10px;
}

/* Casino List */
.aus_casino_list {
  margin-top: 40px;
}

.aus_casino_list > .casino-item {
  margin-bottom: 40px;
  background: #1b1b1e;
  padding: 40px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 15px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
  overflow: hidden;
}

.aus_casino_list > .casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F9FF' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: 0;
}

.aus_casino_list > .casino-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 249, 255, 0.5), inset 0 0 10px rgba(0, 249, 255, 0.2);
  border-color: #7ae582;
}

.aus_casino_list > .casino-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00f9ff;
  box-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff;
  opacity: 1;
}

.aus_casino_list > .casino-item > .logo-box {
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2d3142;
  overflow: hidden;
  margin-right: 40px;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.aus_casino_list > .casino-item:hover > .logo-box {
  border-color: #7ae582;
  box-shadow: 0 0 15px rgba(122, 229, 130, 0.5), inset 0 0 10px rgba(122, 229, 130, 0.2);
  transform: scale(1.05);
}

.aus_casino_list > .casino-item > .logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.aus_casino_list > .casino-item:hover > .logo-box img {
  transform: scale(1.05);
}

.aus_casino_list > .casino-item > .info {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.aus_casino_list > .casino-item > .info > .bonus-label {
  font-size: 16px;
  color: #bfc0c0;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Orbitron", monospace;
}

.aus_casino_list > .casino-item > .info > .bonus {
  font-size: 42px;
  color: #00f9ff;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Orbitron", monospace;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.aus_casino_list > .casino-item > .info > .fspins {
  font-size: 18px;
  color: #7ae582;
  font-family: "Orbitron", monospace;
  text-shadow: 0 0 5px rgba(122, 229, 130, 0.3);
}

.aus_casino_list > .casino-item > .rating {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.aus_rating {
  display: flex;
  align-items: center;
  background: #2d3142;
  padding: 15px 20px;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
  transition: all 0.3s ease;
}

.aus_casino_list > .casino-item:hover .aus_rating {
  border-color: #7ae582;
  box-shadow: 0 0 15px rgba(122, 229, 130, 0.5), inset 0 0 10px rgba(122, 229, 130, 0.2);
}

.aus_rating > .stars {
  width: 120px;
  height: 24px;
  background: url("../../../images/stars-empty.svg") left center / auto 100%;
  position: relative;
  margin-right: 10px;
  filter: brightness(0.9) sepia(0.2) hue-rotate(180deg) saturate(1.5);
}

.aus_rating > .stars > .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url("../../../images/stars-active.svg") left center / auto 100%;
  filter: brightness(1.2) drop-shadow(0 0 3px rgba(0, 249, 255, 0.4));
}

.aus_rating > .text {
  font-weight: 600;
  color: #bfc0c0;
  font-family: "Orbitron", monospace;
}

.aus_casino_list > .casino-item > .buttons {
  width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.aus_casino_list > .casino-item > .buttons .button {
  padding: 12px 24px;
  font-size: 14px;
  width: 160px;
  margin-bottom: 10px;
}

/* FAQ Section */
.aus_section.faq-block {
  background: #1b1b1e;
}

.aus_faq_list > .faq-item {
  margin-bottom: 25px;
  background: #2d3142;
  overflow: hidden;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.aus_faq_list > .faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F9FF' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: 0;
}

.aus_faq_list > .faq-item:hover {
  border-color: #7ae582;
  box-shadow: 0 0 15px rgba(122, 229, 130, 0.5), inset 0 0 10px rgba(122, 229, 130, 0.2);
  transform: translateY(-3px);
}

.aus_faq_list > .faq-item > .label {
  padding: 20px 60px 20px 30px;
  font-weight: 600;
  color: #bfc0c0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Orbitron", monospace;
  z-index: 1;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aus_faq_list > .faq-item > .label:hover {
  color: #00f9ff;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.aus_faq_list > .faq-item > .label .icon.open-btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #00f9ff;
  transition: transform 0.3s ease, color 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 249, 255, 0.5);
}

.aus_faq_list > .faq-item.show > .label .icon.open-btn {
  transform: translateY(-50%) rotate(45deg);
  color: #7ae582;
  text-shadow: 0 0 5px rgba(122, 229, 130, 0.5);
}

.aus_faq_list > .faq-item > .value {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #bfc0c0;
}

.aus_faq_list > .faq-item.show > .value {
  max-height: 1000px;
  padding: 0 30px 30px 30px;
}

/* Footer */
.aus_footer {
  background: #1b1b1e;
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  color: #bfc0c0;
  border-top: 1px solid #00f9ff;
  box-shadow: 0 0 20px rgba(0, 249, 255, 0.3);
}

.aus_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%2300F9FF' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: -1;
}

.aus_footer > .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #00f9ff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  font-family: "Orbitron", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.aus_footer > .logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
  border: none;
  box-shadow: none;
}

.aus_footer > .responsible {
  margin-bottom: 50px;
}

.aus_footer > .responsible > .label {
  font-size: 24px;
  font-weight: 700;
  color: #7ae582;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Orbitron", monospace;
  text-shadow: 0 0 10px rgba(122, 229, 130, 0.5);
}

.aus_logos_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.aus_logos_list > .logo-item {
  display: block;
  width: 90px;
  height: 90px;
  /* background: #2d3142; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.3), inset 0 0 5px rgba(0, 249, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.aus_logos_list > .logo-item:hover {
  transform: translateY(-8px) rotate(5deg);
  border-color: #7ae582;
  box-shadow: 0 0 15px rgba(122, 229, 130, 0.5), inset 0 0 10px rgba(122, 229, 130, 0.2);
}

.aus_logos_list > .logo-item img {
  width: 60px;
  height: 60px;
  border: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: none;
}

.aus_logos_list > .logo-item:hover img {
  transform: scale(1.1);
}



.copyright {
  margin-top: 50px;
  color: #bfc0c0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Orbitron", monospace;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.f-left {
  position: relative;
  top: 5px;
  float: left;
  margin: 0 20px 20px 0;
}

.f-right {
  position: relative;
  top: 5px;
  float: right;
  margin: 0 0 20px 20px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Hide second header tag */
.second-h2 {
  display: none;
}

/* Modify page-title-block */
.aus_section.page-title-block {
  background: transparent;
  border: none;
  box-shadow: none;
}

.aus_section.page-title-block .content {
  font-size: 20px;
}

/* Popup Styles - All set to display: none as requested */
.popup {
  display: none;
}

.popup-content {
  display: none;
}

.popup-header {
  display: none;
}

.popup-close {
  display: none;
}

.popup-body {
  display: none;
}

.popup-casino-logo {
  display: none;
}

.popup-casino-info h4 {
  display: none;
}

.popup-casino-bonus {
  display: none;
}

.popup-bonus-amount {
  display: none;
}

.popup-free-spins {
  display: none;
}

.popup-casino-features {
  display: none;
}

.popup-feature-tag {
  display: none;
}

.popup-casino-button {
  display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1b1b1e;
}

::-webkit-scrollbar-thumb {
  background: #00f9ff;
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: #7ae582;
  box-shadow: 0 0 10px rgba(122, 229, 130, 0.8);
}

/* Neon Flicker Animation */
@keyframes neonFlicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff, 0 0 20px #00f9ff;
    box-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff, 0 0 20px #00f9ff;
  }
  20%,
  22%,
  24%,
  55% {
    text-shadow: none;
    box-shadow: none;
  }
}

/* Neon Pulse Animation */
@keyframes neonPulse {
  0% {
    text-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff;
    box-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff;
  }
  50% {
    text-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff, 0 0 30px #00f9ff;
    box-shadow: 0 0 10px #00f9ff, 0 0 20px #00f9ff, 0 0 30px #00f9ff;
  }
  100% {
    text-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff;
    box-shadow: 0 0 5px #00f9ff, 0 0 10px #00f9ff;
  }
}
