/* SpinEmpire Australia - Main Styles */
/* Unique prefix: aus- */

:root {
  --aus-bg: #0a0a0f;
  --aus-surface: #12121a;
  --aus-surface-2: #1a1a24;
  --aus-text: #ffffff;
  --aus-text-muted: #a0a0b0;
  --aus-primary: #c9a227;
  --aus-primary-hover: #e0b830;
  --aus-accent: #ff6b35;
  --aus-border: #2a2a3a;
  --aus-success: #4ade80;
  --aus-wrap: min(1200px, 100% - 32px);
  --aus-radius: 12px;
  --aus-radius-sm: 8px;
  --aus-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--aus-text);
  background: var(--aus-bg);
  min-height: 100vh;
}

/* Layout */
.aus-wrap {
  width: var(--aus-wrap);
  margin-inline: auto;
}

/* Typography */
.aus-h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.aus-h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

.aus-h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.aus-h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aus-lead {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--aus-text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}

.aus-intro {
  text-align: center;
  color: var(--aus-text-muted);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* Header */
.aus-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--aus-border);
}

.aus-header__bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.aus-logo img {
  display: block;
  max-width: 100px;
  width: auto;
  height: auto;
}

/* Burger */
.aus-burger {
  width: 38px;
  height: 38px;
  border: 1px solid var(--aus-border);
  border-radius: 10px;
  background: var(--aus-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.aus-burger:hover {
  border-color: var(--aus-primary);
}

.aus-burger span {
  height: 2px;
  width: 100%;
  background: var(--aus-text);
  border-radius: 2px;
  display: block;
}

/* Desktop Nav */
.aus-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 4px;
}

.aus-nav a {
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 12px;
  color: var(--aus-text-muted);
  position: relative;
  transition: color 0.2s;
}

.aus-nav a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: var(--aus-primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.aus-nav a:hover,
.aus-nav a.active {
  color: var(--aus-text);
}

.aus-nav a:hover::after,
.aus-nav a.active::after {
  opacity: 1;
}

/* Header actions */
.aus-head__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aus-head__actions .aus-btn {
  padding: 8px 16px;
  font-size: 13px;
}

/* Mobile overlay */
.aus-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 10, 0.72);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Mobile sidebar panel */
.aus-mobile-panel {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: min(300px, 88vw);
  background: linear-gradient(160deg, #0d0d18 0%, #12121f 60%, #0a0a14 100%);
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  z-index: 61;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.aus-mobile-panel::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--aus-primary), var(--aus-accent));
  flex-shrink: 0;
}

.aus-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.aus-mobile-panel__logo img {
  display: block;
  width: 40px;
  height: 40px;
}

.aus-mobile-panel__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--aus-border);
  background: var(--aus-surface-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: border-color 0.2s;
}

.aus-mobile-panel__close:hover {
  border-color: var(--aus-primary);
}

.aus-mobile-panel__close::before {
  content: '✕';
  font-size: 18px;
  color: var(--aus-text);
  line-height: 1;
}

.aus-mobile-panel__nav {
  margin: 0;
  padding: 12px 0;
  list-style: none;
  flex: 1;
}

.aus-mobile-panel__nav li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.aus-mobile-panel__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 20px;
  color: var(--aus-text-muted);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.aus-mobile-panel__nav a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aus-primary);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.aus-mobile-panel__nav a:hover {
  color: var(--aus-text);
  background: rgba(201, 162, 39, 0.06);
  padding-left: 24px;
}

.aus-mobile-panel__nav a:hover::before {
  opacity: 1;
}

.aus-mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.aus-mobile-panel__actions .aus-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
}

/* Open state */
body.aus-menu-open {
  overflow: hidden;
}

body.aus-menu-open .aus-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.aus-menu-open .aus-mobile-panel {
  transform: translateX(0);
}

/* Buttons */
.aus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--aus-radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.aus-btn--primary {
  background: var(--aus-primary);
  color: #000;
  border-color: var(--aus-primary);
}

.aus-btn--primary:hover {
  background: var(--aus-primary-hover);
  border-color: var(--aus-primary-hover);
}

