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

body {
    font-family: Arial, sans-serif;
    background-color: #fff; /* Set the background to black */
    color: #000; /* Set text color to golden/yellow */
    min-height: 100vh; /* Ensure body takes full viewport height */
    display: flex;
    flex-direction: column; /* Keeps content stacked vertically */
}

/* General Styles */
nav {
    background-color: #fff; /* White background */
    padding: 1em;
    text-align: center;
    position: sticky; /* Stick to the top */
    top: 0; /* Sticks at the top of the page */
    z-index: 1000; /* Ensures it stays above other elements */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visibility */
}

nav .logo {
    margin-bottom: 0;
}

nav .logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #ff0000; /* Red text */
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover and Active State */
nav ul li a:hover,
nav ul li a.active {
    color: #000; /* Black text */
}

nav ul li a:hover::before,
nav ul li a.active::before {
    content: "•"; /* Black bullet point */
    position: absolute;
    left: -10px;
    color: #000;
    font-size: 1.2em;
}

/* Toggle Icon */
nav .toggle-icon {
    display: none;
    font-size: 25px;
    color: #ff0000; /* Red icon */
    position: absolute;
    right: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        display: none;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: #fff; /* White background for mobile */
        z-index: 999; /* Keeps menu above other content */
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav .toggle-icon {
        display: block;
    }

    nav ul.active {
        display: block;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    nav .toggle-icon {
        display: none;
    }
}

/* Image Section */
.image-section {
    background-color: #f9f9f9; /* Optional: Background color */
    text-align: center;
  }
  
  .image-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .responsive-image {
    width: 100%; /* Full width */
    max-width: 100%; /* Constrain to parent container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
  }  

/* Banner Section */
.banner-section {
    background-image: url('../assets/tmzbet-background.jpg'); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.banner-icon {
    width: 60%; /* Adjust image size */
    height: auto;
    margin-bottom: 15px; /* Space between image and heading */
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
    color: #fff;
}

.content-left {
    flex: 1;
    color: white;
    text-align: center; /* Center text for desktop as well */
}

.content-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.content-left button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
}

.content-left button:hover {
    background-color: #e55d00;
}

.content-right {
    flex: 1;
}

.content-right img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .promo-section {
        flex-direction: column; /* Change direction to column for mobile */
        height: auto; /* Adjust height for mobile */
    }

    .content-right {
        order: 1; /* Display image first */
    }

    .content-left {
        order: 2; /* Display text second */
        text-align: center; /* Center text for mobile */
        padding: 20px 0;
    }

    .content-left h1 {
        font-size: 2rem; /* Adjust font size for mobile */
    }

    .content-left p {
        font-size: 1rem; /* Adjust font size for mobile */
    }

    .content-left button {
        width: 100%; /* Make button full width for mobile */
        padding: 15px 0;
    }
} 

/* Style for the action buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.action-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: 3px solid #ff0000;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #c40000;
    color: #000000;
    border-color: #c40000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Desktop Styles */
.container {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Matches header font */
    line-height: 1.6; /* Adjusts text spacing for readability */
    font-size: 1em; /* Ensures consistency in font size */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 20px; /* Reduces padding for smaller screens */
        font-size: 0.9em; /* Adjusts font size for better readability on mobile */
        text-align: left; /* Keeps left alignment for mobile */
    }
}

/* General Section Styles */
.game-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
  }

  /* Tab Buttons */
  .tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .tab-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .tab-btn.active,
  .tab-btn:hover {
    background-color: #ff0000;
    color: #fff;
  }
  
/* Tab Content */
.tab-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.tab-content .tab-item {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
    background-color: #000; /* Black background for tab content */
    color: #fff; /* White text for readability */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for better visuals */
    max-width: 70%; /* Reduce width of the tab content */
    width: 100%; /* Ensure responsiveness */
    margin: 0 auto; /* Center the content */
}

.tab-content .tab-item.active {
    display: block;
}

.tab-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tab-item p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.tab-image {
    max-width: 200px; /* Reduce image width */
    height: auto;
    border-radius: 10px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-content .tab-item {
        max-width: 90%; /* Adjust for smaller screens */
    }

    .tab-item h3 {
        font-size: 1.5rem;
    }

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

    .tab-image {
        max-width: 150px; /* Further reduce image size on small screens */
    }
}

