/* Template 7 - Green Nature Theme */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --secondary: #65a30d;
  --secondary-dark: #4d7c0f;
  --accent: #eab308;
  --success: #16a34a;
  --dark: #1e293b;
  --darker: #0f172a;
  --light: #f8fafc;
  --lighter: #ffffff;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --dark-gray: #334155;
  --text-primary: #1e293b;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border-color: #cbd5e1;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #65a30d 100%);
  --gradient-secondary: linear-gradient(135deg, #65a30d 0%, #eab308 100%);
  --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

* {
  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(--light);
  line-height: 1.6;
  min-height: 100vh;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10" fill="none" stroke="%2316a34a" stroke-width="0.5" opacity="0.1"/></svg>'),
    radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(101, 163, 13, 0.05) 0%, transparent 50%);
  background-size: 300px 300px, 100% 100%, 100% 100%;
}

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 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Layout with Sidebar */
.main-layout {
  display: flex;
  gap: 40px;
}

.main-content {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

/* Featured Casinos Sidebar */
.featured-casinos {
  background: var(--lighter);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.featured-header {
  background: var(--gradient-primary);
  color: var(--lighter);
  padding: 20px;
  text-align: center;
}

.featured-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.featured-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

.featured-list {
  padding: 20px;
}

.featured-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.featured-item-logo {
  width: 80px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.featured-item-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-item-content {
  flex: 1;
}

.featured-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.featured-item-bonus {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.featured-action {
  padding: 0 20px 20px;
}

.featured-button {
  display: block;
  background: var(--gradient-primary);
  color: var(--lighter);
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.featured-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

/* Newsletter */
.newsletter {
  background: var(--lighter);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 25px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.newsletter-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.newsletter-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 0.95rem;
}

.newsletter-button {
  background: var(--gradient-primary);
  color: var(--lighter);
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  font-size: 0.95rem;
}

.newsletter-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

/* Header */
.aus_header {
  background: var(--lighter);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--primary);
}

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

.aus_header .logo {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aus_header .logo img {
  max-height: 40px;
  width: auto;
}

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

.aus_header .quick-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.aus_header .quick-nav a:hover,
.aus_header .quick-nav a.active {
  color: var(--lighter);
  background: var(--primary);
}

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

/* Sections */
.aus_section {
  padding: 60px 0;
  position: relative;
}

.aus_section.head {
  background: var(--gradient-primary);
  color: var(--lighter);
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 100px;
}

.aus_section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/></svg>');
  background-size: 300px 300px;
}

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

.aus_section.head h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.aus_section.head p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}

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

.aus_section header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
}

.aus_section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.aus_section header p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 20px auto 0;
}

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

.casino-item {
  background: var(--lighter);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  width: calc(33.333% - 20px);
  min-width: 300px;
  position: relative;
  border: 1px solid var(--border-color);
}

.casino-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(22, 163, 74, 0.2);
  border-color: var(--primary);
}

.casino-header {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(101, 163, 13, 0.05) 100%);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

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

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

.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(70deg) saturate(1.2);
}

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

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

.casino-bonus {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.free-spins {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.detail-value {
  color: var(--text-secondary);
  font-weight: 600;
}

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

.casino-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--lighter);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.casino-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

/* Text Block */
.text-content {
  background: var(--lighter);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.text-content h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 15px;
}

.text-content h3:first-child {
  margin-top: 0;
}

.text-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.text-content ul,
.text-content ol {
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 20px;
}

.text-content li {
  margin-bottom: 8px;
}

.text-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
  transition: all 0.2s ease;
}

.text-content a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

/* FAQ Section */
.aus_faq_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--lighter);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.faq-item:hover {
  border-color: var(--primary);
}

.accordion-question {
  padding: 20px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-question:hover {
  color: var(--primary);
}

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

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: all 0.3s ease;
}

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

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

.faq-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

.accordion-answer p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.aus_footer {
  background: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.aus_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></svg>');
  background-size: 300px 300px;
  opacity: 0.1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-title {
  color: var(--lighter);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: var(--lighter);
  transform: translateX(5px);
}

.footer-nav a:hover::before {
  background: var(--accent);
}

.aus_logos_list {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.aus_logos_list .logo-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.aus_logos_list .logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.aus_logos_list .icon {
  width: 100px;
  height: 30px;
  fill: var(--light-gray);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}

.copyright {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Leaf Decorations */
.leaf {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 C70,10 90,30 90,50 C90,70 70,90 50,90 C30,90 10,70 10,50 C10,30 30,10 50,10 Z" fill="none" stroke="%2316a34a" stroke-width="1" opacity="0.2"/><path d="M50,20 C65,20 80,35 80,50 C80,65 65,80 50,80 C35,80 20,65 20,50 C20,35 35,20 50,20 Z" fill="none" stroke="%2316a34a" stroke-width="1" opacity="0.2"/><path d="M30,30 C50,10 70,30 90,10" fill="none" stroke="%2316a34a" stroke-width="1" opacity="0.2"/></svg>');
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(45deg);
}

.leaf-2 {
  top: 60%;
  right: 5%;
  transform: rotate(-30deg) scale(1.5);
}

.leaf-3 {
  bottom: 10%;
  left: 15%;
  transform: rotate(15deg) scale(0.8);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px\