.aus-btn--ghost {
  background: transparent;
  color: var(--aus-text);
  border-color: var(--aus-border);
}

.aus-btn--ghost:hover {
  border-color: var(--aus-primary);
  color: var(--aus-primary);
}

.aus-btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.aus-btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero */
.aus-hero {
  position: relative;
  min-height: 500px;
  height: auto;
  overflow: hidden;
}

.aus-hero picture,
.aus-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.aus-hero__overlay {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 16px;
}

.aus-hero__content {
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aus-hero__content .aus-btn {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 15px;
}

.aus-hero__content h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.aus-hero__content p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(240, 240, 255, 0.9);
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.aus-hero__note {
  font-size: 12px;
  color: rgba(160, 160, 176, 0.8);
  margin: 0;
}

/* Compact hero for inner pages */
.aus-hero--compact {
  min-height: 360px;
}

.aus-hero--compact .aus-hero__content h1 {
  font-size: clamp(22px, 3.5vw, 36px);
}

.aus-hero--compact .aus-hero__content p {
  font-size: clamp(13px, 1.6vw, 15px);
  max-width: 520px;
}

/* Trust Bar */
.aus-trust-bar {
  background: var(--aus-surface);
  border-bottom: 1px solid var(--aus-border);
  padding: 20px 0;
}

.aus-trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.aus-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--aus-text-muted);
}

.aus-trust-item__icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .aus-trust-items {
    gap: 20px;
  }
  .aus-trust-item {
    font-size: 13px;
  }
}

/* Sections */
.aus-section {
  padding: 60px 0;
}

.aus-section--bonuses {
  background: var(--aus-surface);
}

.aus-section--features {
  background: linear-gradient(180deg, var(--aus-bg) 0%, var(--aus-surface) 50%, var(--aus-bg) 100%);
}

.aus-features-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.aus-feature-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--aus-surface-2);
  padding: 28px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
}

.aus-feature-card h3 {
  color: var(--aus-primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.aus-feature-card p {
  color: var(--aus-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .aus-feature-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .aus-feature-card {
    flex: 1 1 100%;
  }
}

/* Review Table */
.aus-review-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.aus-review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.aus-review-table th,
.aus-review-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--aus-border);
}

.aus-review-table th {
  background: var(--aus-surface-2);
  font-weight: 700;
  color: var(--aus-primary);
}

.aus-review-table tr:hover td {
  background: var(--aus-surface);
}

.aus-summary {
  text-align: center;
  color: var(--aus-text-muted);
  font-style: italic;
}

/* Bonus Cards */
.aus-bonus-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.aus-bonus-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: var(--aus-surface-2);
  border: 1px solid var(--aus-border);
  border-radius: var(--aus-radius);
  padding: 24px;
}

.aus-bonus-card__stage {
  display: inline-block;
  padding: 4px 12px;
  background: var(--aus-primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--aus-radius-sm);
  margin-bottom: 12px;
}

.aus-bonus-card__title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--aus-primary);
}

.aus-bonus-card__desc {
  color: var(--aus-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.aus-bonus-card__slot {
  font-size: 13px;
  color: var(--aus-accent);
  margin-bottom: 16px;
}

.aus-bonus-card__specs {
  list-style: none;
  font-size: 13px;
  color: var(--aus-text-muted);
}

.aus-bonus-card__specs li {
  padding: 4px 0;
  border-top: 1px solid var(--aus-border);
}

.aus-bonus-card__specs li:first-child {
  border-top: none;
}

.aus-total-box {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--aus-surface-2), var(--aus-surface));
  border: 2px solid var(--aus-primary);
  border-radius: var(--aus-radius);
}

.aus-total-box__label {
  display: block;
  font-size: 14px;
  color: var(--aus-text-muted);
  margin-bottom: 8px;
}

.aus-total-box__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--aus-primary);
}

.aus-total-box-cta {
  text-align: center;
  margin-top: 24px;
}

.aus-total-box-cta .aus-btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* Steps */
.aus-steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aus-step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
}

