/* Mobile and Tablet Styles */
@media screen and (max-width: 1200px) {
  .aus_section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  .aus_header .menu a {
    margin-left: 20px;
    font-size: 14px;
  }

  .aus_casino_list > .casino-item {
    flex-wrap: wrap;
  }

  .aus_casino_list > .casino-item > .logo-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .aus_casino_list > .casino-item > .info {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    padding: 25px 0;
    margin-bottom: 25px;
    text-align: center;
  }

  .aus_casino_list > .casino-item > .rating {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 25px 0;
  }

  .aus_casino_list > .casino-item > .buttons {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .aus_header .container {
    flex-direction: column;
  }

  .aus_header .logo {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .aus_header .menu {
    width: 100%;
    justify-content: space-around;
  }

  .aus_header .menu a {
    margin: 0 5px;
    font-size: 13px;
  }

  .aus_main {
    margin-top: 120px;
  }

  .hero-section {
    padding: 40px 20px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .aus_section {
    padding: 25px;
  }

  .aus_section > header > .label:after {
    width: 60px;
  }

  .aus_footer {
    padding: 50px 0 30px;
  }

  .aus_logos_list {
    gap: 15px;
  }

  .aus_logos_list > .logo-item svg {
    height: 40px;
  }

  .f-left,
  .f-right {
    float: none;
    margin: 0 0 20px 0;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .aus_header .menu {
    flex-wrap: wrap;
  }

  .aus_header .menu a {
    margin: 5px;
  }

  .aus_section {
    padding: 20px;
  }

  .aus_casino_list > .casino-item {
    padding: 20px;
  }

  .aus_casino_list > .casino-item > .info > .bonus {
    font-size: 32px;
  }

  .aus_rating {
    padding: 10px 15px;
  }

  .aus_rating > .stars {
    width: 100px;
    height: 20px;
  }

  .aus_faq_list > .faq-item > .label {
    padding: 15px 45px 15px 15px;
    font-size: 15px;
  }

  .aus_logos_list {
    gap: 12px;
  }

  .aus_logos_list > .logo-item svg {
    height: 36px;
  }
}

/* JavaScript for scroll reveal animation */
/* 
// Add this script to your HTML
document.addEventListener('DOMContentLoaded', function() {
  const scrollRevealElements = document.querySelectorAll('.scroll-reveal');
  
  const revealOnScroll = function() {
    for (let i = 0; i < scrollRevealElements.length; i++) {
      const elementTop = scrollRevealElements[i].getBoundingClientRect().top;
      const elementVisible = 150;
      
      if (elementTop < window.innerHeight - elementVisible) {
        scrollRevealElements[i].classList.add('revealed');
      }
    }
  };
  
  window.addEventListener('scroll', revealOnScroll);
  revealOnScroll(); // Check on load
});
*/
