/* Template 13 - Dark Gaming Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundShift 20s ease-in-out infinite;
}

.f-right {
  float: right;
  text-align: right;
  margin: 0px 0px 15px 15px;
}

.f-left {
  float: left;
  text-align: left;
  margin: 0px 15px 15px 0px;
}

.f-center {
  float: none;
  text-align: center;
  margin: 0px auto 15px auto;
}


@keyframes backgroundShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-20px) translateY(-10px);
  }
  50% {
    transform: translateX(20px) translateY(10px);
  }
  75% {
    transform: translateX(-10px) translateY(20px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.aus_header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #7c77c6;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(124, 119, 198, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #7c77c6;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(124, 119, 198, 0.5);
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px rgba(124, 119, 198, 0.5));
}

.quick-nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.quick-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(124, 119, 198, 0.3);
}

.quick-nav-list a:hover {
  color: #7c77c6;
  background: rgba(124, 119, 198, 0.2);
  border-color: #7c77c6;
  box-shadow: 0 0 15px rgba(124, 119, 198, 0.4);
  transform: translateY(-2px);
}

/* Main Content */
.aus_main {
  min-height: calc(100vh - 200px);
}

.aus_section {
  padding: 60px 0;
}

.aus_section.head {
  background: linear-gradient(135deg, rgba(124, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.aus_section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(124,119,198,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.aus_section.head h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(124, 119, 198, 0.5);
  position: relative;
  z-index: 1;
}

.aus_section header h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  text-shadow: 0 0 15px rgba(124, 119, 198, 0.5);
}

.aus_section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #7c77c6, #ff77c6);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(124, 119, 198, 0.5);
}

/* Casino List */
.aus_casino_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.casino-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(124, 119, 198, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.casino-item:hover::before {
  opacity: 1;
}

.casino-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #7c77c6;
  box-shadow: 0 20px 40px rgba(124, 119, 198, 0.3);
}

.casino-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #7c77c6, #ff77c6);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(124, 119, 198, 0.4);
}

.casino-badge.recommended {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.casino-badge.new {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
}

.casino-header {
  display: flex;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid rgba(124, 119, 198, 0.2);
  position: relative;
  z-index: 1;
}

.casino-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
  border: 2px solid rgba(124, 119, 198, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.casino-logo img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(1.1);
}

.casino-title h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.aus_rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  position: relative;
  width: 90px;
  height: 20px;
  background: url("/assets/images/stars-empty.svg") repeat-x;
}

.stars .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url("/assets/images/stars-active.svg") repeat-x;
}

.aus_rating .text {
  font-weight: bold;
  color: #ffaa00;
  font-size: 14px;
  text-shadow: 0 0 5px rgba(255, 170, 0, 0.5);
}

.casino-body {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(124, 119, 198, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(124, 119, 198, 0.3);
}

.bonus-amount {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #7c77c6;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(124, 119, 198, 0.5);
}

.free-spins {
  display: block;
  font-size: 16px;
  color: #00ff88;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: rgba(124, 119, 198, 0.2);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(124, 119, 198, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(124, 119, 198, 0.4);
  box-shadow: 0 0 10px rgba(124, 119, 198, 0.3);
}

.casino-details {
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(124, 119, 198, 0.2);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  display: flex;
  align-items: center;
  color: #cccccc;
  font-size: 14px;
}

.detail-label svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #7c77c6;
  filter: drop-shadow(0 0 3px rgba(124, 119, 198, 0.5));
}

.detail-value {
  font-weight: 600;
  color: #ffffff;
}

.casino-action {
  text-align: center;
}

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, #7c77c6 0%, #ff77c6 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(124, 119, 198, 0.4);
  position: relative;
  overflow: hidden;
}

.casino-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: left 0.5s ease;
}

.casino-button:hover::before {
  left: 100%;
}

.casino-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 119, 198, 0.6);
}

/* Text Block */
.tx-block .text-content {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(124, 119, 198, 0.2);
}

.tx-block .text-content p {
  margin-bottom: 20px;
}

.tx-block .text-content h3 {
  font-size: 24px;
  color: #ffffff;
  margin: 30px 0 15px;
  text-shadow: 0 0 10px rgba(124, 119, 198, 0.5);
}

/* FAQ */
.aus_faq_list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(124, 119, 198, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #7c77c6;
  box-shadow: 0 5px 20px rgba(124, 119, 198, 0.2);
}

.accordion-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-question:hover {
  background: rgba(124, 119, 198, 0.1);
  color: #7c77c6;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #7c77c6;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(124, 119, 198, 0.5);
}

.accordion-icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.accordion-icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .accordion-answer {
  max-height: 200px;
}

.accordion-answer p {
  padding: 0 25px 25px;
  color: #cccccc;
  line-height: 1.6;
  font-size: 16px;
}

/* Footer */
.aus_footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 2px solid #7c77c6;
}

.footer-content {
  text-align: center;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #7c77c6;
  text-shadow: 0 0 10px rgba(124, 119, 198, 0.5);
}

.footer-content p {
  font-size: 16px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

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

.logo-item {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.logo-item svg {
  width: 40px;
  height: 40px;
  fill: #cccccc;
  filter: drop-shadow(0 0 5px rgba(124, 119, 198, 0.3));
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(124, 119, 198, 0.3);
}

.copyright {
  color: #999999;
  font-size: 14px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .quick-nav-list {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .aus_section.head h1 {
    font-size: 32px;
  }

  .aus_casino_list {
    grid-template-columns: 1fr;
  }

  .casino-header {
    flex-direction: column;
    text-align: center;
  }

  .casino-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .aus_logos_list {
    gap: 20px;
  }
}
