/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center; /* Centering all content */
}

.hero {
    padding: 40px;
}

h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
}

.age-restriction {
    padding: 20px;
    background-color: #222;
    margin-top: 20px;
}

.age-restriction .age-image {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.casino-reviews {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering content */
    justify-content: center;
}

.casino {
    background: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    width: 80%; /* Limit the width of the cards */
    max-width: 400px; /* Max width of each card */
    margin: 10px 0; /* Space between cards */
}

.casino img {
    max-width: 100%;
    height: auto;
}

.casino h3 {
    font-size: 1.8rem;
}

.btn {
    background-color: #1f82ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.why-choose-us {
    padding: 20px;
    text-align: center;
}

.why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-us li {
    font-size: 1.2rem;
    margin: 10px 0;
}

.regulations {
    padding: 30px;
    text-align: center;
    background-color: #222; /* Dark background to match the theme */
    border-radius: 10px; /* Rounded corners for the whole section */
    margin-top: 30px; /* Adds space between sections */
}

.regulation-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Increased gap for better spacing */
    margin-top: 20px; /* Adds space above the logos */
}

.regulation-logos a {
    display: inline-block; /* Makes the anchor tag behave like an inline element */
    transition: transform 0.3s ease-in-out; /* Smooth scale effect */
}

.regulation-logos a:hover {
    transform: scale(1.1); /* Slightly increase the size on hover */
}

.regulation-logos img {
    width: 70px; /* Slightly larger size for better visibility */
    height: 70px; /* Uniform size for all logos */
    border: 3px solid #fff; /* Thicker white border */
    border-radius: 12px; /* Rounded corners */
    object-fit: contain; /* Ensures logos maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth transformation on hover */
}

.regulation-logos a:hover img {
    transform: scale(1.05); /* Slight scaling effect on hover for the image */
}

.need-help {
    padding: 20px;
    background-color: #222;
    color: #fff;
}

.need-help h2 {
    font-size: 2rem;
}

.need-help p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.need-help ul {
    list-style-type: none;
    padding: 0;
}

.need-help ul li {
    margin: 10px 0;
}

.need-help a {
    color: #1f82ff;
    text-decoration: none;
    font-size: 1.2rem;
}

.need-help a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
}

footer .footer-links {
    margin-top: 10px;
}

footer .footer-links a {
    color: #1f82ff;
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: underline;
}