.aus-step__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aus-primary);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.aus-step__title {
  font-size: 16px;
  margin-bottom: 8px;
}

.aus-step__text {
  font-size: 14px;
  color: var(--aus-text-muted);
}

.aus-pro-tip {
  padding: 16px 20px;
  background: rgba(201, 162, 39, 0.1);
  border-left: 4px solid var(--aus-primary);
  border-radius: 0 var(--aus-radius-sm) var(--aus-radius-sm) 0;
  font-size: 14px;
}

.aus-steps-cta {
  text-align: center;
  margin: 32px 0;
}

.aus-steps-cta .aus-btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* Login Grid */
.aus-login-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aus-login-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 260px;
  background: var(--aus-surface);
  padding: 28px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  text-align: center;
}

.aus-login-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.aus-login-card .aus-h3 {
  margin-bottom: 16px;
  color: var(--aus-primary);
}

.aus-login-card .aus-list {
  text-align: left;
  margin-bottom: 20px;
}

.aus-login-card p {
  color: var(--aus-text-muted);
  font-size: 14px;
  text-align: left;
  margin-bottom: 12px;
}

.aus-login-card--help {
  background: linear-gradient(135deg, var(--aus-surface-2), var(--aus-surface));
}

/* Security Highlight Box */
.aus-security-highlight {
  padding: 32px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(255, 107, 53, 0.04));
  border: 2px solid var(--aus-primary);
  border-radius: var(--aus-radius);
  text-align: center;
}

.aus-security-highlight__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.aus-security-highlight .aus-h3 {
  color: var(--aus-primary);
  margin-bottom: 20px;
}

.aus-security-highlight .aus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 24px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.aus-security-highlight .aus-list li {
  color: var(--aus-text-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .aus-login-card {
    flex: 1 1 100%;
  }
  
  .aus-security-highlight .aus-list {
    grid-template-columns: 1fr;
  }
}

/* Grid Layouts */
.aus-grid2 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.aus-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
}

.aus-list {
  list-style-position: inside;
  margin-bottom: 16px;
}

.aus-list li {
  padding: 6px 0;
  color: var(--aus-text-muted);
}

.aus-note {
  font-size: 13px;
  color: var(--aus-text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--aus-border);
}

.aus-security-box {
  margin-top: 24px;
  padding: 24px;
  background: var(--aus-surface-2);
  border-radius: var(--aus-radius);
}

/* Withdrawals */
.aus-withdraw-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aus-withdraw-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
}

.aus-specs-list {
  list-style: none;
  margin-bottom: 12px;
}

.aus-specs-list li {
  padding: 4px 0;
  font-size: 14px;
}

.aus-kyc-box {
  padding: 24px;
  background: var(--aus-surface-2);
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  margin-bottom: 24px;
}

.aus-withdraw-process,
.aus-withdraw-limits,
.aus-withdraw-faq {
  padding: 24px;
  background: var(--aus-surface);
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  margin-bottom: 24px;
}

.aus-faq-simple p {
  margin-bottom: 16px;
  color: var(--aus-text-muted);
  font-size: 14px;
}

.aus-faq-simple p:last-child {
  margin-bottom: 0;
}

/* Providers */
.aus-providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.aus-provider-item {
  padding: 10px 20px;
  background: var(--aus-surface-2);
  border: 1px solid var(--aus-border);
  border-radius: var(--aus-radius-sm);
  font-size: 14px;
  color: var(--aus-text-muted);
}

/* Game Rows */
.aus-game-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aus-game-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.aus-game-row--reverse {
  flex-direction: row-reverse;
}

.aus-game-row__media {
  flex: 0 0 40%;
  max-width: 400px;
  margin: 0;
}

.aus-game-row__media img {
  width: 100%;
  height: auto;
  border-radius: var(--aus-radius);
  box-shadow: var(--aus-shadow);
}

.aus-game-row__content {
  flex: 1;
}

.aus-game-row__content p {
  color: var(--aus-text-muted);
  margin-bottom: 16px;
}

