/* Template 5 - Retro 80s Synthwave Theme */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #ff0080;
  --primary-dark: #cc0066;
  --primary-light: #ff33a0;
  --secondary: #00ffff;
  --accent: #ffff00;
  --success: #00ff00;
  --danger: #ff4444;
  --dark: #0a0a0a;
  --darker: #000000;
  --light: #1a0d1a;
  --lighter: #2d1a2d;
  --gray: #666666;
  --light-gray: #333333;
  --border-color: #ff0080;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --shadow: 0 0 20px rgba(255, 0, 128, 0.5);
  --shadow-lg: 0 0 40px rgba(255, 0, 128, 0.7);
  --gradient-primary: linear-gradient(135deg, #ff0080 0%, #00ffff 50%, #ffff00 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a0d1a 100%);
  --font-family: "Exo 2", sans-serif;
  --font-display: "Orbitron", monospace;
  --neon-glow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  background-image: linear-gradient(45deg, transparent 48%, rgba(255, 0, 128, 0.03) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.03) 50%, transparent 52%),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
  background-size: 20px 20px, 20px 20px, 100% 100%;
  animation: synthwaveBackground 10s ease-in-out infinite;
}

@keyframes synthwaveBackground {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 20px 20px, -20px -20px, 0 0;
  }
}

img {
  max-width: 360px;
  height: auto;
  border-radius: 5px;
}

.f-left {
  float: left;
  margin: 0 20px 20px 0;
}
.f-right {
  float: right;
  margin: 0 0 20px 20px;
}
.f-center {
  display: block;
  margin: 0 auto 20px;
}

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

/* Neon effects */
.neon-text {
  text-shadow: var(--neon-glow);
  animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.neon-border {
  border: 2px solid var(--primary);
  box-shadow: 0 0 5px var(--primary), inset 0 0 5px var(--primary);
  animation: neonBorderPulse 3s ease-in-out infinite;
}

@keyframes neonBorderPulse {
  0%,
  100% {
    border-color: var(--primary);
    box-shadow: 0 0 5px var(--primary), inset 0 0 5px var(--primary);
  }
  33% {
    border-color: var(--secondary);
    box-shadow: 0 0 5px var(--secondary), inset 0 0 5px var(--secondary);
  }
  66% {
    border-color: var(--accent);
    box-shadow: 0 0 5px var(--accent), inset 0 0 5px var(--accent);
  }
}

/* Header */
.aus_header {
  background: var(--gradient-dark);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

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

.aus_header .logo {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-decoration: none;
  text-shadow: var(--neon-glow);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.aus_header .logo:hover {
  color: var(--secondary);
  transform: scale(1.1);
  animation: neonFlicker 0.5s ease-in-out;
}

.aus_header .quick-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}







.aus_header .quick-nav a:hover {
  color: var(--dark);
  border-color: var(--primary);
  text-shadow: none;
}

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

.aus_section {
  padding: 80px 0;
  position: relative;
}

.aus_section.head {
  background: var(--gradient-dark);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.aus_section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 128, 0.1) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
  animation: synthwaveLines 8s linear infinite;
}

@keyframes synthwaveLines {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.aus_section.head .container {
  position: relative;
  z-index: 1;
}

.aus_section.head h1 {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--neon-glow);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: neonFlicker 3s ease-in-out infinite;
}

.aus_section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Section Headers */
.aus_section header {
  text-align: center;
  margin-bottom: 60px;
}

.aus_section header h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.aus_section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 10px var(--primary);
}

/* Casino List */
.aus_casino_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.casino-item {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  width: calc(33.333% - 20px);
  min-width: 300px;
  border: 2px solid var(--primary);
  position: relative;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-item:hover::before {
  opacity: 1;
  animation: neonBorderPulse 1s ease-in-out infinite;
}

.casino-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.casino-header {
  padding: 30px 25px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  background: rgba(255, 0, 128, 0.1);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--secondary);
  background: var(--darker);
  box-shadow: 0 0 10px var(--secondary), inset 0 0 10px rgba(0, 255, 255, 0.2);
  position: relative;
}

.casino-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.casino-item:hover .casino-logo::after {
  left: 100%;
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.casino-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.aus_rating .stars {
  width: 84px;
  height: 15px;
  background: url("../../../images/stars-empty.svg") left center / auto 100%;
  position: relative;
  filter: hue-rotate(300deg) saturate(2);
}

.aus_rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url("../../../images/stars-active.svg") left center / auto 100%;
  filter: hue-rotate(300deg) saturate(2) drop-shadow(0 0 5px var(--primary));
}

.aus_rating .text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.casino-body {
  padding: 30px 25px;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 25px;
}

/* Footer */
.aus_footer {
  background: var(--gradient-dark);
  color: var(--text-primary);
  padding: 70px 0 40px;
  margin-top: auto;
  border-top: 3px solid var(--primary);
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
  position: relative;
}

.aus_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 0, 128, 0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.05) 50%, transparent 52%);
  background-size: 30px 30px, 30px 30px;
  animation: synthwaveBackground 15s linear infinite;
}

.footer-title {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 10px var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-display);
}

.aus_footer .footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.aus_footer .icon {
  display: inline-block;
  width: 145px;
  height: 40px;
  padding: 8px 12px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aus_footer .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.aus_footer .icon:hover::before {
  left: 0;
}

.aus_footer .icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary);
  color: var(--dark);
}

.aus_footer .icon.plus-18 {
  color: #ff4444;
}
.aus_footer .icon.ghelp {
  color: #00ff00;
}
.aus_footer .icon.acma {
  color: #00ffff;
}
.aus_footer .icon use {
  fill: currentColor;
}

/* Popup */
.popup-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-dark);
  color: var(--text-primary);
  padding: 40px;
  border: 3px solid var(--primary);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  text-align: center;
  display: none;
  position: relative;
}

.popup-banner::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  z-index: -1;
  border-radius: 13px;
  animation: neonBorderPulse 2s ease-in-out infinite;
}

.popup-banner.show {
  display: block;
  animation: synthwaveSlide 0.6s ease-out;
}

@keyframes synthwaveSlide {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(5px);
}

.popup-overlay.show {
  display: block;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
}

.popup-banner h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.popup-banner p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.popup-banner .popup-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-display);
}

.popup-banner .popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--primary);
}

/* FAQ Accordion */
.accordion-question {
  background: var(--light);
  border: 2px solid var(--primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  padding: 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion-question:hover {
  background: rgba(255, 0, 128, 0.1);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.accordion-icon {
  float: right;
  transition: transform 0.3s ease;
  color: var(--secondary);
  font-size: 1.3rem;
}

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

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  color: var(--text-secondary);
  background: var(--lighter);
  border: 2px solid var(--secondary);
  border-top: none;
  border-radius: 0 0 5px 5px;
  margin-bottom: 15px;
}

.faq-item.open .accordion-answer {
  max-height: 500px;
  padding: 20px;
}

.aus_header .quick-nav {
  display: flex;
  align-items: center;
}

.aus_header .quick-nav a {
  display: inline-block;
  padding: 12px 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #000;
  background-size: 200%;
  background-position: left center;
  transition: background-position 0.3s ease, color 0.3s ease;
}

.aus_header .quick-nav a:hover {
  background-image: linear-gradient(135deg, rgb(0, 255, 255), rgb(255, 0, 255), yellow);
  background-position: right center;
  color: #fff;
}