@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: #BC9129;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #D6B342;
}

* {
  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;
  text-align: justify;
}

p {
  text-align: justify;
}

/* Headers should not be justified */
h1, h2, h3, h4, h5, h6 {
  text-align: left;
}

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;
  display: inline-block;
}

.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);
}

/* Hide mobile auth buttons on desktop */
.mobile-auth-buttons {
  display: none;
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

/* Hamburger Menu Button - Hidden on Desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.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);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1400px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: var(--accent-primary);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--accent-primary);
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HERO GAMES SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(214, 179, 66, 0.95) 0%, rgba(17, 17, 17, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%),
              url('../images/background.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 80px 60px;
  margin-top: 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(214, 179, 66, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(214, 179, 66, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.hero-content .btn {
  margin-top: 30px;
  padding: 16px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: var(--secondary-color);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(214, 179, 66, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.hero-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(214, 179, 66, 0.6);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
}

/* ============================================
   POKIES COLLECTION SECTION
   ============================================ */
.games-pokies {
  margin: 80px 0;
  padding: 0;
}

.games-pokies-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-pokies-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.games-pokies-header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.games-pokies-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-pokies-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-align: justify;
}

.pokies-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.pokies-category {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.pokies-category:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(214, 179, 66, 0.15);
}

.pokies-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.pokies-category p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.pokies-category ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.pokies-category ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.pokies-category ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 0.8rem;
}

.featured-pokies {
  margin-top: 50px;
}

.featured-pokies h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 30px;
  text-align: center;
}

.pokies-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.pokie-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(214, 179, 66, 0.2);
}

.pokie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 179, 66, 0.15);
  border-color: var(--accent-primary);
}

.pokie-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pokie-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-primary);
  padding: 15px 20px 10px;
  margin: 0;
}

.pokie-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 20px 20px;
  line-height: 1.6;
  text-align: justify;
}

/* ============================================
   LIVE CASINO SECTION
   ============================================ */
.games-live {
  margin: 80px 0;
  padding: 0;
}

.games-live-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-live-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-live-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-live-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.live-casino-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.live-casino-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.live-casino-features h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: 30px;
  margin-bottom: 20px;
}

.live-casino-features h3:first-child {
  margin-top: 0;
}

.live-casino-features ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.live-casino-features ul li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  text-align: justify;
}

.live-casino-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ============================================
   TABLE GAMES SECTION
   ============================================ */
.games-table {
  margin: 80px 0;
  padding: 0;
}

.games-table-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-table-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-table-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-table-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.table-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.table-game-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 35px;
  border-radius: 15px;
  border-top: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.table-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 179, 66, 0.15);
  border-top-color: var(--primary-color);
}

.table-game-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.table-game-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.table-game-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.table-game-card ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.table-game-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.5rem;
}

/* ============================================
   SPORTS BETTING SECTION
   ============================================ */
.games-sports {
  margin: 80px 0;
  padding: 0;
}

.games-sports-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-sports-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.games-sports-header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.games-sports-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-sports-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-align: justify;
}

.sports-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sports-feature {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.sports-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(214, 179, 66, 0.15);
}

.sports-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.sports-feature p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.sports-feature ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.sports-feature ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.sports-feature ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* ============================================
   GAME FEATURES SECTION
   ============================================ */
.games-features {
  margin: 80px 0;
  padding: 0;
}

.games-features-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-features-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-features-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(214, 179, 66, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 179, 66, 0.15);
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(214, 179, 66, 0.3);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.feature-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.feature-item > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.feature-item ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.feature-item ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.feature-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   GAME PROVIDERS SECTION
   ============================================ */
.games-providers {
  margin: 80px 0;
  padding: 0;
}

.games-providers-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-providers-header {
  text-align: center;
  margin-bottom: 50px;
}

.games-providers-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-providers-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.providers-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.provider-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(214, 179, 66, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.provider-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 179, 66, 0.15);
}

.provider-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.provider-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.provider-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.provider-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
}

.provider-card ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  text-align: justify;
}

.provider-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* ============================================
   MOBILE GAMING SECTION
   ============================================ */
.games-mobile {
  margin: 80px 0;
  padding: 0;
}

.games-mobile-container {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.games-mobile-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-mobile-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.games-mobile-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: 35px;
  margin-bottom: 20px;
}

.games-mobile-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.games-mobile-content ul li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  text-align: justify;
}

.games-mobile-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.games-mobile-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   FAQ SECTION - Modern Card Grid Design
   ============================================ */
.faq-modern {
  margin: 80px 0;
  padding: 0;
  position: relative;
}

.faq-modern-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-modern-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(214, 179, 66, 0.3);
}

.faq-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.faq-modern-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-modern-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}