/* Reviews */
.aus-rating-summary {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--aus-surface);
  border-radius: var(--aus-radius);
}

.aus-rating-summary__score {
  text-align: center;
}

.aus-rating-summary__score strong {
  display: block;
  font-size: 36px;
  color: var(--aus-primary);
  margin-bottom: 8px;
}

.aus-stars {
  color: var(--aus-primary);
  font-size: 20px;
}

.aus-rating-summary__count {
  display: block;
  font-size: 13px;
  color: var(--aus-text-muted);
  margin-top: 4px;
}

.aus-rating-bars {
  width: 300px;
}

.aus-rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.aus-rating-bar span:first-child {
  width: 30px;
  color: var(--aus-text-muted);
}

.aus-rating-bar span:last-child {
  width: 35px;
  text-align: right;
  color: var(--aus-text-muted);
}

.aus-bar {
  flex: 1;
  height: 8px;
  background: var(--aus-surface-2);
  border-radius: 4px;
  overflow: hidden;
}

.aus-bar div {
  height: 100%;
  background: var(--aus-primary);
  border-radius: 4px;
}

.aus-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.aus-review-card {
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
}

.aus-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.aus-review-card__header h4 {
  font-size: 16px;
  margin: 0;
}

.aus-review-card__stars {
  color: var(--aus-primary);
  font-size: 14px;
}

.aus-review-card__meta {
  font-size: 12px;
  color: var(--aus-text-muted);
  margin-bottom: 12px;
}

.aus-review-card p {
  font-size: 14px;
  color: var(--aus-text-muted);
  line-height: 1.5;
}

/* Reviews Slider */
.aus-reviews-slider {
  position: relative;
  overflow: hidden;
}

.aus-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.aus-reviews-track .aus-review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

.aus-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.aus-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--aus-border);
  background: var(--aus-surface-2);
  color: var(--aus-text);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aus-slider-btn:hover {
  border-color: var(--aus-primary);
  background: var(--aus-primary);
  color: #000;
}

.aus-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.aus-slider-dots {
  display: flex;
  gap: 8px;
}

.aus-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--aus-border);
  cursor: pointer;
  transition: background 0.2s;
}

.aus-slider-dot.active {
  background: var(--aus-primary);
}

@media (max-width: 980px) {
  .aus-reviews-track .aus-review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .aus-reviews-track .aus-review-card {
    flex: 0 0 100%;
  }
}

/* FAQ */
.aus-faq {
  max-width: 800px;
  margin-inline: auto;
}

.aus-faq__item {
  border-bottom: 1px solid var(--aus-border);
}

.aus-faq__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--aus-text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.aus-faq__toggle:hover {
  color: var(--aus-primary);
}

.aus-faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.aus-faq__icon::before,
.aus-faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}

.aus-faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.aus-faq__icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.aus-faq__toggle[aria-expanded="true"] .aus-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.aus-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.aus-faq__panel-inner {
  padding-bottom: 20px;
}

.aus-faq__panel-inner p {
  color: var(--aus-text-muted);
}

/* Footer */
.aus-footer {
  background: var(--aus-surface);
  border-top: 1px solid var(--aus-border);
  padding: 40px 0 24px;
}

.aus-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aus-footer__brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.aus-footer__brand img {
  height: 40px;
  width: auto;
  display: block;
}

.aus-footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.aus-footer__nav a {
  color: var(--aus-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.aus-footer__nav a:hover {
  color: var(--aus-primary);
}

.aus-footer__middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--aus-border);
  border-bottom: 1px solid var(--aus-border);
  margin-bottom: 24px;
}

