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

body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Set the background to black */
    color: #dfc715; /* 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: #ffd700;
    color: #000;
    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: 100px;
        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;
    }
}

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

.half-width-image {
    justify-content: center; /* Centers the image horizontally */
    margin-bottom: 20px;
}

.half-width-image img {
    width: 90%; /* Half the screen width */
    max-width: 1000px; /* Optional: Set a maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

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: #ffd700;
    color: #000000;
    padding: 15px 30px;
    font-size: 18px;
    border: 3px solid #dfc715;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #dfc715;
    color: #000000;
    border-color: #ffd700;
    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: #dfc715; /* 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: #ffd700; /* Set heading text color to golden/yellow */
    margin-bottom: 10px;
}

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

.play-now-btn {
    background-color: #ffd700; /* 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 */
    color: #fff; /* Set text color to golden/yellow */
    background-color: #000; /* Set background to black */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 45px; /* 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: #000;
}

.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: #ffd700;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

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

/* Tab Content Styling */
.tab-content {
    flex: 3;
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700;
    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: #000;
}

#au-faq h2 {
    text-align: center;
    color: #ffd700;
    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: #ffd700;
    color: #000;
    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: #ffd700;
}

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

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

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

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    background-color: #000; /* Set footer background to black */
    color: #dfc715; /* 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: #ffd700; /* 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;
   
