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

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

body {
  font-family: "Inter", sans-serif;
  background-color: #fefce8;
  color: #475569;
  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(254, 252, 232, 0.97), rgba(254, 252, 232, 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='%23A78BFA' 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: #a78bfa;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #a78bfa;
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

a:hover::after {
  transform: scaleX(1);
}

a:hover {
  color: #1e3a8a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1e3a8a;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -1px;
  position: relative;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #a7f3d0);
  border-radius: 2px;
}

h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #1e3a8a;
  letter-spacing: -0.5px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #a7f3d0);
  border-radius: 2px;
}

h3 {
  font-size: 36px;
  color: #a78bfa;
  letter-spacing: -0.5px;
}

p {
  margin: 0 0 20px 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.7;
  color: #475569;
}

img {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  vertical-align: middle;
  transition: all 0.3s ease;
  filter: brightness(1.02);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.05);
}

img:hover {
  border-color: #a78bfa;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05), 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* 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: #a78bfa;
  color: #fefce8;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: auto;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a.button::before,
.button::before,
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

a.button:hover,
.button:hover,
button:hover {
  background: #1e3a8a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

a.button:hover::before,
.button:hover::before,
button:hover::before {
  left: 100%;
}

a.button:active,
.button:active,
button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(30, 58, 138, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

a.button.go-btn,
.button.go-btn,
button.go-btn {
  background: #a7f3d0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #1e3a8a;
  font-weight: 700;
}

a.button.go-btn:hover,
.button.go-btn:hover,
button.go-btn:hover {
  background: #a78bfa;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Form Elements */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 6px;
  padding: 14px 16px;
  color: #475569;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(167, 139, 250, 0.1);
}

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

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

ul > li::marker {
  color: #a78bfa;
}

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

/* Header */
.aus_header {
  background: rgba(254, 252, 232, 0.95);
  padding: 16px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(167, 139, 250, 0.2);
  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='%23A78BFA' 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: #1e3a8a;
  font-size: 28px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.aus_header .logo img {
  height: 40px;
  width: auto;
  margin-right: 12px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.aus_header .menu {
  display: flex;
}

.aus_header .menu a {
  color: #475569;
  margin-left: 30px;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2px;
}

.aus_header .menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: #a78bfa;
  border-radius: 1px;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.aus_header .menu a:hover {
  color: #1e3a8a;
}

.aus_header .menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

.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='%23A7F3D0' 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;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.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='%23A7F3D0' 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: 18px;
  color: #475569;
  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;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

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

/* Sections */
.aus_section {
  position: relative;
  max-width: 1070px;
  margin: 0 auto 80px auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

.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='%23A78BFA' 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: 3px;
  background: linear-gradient(90deg, #a78bfa, #a7f3d0);
  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: #ffffff;
  padding: 30px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.4s ease-out forwards;
}

.aus_casino_list > .casino-item:nth-child(2) {
  animation-delay: 0.1s;
}

.aus_casino_list > .casino-item:nth-child(3) {
  animation-delay: 0.2s;
}

.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='%23A78BFA' 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 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-color: rgba(167, 139, 250, 0.4);
}

.aus_casino_list > .casino-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #a7f3d0);
  opacity: 1;
}

.aus_casino_list > .casino-item > .logo-box {
  width: 180px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fefce8;
  overflow: hidden;
  margin-right: 30px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.aus_casino_list > .casino-item:hover > .logo-box {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: scale(1.03);
}

.aus_casino_list > .casino-item > .logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.05);
  box-shadow: none;
}

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

.aus_casino_list > .casino-item > .info {
  flex: 1;
  padding: 0 30px;
  border-left: 1px solid rgba(167, 139, 250, 0.2);
  border-right: 1px solid rgba(167, 139, 250, 0.2);
  position: relative;
  z-index: 1;
}

.aus_casino_list > .casino-item:hover > .info {
  border-left-color: rgba(167, 139, 250, 0.4);
  border-right-color: rgba(167, 139, 250, 0.4);
}

.aus_casino_list > .casino-item > .info > .bonus-label {
  font-size: 14px;
  color: #475569;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.aus_casino_list > .casino-item > .info > .bonus {
  font-size: 36px;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.aus_casino_list > .casino-item > .info > .fspins {
  font-size: 16px;
  color: #a78bfa;
  font-family: "Inter", sans-serif;
}

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

.aus_rating {
  display: flex;
  align-items: center;
  background: #fefce8;
  padding: 12px 16px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.aus_casino_list > .casino-item:hover .aus_rating {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.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(10deg) 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(167, 139, 250, 0.4));
}

.aus_rating > .text {
  font-weight: 600;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

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

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

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

.aus_faq_list > .faq-item {
  margin-bottom: 20px;
  background: #fefce8;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.6s ease-out forwards;
}

.aus_faq_list > .faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.aus_faq_list > .faq-item:nth-child(3) {
  animation-delay: 0.2s;
}

.aus_faq_list > .faq-item:nth-child(4) {
  animation-delay: 0.3s;
}

.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='%23A78BFA' 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: rgba(167, 139, 250, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.aus_faq_list > .faq-item > .label {
  padding: 16px 50px 16px 20px;
  font-weight: 600;
  color: #1e3a8a;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  z-index: 1;
  font-size: 16px;
}

.aus_faq_list > .faq-item > .label:hover {
  color: #a78bfa;
  background: rgba(254, 252, 232, 0.8);
}

.aus_faq_list > .faq-item > .label .icon.open-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #a7f3d0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.aus_faq_list > .faq-item.show > .label .icon.open-btn {
  transform: translateY(-50%) rotate(45deg);
  color: #a78bfa;
}

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

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

/* Footer */
.aus_footer {
  background: #fefce8;
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  position: relative;
  color: #475569;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.8s ease-out forwards;
}

.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='%23A78BFA' 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: #1e3a8a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

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

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

.aus_footer > .responsible > .label {
  font-size: 20px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

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

.aus_logos_list > .logo-item {
  display: block;
  width: 80px;
  height: 80px;
  /* background: #ffffff; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.aus_logos_list > .logo-item:hover {
  transform: translateY(-5px) rotate(3deg);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.aus_logos_list > .logo-item img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.05);
  box-shadow: none;
}

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



.copyright {
  margin-top: 40px;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

/* 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;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtlePulse {
  0% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(167, 139, 250, 0.15);
  }
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
  }
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes subtleGlow {
  0% {
    text-shadow: 0 0 3px rgba(167, 139, 250, 0.2);
  }
  50% {
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
  }
  100% {
    text-shadow: 0 0 3px rgba(167, 139, 250, 0.2);
  }
}

.subtle-pulse {
  animation: subtlePulse 3s infinite;
}

.subtle-float {
  animation: subtleFloat 6s ease-in-out infinite;
}

.subtle-glow {
  animation: subtleGlow 3s infinite;
  color: #a78bfa;
}

/* 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: 18px;
}

/* 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: #fefce8;
  border-left: 1px solid rgba(167, 139, 250, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #a78bfa, #a7f3d0);
  border-radius: 4px;
  border: 1px solid #fefce8;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #a7f3d0, #a78bfa);
}

/* Elegant Animations and Effects */

/* Subtle Glow Effect */
.subtle-glow {
  text-shadow: 0 0 3px rgba(167, 139, 250, 0.3), 0 0 6px rgba(167, 139, 250, 0.2), 0 0 9px rgba(167, 139, 250, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #1e3a8a, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Subtle Hover */
@keyframes subtleHover {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  100% {
    transform: translateY(-5px) scale(1.01);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(167, 139, 250, 0.15);
  }
}

.subtle-hover {
  transition: all 0.3s ease;
}

.subtle-hover:hover {
  animation: subtleHover 0.3s forwards;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .aus_section {
    padding: 30px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .aus_casino_list > .casino-item {
    flex-wrap: wrap;
    padding: 25px;
  }

  .aus_casino_list > .casino-item > .logo-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .aus_casino_list > .casino-item > .info {
    width: 100%;
    border-left: none;
    border-right: none;
    padding: 25px 0;
    margin-bottom: 25px;
    text-align: center;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
  }

  .aus_casino_list > .casino-item > .rating {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 25px 0;
  }

  .aus_casino_list > .casino-item > .buttons {
    width: 100%;
  }
}