.aus-footer__pay {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.aus-footer__social {
  display: flex;
  gap: 16px;
}

.aus-footer__social a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.aus-footer__social a:hover {
  opacity: 1;
}

.aus-footer__bottom {
  text-align: center;
}

.aus-footer__mandatory {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.aus-footer__mandatory a {
  color: var(--aus-text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.aus-footer__mandatory a:hover {
  color: var(--aus-primary);
}

.aus-footer__disclaimer {
  font-size: 12px;
  color: var(--aus-text-muted);
  max-width: 700px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .aus-footer__top {
    flex-direction: column;
    text-align: center;
  }
  
  .aus-footer__nav {
    gap: 20px;
  }
  
  .aus-footer__middle {
    flex-direction: column;
    gap: 20px;
  }
}

/* Hide burger on desktop */
@media (min-width: 981px) {
  .aus-burger {
    display: none;
  }
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .aus-nav {
    display: none;
  }

  .aus-game-row,
  .aus-game-row--reverse {
    flex-direction: column;
    gap: 24px;
  }

  .aus-game-row__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 981px) {
  .aus-mobile-overlay,
  .aus-mobile-panel {
    display: none;
  }
}

@media (max-width: 980px) {
  .aus-head__actions .aus-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .aus-hero {
    min-height: 480px;
  }

  .aus-hero__overlay {
    min-height: 480px;
    padding: 40px 16px;
  }

  .aus-hero__content h1 {
    max-width: 480px;
    font-size: clamp(24px, 4vw, 36px);
  }

  .aus-hero__content p {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .aus-hero {
    min-height: 520px;
  }

  .aus-hero picture,
  .aus-hero img {
    object-position: 60% center;
  }

  .aus-hero__overlay {
    min-height: 520px;
    padding: 60px 16px 40px;
    align-items: center;
  }

  .aus-hero__content {
    text-align: center;
    gap: 14px;
  }

  .aus-hero__content h1 {
    max-width: 100%;
    font-size: clamp(22px, 5vw, 30px);
  }

  .aus-hero__content p {
    max-width: 100%;
    font-size: 15px;
  }

  .aus-hero__content .aus-btn {
    align-self: center;
    margin-top: 8px;
  }

  .aus-bonus-card,
  .aus-step,
  .aus-card,
  .aus-withdraw-card {
    flex: 1 1 100%;
  }

  .aus-steps { gap: 16px; }

  .aus-rating-summary {
    flex-direction: column;
    gap: 24px;
  }

  .aus-review-table { font-size: 12px; }
  .aus-review-table th,
  .aus-review-table td { padding: 12px; }
  .aus-section { padding: 40px 0; }
  .aus-reviews-grid { grid-template-columns: 1fr; }
  .aus-footer__links,
  .aus-footer__mandatory { gap: 12px; }
}

/* DEAD CODE — remove old nav panel rules */
@media (max-width: 768px) {
  /* Sidebar panel (old - keeping for safety) */
  .aus-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    background: linear-gradient(160deg, #0e0e18 0%, #14141f 60%, #0a0a0f 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
    overflow-y: auto;
  }

  .aus-nav-panel.active {
    transform: translateX(0);
  }

  /* Sidebar top bar */
  .aus-nav-panel::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--aus-primary) 0%, var(--aus-accent) 100%);
    flex-shrink: 0;
  }

  /* Nav list */
  .aus-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 24px 0 8px;
  }

  .aus-nav__list li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .aus-nav__list a {
    display: flex;
    align-items: center;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--aus-text-muted);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
  }

  .aus-nav__list a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--aus-primary);
    margin-right: 14px;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }

  .aus-nav__list a::after {
    display: none;
  }

  .aus-nav__list a:hover {
    color: var(--aus-text);
    background: rgba(201, 162, 39, 0.05);
    padding-left: 32px;
  }

  .aus-nav__list a:hover::before {
    opacity: 1;
  }

  /* Show nav buttons inside sidebar on mobile */
  .aus-nav-panel .aus-nav-panel__actions {
    display: flex;
  }

  /* Sidebar actions */
  .aus-nav-panel__actions {
    flex-direction: column;
    width: 100%;
    padding: 20px 24px 32px;
    gap: 12px;
    margin-top: 0;
  }

  .aus-nav-panel__actions .aus-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Separator before buttons */
  .aus-nav-panel__actions::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aus-border), transparent);
    margin-bottom: 8px;
  }

  /* Content sections on mobile */
  .aus-bonus-card,
  .aus-step,
  .aus-card,
  .aus-withdraw-card {
    flex: 1 1 100%;
  }

  .aus-steps { gap: 16px; }

  .aus-rating-summary {
    flex-direction: column;
    gap: 24px;
  }

  .aus-review-table { font-size: 12px; }

  .aus-review-table th,
  .aus-review-table td { padding: 12px; }

  .aus-section { padding: 40px 0; }
}

