/* 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: #000 ;
    padding: 1em;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav .toggle-icon {
    display: none;
    font-size: 30px;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Promotion Bar Styles */
.promo-bar {
    background-color: #006fe4;
    color: #fff;
    padding: 0.5em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600; /* Semi-bold */
}

.promo-bar .notice-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* 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: #333;
    }

    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;
    }
}

.promo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55vh;
    background-image: url('/assets/winstreak9-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 5%;
    flex-direction: row; /* Default for desktop */
}

.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;
    }
} 

.two-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #01032e;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; /* Center the row horizontally */
  }

.col-md-6 {
    flex: 0 0 50%; /* Adjust width as needed */
    max-width: 50%;
    padding: 20px;
    box-sizing: border-box; 
    text-align: center;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .col-md-6 {
      flex: 0 0 100%; 
      max-width: 100%;
      margin-bottom: 40px; /* Add margin-bottom for spacing */
    }
  
    .order-md-1 {
      order: 1; 
    }
  
    .order-md-2 {
      order: 2; 
    }
  }

/* Header Section */
header {
    text-align: center;
    padding: 2em;
    background-color: #000000; 
    color: #f4f100;
}

header h1 {
    margin-top: 30px;
    font-size: 32px;
    text-align: center;
}

.intro-text {
    font-size: 1em;
    margin: 1em 0;
    line-height: 1.6;
}

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

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

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

/* General Casino Section Styling */
.casino-section {
    max-width: 1200px; /* Limit the section width */
    margin: 0 auto; /* Center the section */
    padding: 20px;
    background-color: #000; /* Set the background to black */
    color: #006fe4; /* Set the text color to golden/yellow */
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Create 5 equal columns */
    gap: 20px; /* Space between items */
}

.casino {
    background-color: #333; /* Dark background for casino boxes */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.casino img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.casino-info h2 {
    font-size: 18px;
    color: #f4f100; /* Set heading text color to golden/yellow */
    margin-bottom: 10px;
}

.casino-info p {
    font-size: 14px;
    color: #f4f100; /* Set paragraph text color to golden/yellow */
    margin-bottom: 15px;
}

.play-now-btn {
    background-color: #f4f100; /* Golden button background */
    color: #000; /* Black text on the button */
    padding: 10px 20px;
    border: 2px solid #dfc715;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-now-btn:hover {
    background-color: #000;
    color: #dfc715; /* Golden text when hovered */
    border-color: #dfc715;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .casino-grid {
        grid-template-columns: 1fr; /* Stack items in one column on mobile */
        justify-items: center; /* Center items horizontally */
    }

    .casino {
        max-width: 90%; /* Ensure items are not too wide on small screens */
    }
}

/* 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 Styling */
#tab-game-categories {
    padding: 20px;
    background-color: #006fe4;
}

.tab-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Buttons */
.tab-buttons {
    flex: 1;
    max-width: 200px;
    margin-right: 20px;
}

.tab-btn {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #01032e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-btn:hover {
    background-color: #01032e;
}

.tab-btn.active {
    background-color: #01032e;
}

/* Tab Content Styling */
.tab-content {
    color: #fff;
    flex: 3;
    background-color: #01032e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #f4f100;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text inside the tab content */
}

/* Image Styling */
.tab-image {
    width: 150px; /* Smaller width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 15px; /* Space below the image */
    border-radius: 10px; /* Add rounded corners */
}

/* Tab Item Styling */
.tab-item h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.tab-item p {
    font-size: 1em;
    line-height: 1.5;
}

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

/* Responsive Styling for Mobile */
@media (max-width: 768px) {
    .tab-container {
        flex-direction: row; /* Keep tabs and content side by side */
    }

    .tab-buttons {
        flex: 1;
        max-width: 150px;
    }

    .tab-content {
        flex: 2;
        padding: 15px;
    }

    .tab-btn {
        font-size: 14px; /* Adjust button text size for smaller screens */
    }
}

/* 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: #006fe4;
    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: #006fe4;
}

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

/* 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 */
footer {
    text-align: center;
    padding: 1em;
    background-color: #006fe4; /* Set footer background to black */
    color: #fff; /* Set footer text color to golden/yellow */
    font-size: 0.9em;
}

/* 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;
    }
}

/* Center the Title */
#best-casinos h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #f4f100; /* Golden/yellow title color */
}

/* Container Styling for the 3 Columns */
#best-casinos .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wrapper for Casino Columns to Center Them */
#best-casinos .casino-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Optional: Adjust gap between columns */
    width: 100%;
    max-width: 1200px; /* Optional: Maximum width for the container */
    align-content: center;
  }
  
  /* Each Casino Column Styling */
  #best-casinos .casino {
    flex: 1 1 30%; /* Allows for 3 columns on larger screens */
    box-sizing: border-box;
    padding: 20px;

    background-color: white; /* Add white background color */
    border: 1px solid black; /* Add black border */
  }