/* General Section Styles */
#why-choose-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }
  
  #why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section Header */
  #why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff0000;
  }
  
  #why-choose-us p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Reasons Wrapper */
  .reason-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  /* Individual Reason Cards */
  .reason {
    flex: 0 0 30%; /* 3 reasons per row on large screens */
    margin: 20px 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Reason Heading */
  .reason h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff0000; /* Updated to red */
  }
  
  /* Reason Text */
  .reason p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .reason-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .reason {
      flex: 0 0 80%; /* Full width for smaller screens */
    }
  }  

  /* Promotions Section */
.promotions-section {
    background-color: #f9f9f9;
  }
  
  .promotions-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .promotions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .promotions-section p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Promotion Wrapper */
  .promotion-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
  }
  
  /* Individual Promotion Cards */
  .promotion {
    flex: 1 1 calc(33.333% - 20px); /* 3 promotions per row */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
  }
  
  .promotion:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Promotion Image */
  .promotion-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  /* Promotion Content */
  .promotion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff0000;
  }
  
  .promotion-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* CTA Button */
  .cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff0000;
    color: #fff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .promotion-wrapper {
      flex-direction: column;
    }
  
    .promotion {
      flex: 1 1 100%;
    }
  }  
  
  /* Payment Section */
.payment-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
  }
  
  .payment-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .payment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .payment-section p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Payment Wrapper */
  .payment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  /* Payment Content */
  .payment-content {
    flex: 1;
    max-width: 50%;
  }
  
  .payment-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff0000;
  }
  
  .payment-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .payment-content .payment-methods {
    list-style-type: disc;
    padding-left: 20px;
    color: #000;
  }
  
  .payment-methods li {
    margin-bottom: 10px;
  }
  
  /* Payment Image */
  .payment-image {
    flex: 1;
    max-width: 40%;
    text-align: center;
  }
  
  .payment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .payment-wrapper {
      flex-direction: column;
    }
  
    .payment-content,
    .payment-image {
      max-width: 100%;
      text-align: center;
    }
  
    .payment-image img {
      margin-top: 20px;
    }
  }  

/* General FAQ Section Styling */
#au-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #fff;
}

#au-faq h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

/* FAQ Item Styling */
.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #000;
}

/* FAQ Tab Button Styling */
.faq-tab {
    background-color: #320104;
    color: #fff;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-tab:hover {
    background-color: #ff0000;
}

.faq-tab.active {
    background-color: #ff0000;
}

/* FAQ Content Styling */
.faq-content {
    padding: 0 15px;
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-content p {
    margin: 15px 0;
}

/* Footer Styling */
.footer {
    background-color: #fff;
    color: #000;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    border-top: 3px solid #ff0000; 
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1 1 20%;
    margin: 10px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #320104;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ff0000;
  }
  
  /* Logo */
  .footer-logo {
    width: 150px;
  }
  
  /* Operation Hours */
  .footer-section p {
    margin: 5px 0;
    color: #320104;
  }
  
  /* Subscription Form */
  .subscribe-form {
    display: flex;
    flex-direction: column;
  }
  
  .subscribe-form input {
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .subscribe-form button {
    padding: 8px;
    background-color: #ff0000;
    border: none;
    color: #141414;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .subscribe-form button:hover {
    background-color: #320104;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #777;
    border-top: 2px solid #eeecec; 
    padding-top: 10px;
  }  
  
/* Responsive Design */
@media (max-width: 768px) {
    .casino-section {
        flex-direction: column;
        align-items: center;
    }

    .casino {
        width: 80%;
        margin-bottom: 1em;
    }

    nav ul li {
        display: block;
        margin: 0.5em 0;
    }
}

/* Best Casino Games Section */
#best-casinos {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }
  
  #best-casinos h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #best-casinos p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Casino Wrapper */
  .casino-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .casino {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .casino:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .casino img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
  }
  
  .casino h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #006fe4;
  }
  
  .casino p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .casino {
      flex: 1 1 100%;
    }
  }
  