.faq-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.faq-modern-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(214, 179, 66, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--primary-color) 50%, var(--accent-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-modern-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(214, 179, 66, 0.2);
}

.faq-modern-card:hover::before {
  transform: scaleX(1);
}

.faq-modern-card.active {
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(214, 179, 66, 0.3);
}

.faq-modern-card.active::before {
  transform: scaleX(1);
}

.faq-card-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.faq-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.faq-card-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle-icon i {
  font-size: 1.2rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-modern-card.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-modern-card.active .faq-toggle-icon i {
  transform: rotate(180deg);
}

.faq-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-modern-card.active .faq-card-content {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-card-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* ============================================
   FOOTER MODERN DESIGN
   ============================================ */
.footer-modern {
  margin-top: 100px;
  padding: 60px 0 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  border-top: 3px solid var(--accent-primary);
  position: relative;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--primary-color) 50%, var(--accent-primary) 100%);
}

.footer-modern-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-modern-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-modern-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  margin-bottom: 20px;
}

.footer-logo-link img {
  height: 50px;
}

.footer-brand-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social-label {
  font-size: 1rem;
  color: var(--accent-primary);
  font-weight: 600;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(214, 179, 66, 0.1);
  border: 1px solid rgba(214, 179, 66, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-primary);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(214, 179, 66, 0.4);
}

.footer-modern-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-link-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.footer-link-column ul {
  list-style: none;
  padding: 0;
}

.footer-link-column ul li {
  margin-bottom: 12px;
}

.footer-link-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: left;
}

.footer-link-column ul li a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.footer-modern-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(214, 179, 66, 0.2);
}

.footer-modern-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-modern-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.footer-modern-copy a {
  color: var(--accent-primary);
  transition: color 0.3s ease;
}

.footer-modern-copy a:hover {
  color: var(--primary-color);
}

.footer-disclaimer {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-updated {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 8px;
}

.footer-modern-badges {
  display: flex;
  gap: 15px;
}

.footer-badge {
  padding: 8px 16px;
  background: rgba(214, 179, 66, 0.1);
  border: 1px solid rgba(214, 179, 66, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }

  main {
    max-width: 100%;
    padding: 0 20px;
  }

  .games-pokies-header,
  .games-sports-header,
  .live-casino-content,
  .games-mobile-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
    position: relative;
  }

  .navbar .logo {
    flex: 1;
  }

  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
    order: 2;
  }

  /* Hide separate auth buttons on mobile */
  .navbar .auth-buttons {
    display: none;
  }

  /* Hide navbar menu by default on mobile */
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    margin-top: 15px;
    gap: 0;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* Show navbar menu when active */
  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(214, 179, 66, 0.1);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li.mobile-auth-buttons {
    border-bottom: none;
    border-top: 2px solid rgba(214, 179, 66, 0.2);
    padding: 0;
    margin-top: 10px;
  }

  .navbar-menu li a {
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
  }

  .navbar-menu li a:hover {
    background: rgba(214, 179, 66, 0.1);
    color: var(--accent-primary);
  }

  /* Ensure mobile auth buttons don't inherit link styles */
  .navbar-menu li.mobile-auth-buttons a {
    padding: 12px 20px;
    text-align: center;
    display: block !important;
  }

  /* Mobile auth buttons inside menu */
  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    border-top: 2px solid rgba(214, 179, 66, 0.2);
    margin-top: 10px;
  }

  .mobile-auth-buttons {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    border-top: 2px solid rgba(214, 179, 66, 0.2);
    margin-top: 10px;
    width: 100%;
  }

  .mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-auth-buttons .btn-login {
    background-color: var(--text-primary) !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--text-primary) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-auth-buttons .btn-register {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--text-primary) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-auth-buttons .btn:hover {
    opacity: 0.9 !important;
  }

  .hero {
    padding: 50px 30px;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .games-pokies-container,
  .games-live-container,
  .games-table-container,
  .games-sports-container,
  .games-features-container,
  .games-providers-container,
  .games-mobile-container {
    padding: 40px 25px;
  }

  .games-pokies-content h2,
  .games-live-header h2,
  .games-table-header h2,
  .games-sports-content h2,
  .games-features-header h2,
  .games-providers-header h2,
  .games-mobile-content h2 {
    font-size: 2rem;
  }

  .pokies-categories,
  .pokies-showcase,
  .table-games-grid,
  .sports-features,
  .features-grid,
  .providers-showcase {
    grid-template-columns: 1fr;
  }

  .footer-modern-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-modern-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-modern-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .games-pokies-content h2,
  .games-live-header h2,
  .games-table-header h2,
  .games-sports-content h2,
  .games-features-header h2,
  .games-providers-header h2,
  .games-mobile-content h2 {
    font-size: 1.75rem;
  }

  .footer-modern-links {
    grid-template-columns: 1fr;
  }
}
