@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
  --gold-color: #FFD700;
  --gold-dark: #B8860B;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(197, 1, 2, 0.8) 0%, rgba(17, 17, 17, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 80px rgba(197, 1, 2, 0.5);
  border: 3px solid #FFD700;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Badge */
.hero-badge-group {
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFD700;
  padding: 12px 28px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: #000000;
  font-size: 1.3rem;
}

/* Hero Typography */
.hero-content h1 {
  font-size: 4.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  color: #E0E0E0;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Hero Description Box */
.hero-description-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
  margin-bottom: 40px;
}

.hero-description {
  color: #E8E8E8;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-description:last-child {
  margin-bottom: 0;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 5px;
  border: 2px solid #FFD700;
  width: fit-content;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: none;
  border-radius: 45px 0 0 45px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-hero-primary i {
  font-size: 1.4rem;
}

.btn-hero-secondary {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: transparent;
  color: #FFD700;
  border: none;
  border-radius: 0 45px 45px 0;
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-hero-secondary i {
  font-size: 1.4rem;
}

/* Hero Features Side */
.hero-features-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInRight 1s ease-out;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hero-feature-card:hover {
  transform: translateX(10px);
  border-color: #FFD700;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hero-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.hero-feature-icon i {
  font-size: 1.8rem;
  color: #FFD700;
  display: inline-block;
  line-height: 1;
  font-weight: normal;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-feature-text strong {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
}

.hero-feature-text span {
  font-size: 0.9rem;
  color: #AAAAAA;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  border-color: rgba(197, 1, 2, 0.3);
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: 10%;
  border-color: rgba(255, 215, 0, 0.2);
  animation-delay: 2s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 15%;
  border-color: rgba(197, 1, 2, 0.2);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(30px) translateX(-20px) rotate(240deg);
    opacity: 0.5;
  }
}

.why-aussie-players {
  margin: 80px 0;
  position: relative;
}

.why-aussie-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-aussie-header h2 {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.why-aussie-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-aussie-banner {
  max-width: 800px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  border: 3px solid #FFD700;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.why-aussie-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why-aussie-banner:hover img {
  transform: scale(1.05);
}

.why-aussie-subtitle {
  font-size: 1.3rem;
  color: #E8E8E8;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-aussie-promise {
  font-size: 1.5rem;
  color: #FFD700;
  font-weight: 700;
  line-height: 1.8;
}

.why-aussie-promise strong {
  color: #FFFFFF;
}

.why-aussie-promises {
  max-width: 1000px;
  margin: 0 auto 50px;
}

.promises-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}

.promises-table tbody tr {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
}

.promises-table tbody tr:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.promise-icon-cell {
  width: 100px;
  padding: 30px;
  text-align: center;
  vertical-align: middle;
}

.promise-icon-cell i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 2px solid #FFD700;
  font-size: 1.8rem;
  color: #FFD700;
  margin: 0 auto;
}

.promise-content-cell {
  padding: 30px 30px 30px 0;
  vertical-align: middle;
}

.promise-content-cell h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.promise-content-cell p {
  font-size: 1.1rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.why-aussie-footer {
  text-align: center;
  padding: 30px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-aussie-footer p {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.8;
}

.why-aussie-footer i {
  color: #FFD700;
  margin-right: 10px;
}

.why-aussie-footer strong {
  color: #FFD700;
  font-weight: 700;
}

.joospin-difference {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(197, 1, 2, 0.05) 0%, transparent 50%);
}

.difference-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.difference-header {
  text-align: center;
  margin-bottom: 70px;
}

.difference-header h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.difference-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.difference-intro {
  font-size: 1.3rem;
  color: #E8E8E8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.difference-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.difference-feature-card {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 0;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
}

.difference-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.difference-feature-card:hover::before {
  transform: scaleX(1);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.difference-feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.feature-icon-wrapper {
  position: relative;
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.feature-number {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD700;
  border-radius: 15px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  color: #FFD700;
}

.difference-feature-card h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.feature-content {
  padding: 0 30px 30px;
}

.feature-content p {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid #FFD700;
  border-radius: 10px;
  margin-top: 20px;
}

.feature-highlight i {
  font-size: 1.3rem;
  color: #FFD700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-highlight span {
  font-size: 1.05rem;
  color: #FFD700;
  font-weight: 600;
  line-height: 1.6;
}

.difference-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.promo-carousel-wrapper {
  overflow: hidden;
  border-radius: 25px;
  border: 3px solid #FFD700;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
}

.promo-carousel-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.promo-carousel {
  overflow: hidden;
}

.promo-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.promo-carousel a {
  display: block;
  flex-shrink: 0;
  width: 100%;
}

.promo-carousel img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.promo-carousel a:hover img {
  transform: scale(1.08);
}

.promo-banner-wrapper {
  overflow: hidden;
  border-radius: 25px;
  border: 3px solid #FFD700;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
}

.promo-banner-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.promo-banner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.promo-banner-wrapper:hover img {
  transform: scale(1.05);
}

.bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.bonus-intro h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
}

.games-header {
  text-align: center;
  margin-bottom: 70px;
}

.games-header h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.games-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-intro-text {
  font-size: 1.3rem;
  color: #E8E8E8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.games-container {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.game-category {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
}

.game-category:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.game-category-header {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
}

.game-category-header img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.game-category:hover .game-category-header img {
  transform: scale(1.08);
}

.game-category-header h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  font-size: 1.9rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.game-category-content {
  padding: 35px;
}

.game-category-content > p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 25px;
}

.game-category-content > p strong {
  color: #FFD700;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}

.game-features-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.game-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: #E8E8E8;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.game-features-list li:last-child {
  border-bottom: none;
}

.game-features-list i {
  font-size: 1.3rem;
  color: #FFD700;
  flex-shrink: 0;
}

.game-cta {
  text-align: center;
}

.game-cta .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: 3px solid #FFD700;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.game-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.games-trust {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  text-align: center;
}

.games-trust p {
  font-size: 1.1rem;
  color: #E8E8E8;
  margin: 0;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.games-trust i {
  font-size: 1.5rem;
  color: #FFD700;
}

.joospin-features {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(197, 1, 2, 0.05) 0%, transparent 50%);
}

.features-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-header h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.features-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.3rem;
  color: #E8E8E8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.feature-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.feature-section:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
}