@media (max-width: 480px) {
  .aus-hero {
    min-height: 550px;
  }

  .aus-hero__overlay {
    min-height: 550px;
    padding: 50px 16px 30px;
  }

  .aus-hero__content h1 {
    font-size: 24px;
  }

  .aus-hero__content p {
    font-size: 14px;
  }

  .aus-btn--lg { width: 100%; }
  .aus-reviews-grid { grid-template-columns: 1fr; }
}

/* Legal Content Pages */
.aus-legal-content {
  max-width: 800px;
  margin-inline: auto;
}

.aus-legal-content h2 {
  margin-top: 40px;
  text-align: left;
}

.aus-legal-content p,
.aus-legal-content ul {
  margin-bottom: 16px;
  color: var(--aus-text-muted);
}

/* Contact Page */
.aus-contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.aus-contact-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--aus-surface);
  padding: 32px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  text-align: center;
}

.aus-contact-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.aus-contact-card h3 {
  margin-bottom: 16px;
}

.aus-contact-card p {
  color: var(--aus-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.aus-contact-card .aus-btn {
  margin-top: 16px;
}

.aus-contact-info {
  background: var(--aus-surface);
  padding: 32px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  margin-bottom: 24px;
}

.aus-response-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.aus-response-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--aus-surface-2);
  border-radius: var(--aus-radius-sm);
  font-size: 14px;
}

.aus-response-item__method {
  color: var(--aus-text);
}

.aus-response-item__time {
  color: var(--aus-text-muted);
}

.aus-contact-tips,
.aus-complaints {
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius);
  border: 1px solid var(--aus-border);
  margin-bottom: 16px;
}

/* Withdrawals Section */
.aus-section--withdrawals {
  background: linear-gradient(180deg, var(--aus-surface) 0%, var(--aus-bg) 100%);
}

.aus-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Payment Cards */
.aus-payments-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.aus-payment-card {
  background: var(--aus-surface-2);
  border: 1px solid var(--aus-border);
  border-radius: var(--aus-radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.aus-payment-card:hover {
  transform: translateY(-4px);
  border-color: var(--aus-primary);
}

.aus-payment-card--featured {
  border: 2px solid var(--aus-primary);
  background: linear-gradient(135deg, var(--aus-surface-2), rgba(201, 162, 39, 0.08));
}

.aus-payment-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aus-primary);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

.aus-payment-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--aus-surface);
  border: 2px solid var(--aus-border);
}

.aus-payment-card__icon--bank { border-color: #4ade80; }
.aus-payment-card__icon--card { border-color: #60a5fa; }
.aus-payment-card__icon--crypto { border-color: var(--aus-primary); background: rgba(201, 162, 39, 0.15); }
.aus-payment-card__icon--ewallet { border-color: #f472b6; }

.aus-payment-card .aus-h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--aus-text);
}

.aus-payment-card__tag {
  font-size: 12px;
  color: var(--aus-text-muted);
  margin-bottom: 16px;
}

.aus-payment-specs {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.aus-payment-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--aus-border);
  font-size: 14px;
}

.aus-payment-specs li:last-child {
  border-bottom: none;
}

.aus-label {
  color: var(--aus-text-muted);
}

.aus-value {
  color: var(--aus-text);
  font-weight: 700;
}

.aus-value--free {
  color: var(--aus-success);
}

.aus-value--fast {
  color: var(--aus-primary);
}

.aus-payment-note {
  font-size: 12px;
  color: var(--aus-text-muted);
  margin: 0;
}

/* KYC Highlight */
.aus-kyc-highlight {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(255, 107, 53, 0.05));
  border: 2px solid var(--aus-primary);
  border-radius: var(--aus-radius);
  padding: 32px;
  margin-bottom: 48px;
}

