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

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

body {
  font-family: "Lora", serif;
  background-color: #faf9f6;
  color: #5e503f;
  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(250, 249, 246, 0.97), rgba(232, 225, 217, 0.95));
  background-attachment: fixed;
  pointer-events: none;
  z-index: -1;
}

a {
  color: #5e503f;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

a:hover {
  color: #c6ac8f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #5e503f;
  line-height: 1.2;
  letter-spacing: 0;
}

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

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #c6ac8f;
  border-radius: 8px;
}

h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #5e503f;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #c6ac8f;
  border-radius: 8px;
}

h3 {
  font-size: 26px;
  color: #5e503f;
}

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

img {
  max-width: 100%;
  height: auto;
  border: 1px dashed #a49382;
  border-radius: 8px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  filter: brightness(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

img:hover {
  border-color: #c6ac8f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* 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: #c6ac8f;
  color: #faf9f6;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border: 1px dashed #a49382;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: auto;
  letter-spacing: 0;
  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.2), transparent);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  opacity: 0;
  transition-delay: 0.3s;
}

a.button:hover,
.button:hover,
button:hover {
  background: #5e503f;
  color: #faf9f6;
  border-color: #a49382;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

a.button:active,
.button:active,
button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

a.button.go-btn,
.button.go-btn,
button.go-btn {
  background: #5e503f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #faf9f6;
  font-weight: 600;
}

a.button.go-btn:hover,
.button.go-btn:hover,
button.go-btn:hover {
  background: #c6ac8f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Form Elements */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: #e8e1d9;
  border: 1px dashed #a49382;
  border-radius: 8px;
  padding: 14px 18px;
  color: #5e503f;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  font-family: "Lora", serif;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #c6ac8f;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03), 0 0 8px rgba(198, 172, 143, 0.2);
}

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

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

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

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

/* Header */
.aus_header {
  background: rgba(250, 249, 246, 0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px dashed #a49382;
  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='%23C6AC8F' fill-opacity='0.05' 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: #5e503f;
  font-size: 26px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
}

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

.aus_header .menu {
  display: flex;
}

.aus_header .menu a {
  color: #5e503f;
  margin-left: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 15px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
}

.aus_header .menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c6ac8f;
  border-radius: 8px;
  transition: width 0.3s ease-in-out;
}

.aus_header .menu a:hover {
  color: #c6ac8f;
}

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

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

.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='%23C6AC8F' 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: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fade-in 0.8s ease-in-out;
}

.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='%23C6AC8F' 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: #5e503f;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  animation: slide-fade 0.6s ease-in-out;
}

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

/* Sections */
.aus_section {
  position: relative;
  max-width: 1070px;
  margin: 0 auto 60px auto;
  padding: 40px;
  background: #e8e1d9;
  border: 1px dashed #a49382;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1;
  animation: fade-in 0.5s ease-in-out;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: 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='%23C6AC8F' fill-opacity='0.05' 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: linear-gradient(90deg, #c6ac8f, #a49382);
  opacity: 0.9;
}

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

/* Casino List - NEW COLUMN LAYOUT */
.aus_casino_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  /* margin-top: 30px; */
}

.aus_casino_list > .casino-item {
  display: flex;
  flex-direction: column;
  background: #faf9f6;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px dashed #a49382;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  animation: fade-in 0.5s ease-in-out;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.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='%23C6AC8F' fill-opacity='0.05' 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 25px rgba(0, 0, 0, 0.08);
  border-color: #c6ac8f;
}

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

.aus_casino_list > .casino-item > .logo-box {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8e1d9;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px dashed #a49382;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.aus_casino_list > .casino-item:hover > .logo-box {
  border-color: #c6ac8f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.aus_casino_list > .casino-item > .logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border: none;
  transition: transform 0.3s ease-in-out, 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;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.aus_casino_list > .casino-item > .info > .bonus {
  font-size: 28px;
  color: #c6ac8f;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

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

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

.aus_rating {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e1d9;
  padding: 12px 18px;
  border: 1px dashed #a49382;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.aus_casino_list > .casino-item:hover .aus_rating {
  border-color: #c6ac8f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.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(198, 172, 143, 0.4));
}

.aus_rating > .text {
  font-weight: 600;
  color: #5e503f;
  font-family: "Playfair Display", serif;
}

.aus_casino_list > .casino-item > .buttons {
  width: 85%;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.aus_casino_list > .casino-item > .buttons .button {
  padding: 10px 20px;
  font-size: 15px;
  width: 100%;
}

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

.aus_faq_list > .faq-item {
  margin-bottom: 20px;
  background: #faf9f6;
  overflow: hidden;
  border: 1px dashed #a49382;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.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='%23C6AC8F' fill-opacity='0.05' 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: #c6ac8f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.aus_faq_list > .faq-item > .label {
  padding: 18px 50px 18px 25px;
  font-weight: 600;
  color: #5e503f;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: "Playfair Display", serif;
  z-index: 1;
}

.aus_faq_list > .faq-item > .label:hover {
  color: #c6ac8f;
  background: rgba(250, 249, 246, 0.5);
}

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

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

.aus_faq_list > .faq-item > .value {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  padding: 0 25px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #5e503f;
}

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

/* Footer */
.aus_footer {
  background: #faf9f6;
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px dashed #a49382;
  position: relative;
  color: #5e503f;
}

.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='%23C6AC8F' fill-opacity='0.05' 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: #5e503f;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
}

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

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

.aus_footer > .responsible > .label {
  font-size: 18px;
  font-weight: 600;
  color: #c6ac8f;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
}

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

.aus_logos_list > .logo-item {
  display: block;
  width: 80px;
  height: 80px;
  background: #e8e1d9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1px dashed #a49382;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.aus_logos_list > .logo-item:hover {
  transform: translateY(-5px);
  border-color: #c6ac8f;
  box-shadow: 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-in-out, filter 0.3s ease;
  filter: brightness(1.1);
  box-shadow: none;
}

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

.copyright {
  margin-top: 40px;
  color: #5e503f;
  font-size: 14px;
  font-weight: 400;
  font-family: "Lora", 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 fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }
  50% {
    box-shadow: 0 8px 24px rgba(198, 172, 143, 0.15);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }
}

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

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

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

.fade-in {
  animation: fade-in 0.8s ease-in-out;
}

.slide-up {
  animation: slide-fade 0.6s ease-in-out;
}

.scale-in {
  animation: fade-in 0.5s ease-in-out;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

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

/* 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: #faf9f6;
  border-left: 1px dashed #a49382;
}

::-webkit-scrollbar-thumb {
  background: #c6ac8f;
  border-radius: 8px;
  border: 1px solid #faf9f6;
}

::-webkit-scrollbar-thumb:hover {
  background: #a49382;
}

/* Gradient Accent Lines */
.gradient-accent {
  position: relative;
  padding-bottom: 15px;
}

.gradient-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #c6ac8f, #a49382);
  border-radius: 8px;
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.card-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(198, 172, 143, 0.1), rgba(164, 147, 130, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition-delay: 0.3s;
  z-index: 0;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-hover:hover::before {
  opacity: 1;
}

/* First h2 styling */
.first-h2 {
  color: #c6ac8f;
  font-size: 38px;
  margin-bottom: 30px;
}

.first-h2::after {
  background: linear-gradient(90deg, #c6ac8f, #a49382);
  width: 80px;
  height: 2px;
}