.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-section:hover::before {
  opacity: 1;
}

.feature-icon-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.08) 100%);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-icon-header i {
  font-size: 3rem;
  color: #FFD700;
  flex-shrink: 0;
}

.feature-icon-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.feature-content {
  padding: 35px;
}

.feature-content > p {
  font-size: 1.05rem;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-content > p strong {
  color: #FFD700;
  font-weight: 700;
}

.feature-content .feature-footer-text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: #FFD700;
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.6;
}

.feature-list i {
  font-size: 1.3rem;
  color: #FFD700;
  flex-shrink: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0 25px;
}

.feature-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1.05rem;
  color: #FFD700;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-grid-item:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: #FFD700;
  transform: translateY(-3px);
}

.feature-grid-item i {
  font-size: 1.5rem;
}

.latest-updates {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.updates-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.updates-header {
  text-align: center;
  margin-bottom: 70px;
}

.updates-header h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.updates-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.updates-subtitle {
  font-size: 1.3rem;
  color: #E8E8E8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.update-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 30px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.update-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.update-card.featured-update {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
  border: 3px solid rgba(255, 215, 0, 0.4);
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.update-badge i {
  font-size: 1.1rem;
}

.update-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.update-card-top i {
  font-size: 3rem;
  color: #FFD700;
  opacity: 0.3;
}

.update-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.update-date,
.update-category {
  font-size: 0.95rem;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 5px;
}

.update-date i,
.update-category i {
  color: #FFD700;
  font-size: 1rem;
}

.update-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.update-card p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.update-features {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.update-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  color: #FFD700;
  font-weight: 600;
}

.update-feature-item i {
  font-size: 1.2rem;
}

.updates-cta {
  text-align: center;
  margin-top: 60px;
}

.updates-cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-icon i {
  font-size: 3rem;
  color: #000000;
}

.updates-cta-box h3 {
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 15px;
}

.updates-cta-box p {
  font-size: 1.2rem;
  color: #E8E8E8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: 3px solid #FFD700;
  border-radius: 50px;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-cta i {
  font-size: 1.4rem;
}

.faq {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(197, 1, 2, 0.05) 0%, transparent 50%);
}

.faq h3 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.faq h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  animation: shimmer 3s linear infinite;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-item.active {
  border-color: #FFD700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.faq-item::before {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #FFD700;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-item.active::before {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0;
  position: relative;
  padding-right: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  opacity: 0;
  padding: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  padding-top: 20px;
}

.faq-item ul {
  margin: 15px 0;
  padding-left: 30px;
}

.faq-item li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 8px 0;
  list-style: disc;
}

.faq-item.active li {
  opacity: 1;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  color: var(--gold-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

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

.footer-column p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-disclaimer {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--text-secondary);
}

.hero-meta-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-meta-info p {
  color: #AAAAAA;
  font-size: 0.9rem;
  margin: 0;
}

.content-source {
  margin-top: 15px;
  padding: 10px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
}

.content-source small {
  color: #AAAAAA;
}

.trust-meta {
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .why-aussie-players {
    margin: 60px 0;
  }

  .why-aussie-header {
    margin-bottom: 40px;
  }

  .why-aussie-header h2 {
    font-size: 2.5rem;
  }

  .joospin-difference {
    margin: 60px 0;
    padding: 40px 0;
  }

  .difference-header h2 {
    font-size: 2.5rem;
  }

  .difference-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .games {
    margin: 60px 0;
    padding: 40px 0;
  }

  .games-header h2 {
    font-size: 2.5rem;
  }

  .games-container {
    gap: 35px;
    padding: 0 25px;
  }

  .joospin-features {
    margin: 60px 0;
    padding: 40px 0;
  }

  .features-header h2 {
    font-size: 2.5rem;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .latest-updates {
    margin: 60px 0;
    padding: 40px 0;
  }

  .updates-header h2 {
    font-size: 2.5rem;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .update-card.featured-update {
    grid-column: span 1;
  }

  .updates-cta-box {
    padding: 40px 30px;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
  }

  .cta-icon i {
    font-size: 2.5rem;
  }

  .updates-cta-box h3 {
    font-size: 1.8rem;
  }

  .faq {
    margin: 60px 0;
    padding: 40px 0;
  }

  .faq h3 {
    font-size: 2.5rem;
  }

  .faq-container {
    padding: 0 25px;
  }

  .faq-item {
    padding: 25px;
  }

  .faq-item h4 {
    font-size: 1.2rem;
    padding-right: 35px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-content-wrapper {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .why-aussie-header h2 {
    font-size: 2rem;
  }

  .joospin-difference {
    margin: 40px 0;
    padding: 30px 0;
  }

  .difference-header h2 {
    font-size: 2rem;
  }

  .games {
    margin: 40px 0;
    padding: 30px 0;
  }

  .games-header h2 {
    font-size: 2rem;
  }

  .games-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .joospin-features {
    margin: 40px 0;
    padding: 30px 0;
  }

  .features-header h2 {
    font-size: 2rem;
  }

  .latest-updates {
    margin: 40px 0;
    padding: 30px 0;
  }

  .updates-header h2 {
    font-size: 2rem;
  }

  .updates-grid {
    gap: 20px;
  }

  .update-card {
    padding: 25px;
  }

  .update-card h3 {
    font-size: 1.3rem;
  }

  .updates-cta-box {
    padding: 35px 25px;
  }

  .updates-cta-box h3 {
    font-size: 1.6rem;
  }

  .updates-cta-box p {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 15px 35px;
    font-size: 1rem;
  }

  .faq {
    margin: 40px 0;
    padding: 30px 0;
  }

  .faq h3 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-item {
    padding: 25px;
  }

  .faq-item::before {
    right: 20px;
    font-size: 1.8rem;
  }

  .faq-item h4 {
    font-size: 1.15rem;
    padding-right: 35px;
  }

  .faq-item p {
    font-size: 1rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 25px 0;
  }

  .hero-content-wrapper {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .why-aussie-header h2 {
    font-size: 1.8rem;
  }

  .joospin-difference {
    margin: 30px 0;
    padding: 25px 0;
  }

  .difference-header h2 {
    font-size: 1.8rem;
  }

  .games {
    margin: 30px 0;
    padding: 25px 0;
  }

  .games-header h2 {
    font-size: 1.8rem;
  }

  .games-container {
    padding: 0 15px;
    gap: 25px;
  }

  .joospin-features {
    margin: 30px 0;
    padding: 25px 0;
  }

  .features-header h2 {
    font-size: 1.8rem;
  }

  .features-container {
    padding: 0 15px;
    gap: 25px;
  }

  .latest-updates {
    margin: 30px 0;
    padding: 25px 0;
  }

  .updates-header h2 {
    font-size: 1.8rem;
  }

  .update-card {
    padding: 20px;
  }

  .update-card h3 {
    font-size: 1.2rem;
  }

  .update-card-top i {
    font-size: 2rem;
  }

  .updates-cta-box {
    padding: 30px 20px;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .updates-cta-box h3 {
    font-size: 1.4rem;
  }

  .btn-cta {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .faq {
    margin: 30px 0;
    padding: 25px 0;
  }

  .faq h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 0 15px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item::before {
    right: 15px;
    font-size: 1.5rem;
  }

  .faq-item h4 {
    font-size: 1rem;
    padding-right: 30px;
  }

  .faq-item p {
    font-size: 0.95rem;
  }

  .faq-item ul {
    margin: 12px 0;
    padding-left: 25px;
  }

  .faq-item li {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
  
  .footer-copy p {
    font-size: 0.8rem;
  }
}