.aus-kyc-highlight__header {
  text-align: center;
  margin-bottom: 28px;
}

.aus-kyc-highlight__icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.aus-kyc-highlight .aus-h3 {
  color: var(--aus-primary);
  margin-bottom: 4px;
}

.aus-kyc-highlight__sub {
  color: var(--aus-text-muted);
  font-size: 14px;
}

.aus-kyc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.aus-kyc-step {
  display: flex;
  gap: 16px;
  background: var(--aus-surface);
  padding: 20px;
  border-radius: var(--aus-radius-sm);
  border: 1px solid var(--aus-border);
}

.aus-kyc-step__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aus-primary);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
}

.aus-kyc-step__content h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--aus-text);
}

.aus-kyc-step__content p {
  font-size: 13px;
  color: var(--aus-text-muted);
  margin: 0;
  line-height: 1.5;
}

.aus-kyc-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--aus-text-muted);
}

/* Process Timeline */
.aus-process-section {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--aus-surface);
  border-radius: var(--aus-radius);
}

.aus-process-section .aus-h3 {
  margin-bottom: 28px;
}

.aus-process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.aus-timeline-step {
  text-align: center;
}

.aus-timeline-step__dot {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aus-surface-2);
  border: 2px solid var(--aus-border);
  border-radius: 50%;
  font-weight: 700;
  color: var(--aus-text);
  margin-bottom: 8px;
}

.aus-timeline-step:last-child .aus-timeline-step__dot {
  background: var(--aus-success);
  border-color: var(--aus-success);
  color: #000;
}

.aus-timeline-step__label {
  font-size: 12px;
  color: var(--aus-text-muted);
}

.aus-timeline-line {
  width: 30px;
  height: 2px;
  background: var(--aus-border);
}

.aus-pending-note {
  font-size: 14px;
  color: var(--aus-text-muted);
  margin: 0;
}

/* Limits Box */
.aus-limits-box {
  background: linear-gradient(135deg, var(--aus-surface-2), var(--aus-surface));
  border: 1px solid var(--aus-border);
  border-radius: var(--aus-radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 48px;
}

.aus-limits-box .aus-h3 {
  color: var(--aus-primary);
  margin-bottom: 24px;
}

.aus-limits-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.aus-limit-item {
  text-align: center;
}

.aus-limit-item__value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--aus-primary);
  margin-bottom: 4px;
}

.aus-limit-item__label {
  font-size: 14px;
  color: var(--aus-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aus-limits-vip {
  font-size: 14px;
  color: var(--aus-text-muted);
  margin: 0;
}

/* FAQ Grid */
.aus-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.aus-faq-item {
  background: var(--aus-surface);
  padding: 24px;
  border-radius: var(--aus-radius-sm);
  border: 1px solid var(--aus-border);
}

.aus-faq-item h4 {
  font-size: 15px;
  color: var(--aus-primary);
  margin-bottom: 8px;
}

.aus-faq-item p {
  font-size: 14px;
  color: var(--aus-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Speed Tips */
.aus-speed-tips {
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
  border-left: 4px solid var(--aus-success);
  border-radius: 0 var(--aus-radius-sm) var(--aus-radius-sm) 0;
  padding: 28px 32px;
  margin-top: 48px;
}

.aus-speed-tips__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.aus-speed-tips h4 {
  font-size: 18px;
  color: var(--aus-success);
  margin-bottom: 16px;
}

.aus-speed-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  font-size: 14px;
  color: var(--aus-text-muted);
}

@media (max-width: 980px) {
  .aus-payments-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .aus-kyc-steps {
    grid-template-columns: 1fr;
  }
  
  .aus-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .aus-speed-tips__grid {
    grid-template-columns: 1fr;
  }
  
  .aus-process-timeline {
    gap: 12px;
  }
  
  .aus-timeline-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .aus-payments-showcase {
    grid-template-columns: 1fr;
  }
  
  .aus-limits-grid {
    gap: 24px;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}
