/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #1e1e2f;
    color: #f0f0f0;
}

/* General Header Styles */
header {
    background: #24243d;
    border-bottom: 2px solid #00d9ff;
    padding: 1em 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5em;
    color: #00d9ff;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2em;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 1em;
    color: #f0f0f0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d9ff;
}

/* Hamburger Menu Styles for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    background: #f0f0f0;
    height: 3px;
    width: 25px;
    display: block;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #24243d;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        border-top: 2px solid #00d9ff;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    }

    nav ul.open {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 1em 0;
        border-bottom: 1px solid #00d9ff;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Main Section */
main {
    max-width: 900px;
    margin: 2em auto;
    padding: 1em;
}

/* Pros and Cons Section */
.pros-cons {
    display: flex;
    gap: 2em;
    margin: 2em 0;
}

.pros, .cons {
    flex: 1;
    background: #24243d;
    border: 2px solid #00d9ff;
    border-radius: 8px;
    padding: 1.5em;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.pros h3, .cons h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #ff9900;
    text-align: center;
    border-bottom: 2px solid #ff9900;
    padding-bottom: 0.5em;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.pros li .icon {
    color: #00d9ff; /* Cyan for pros */
    font-weight: bold;
    font-size: 1.2em;
}

.cons li .icon {
    color: #ff9900; /* Orange for cons */
    font-weight: bold;
    font-size: 1.2em;
}

/* FAQ Section */
.faq-section {
    margin: 2em auto;
    padding: 1em 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8em;
    color: #00d9ff;
    margin-bottom: 1em;
}

.faq-item {
    margin-bottom: 1em;
    border-bottom: 1px solid #00d9ff;
    padding-bottom: 1em;
}

.faq-question {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff9900;
    cursor: pointer;
    padding: 0.5em 0;
    outline: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #f0f0f0;
}

.faq-answer {
    display: none;
    margin-top: 0.5em;
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* FAQ Answer Open Class */
.faq-answer.open {
    display: block;
}

/* Footer */
footer {
    background: #24243d;
    border-top: 2px solid #00d9ff;
    padding: 2em 1em;
    text-align: center;
    color: #f0f0f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top h4 {
    color: #00d9ff;
    font-size: 1.2em;
    margin-bottom: 1em;
}

.responsible-gaming-logos img {
    margin: 0 10px;
    height: 40px;
    width: auto;
}

.help-link {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    margin: 1em 0;
    display: inline-block;
}

.contact {
    font-size: 1.1em;
    margin-top: 0.5em;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #f0f0f0;
}

.footer-links a {
    text-decoration: none;
    color: #ff9900;
    font-size: 0.9em;
    margin: 0 0.5em;
}
/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-bottom: 1em;
}

/* H1: Main Page Title */
h1 {
    font-size: 2.5em;
    color: #00d9ff; /* Bright cyan */
    text-align: center;
    text-transform: uppercase;
    border-bottom: 3px solid #00d9ff;
    display: inline-block;
    margin: 0 auto 1.5em;
    padding-bottom: 0.2em;
}

/* H2: Section Titles */
h2 {
    font-size: 2em;
    color: #ff9900; /* Vibrant orange */
    text-align: center;
    text-transform: uppercase;
    border-left: 5px solid #00d9ff;
    padding-left: 15px;
    margin-bottom: 1em;
}

/* H3: Subheadings */
h3 {
    font-size: 1.8em;
    color: #f0f0f0; /* Light gray */
    text-align: left;
    position: relative;
    margin-bottom: 1em;
}

h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: #00d9ff; /* Cyan underline effect */
}

/* H4: Smaller Section Titles */
h4 {
    font-size: 1.5em;
    color: #00d9ff; /* Cyan */
    text-align: left;
    font-weight: 600;
    border-left: 3px solid #ff9900; /* Orange border */
    padding-left: 10px;
    margin-bottom: 0.8em;
}

/* H5: Highlighted Headings */
h5 {
    font-size: 1.3em;
    color: #ff9900; /* Orange */
    text-align: left;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.6em;
}

/* H6: Smallest Headings */
h6 {
    font-size: 1.1em;
    color: #f0f0f0; /* Light gray */
    text-align: left;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5em;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.logo span .home-link {
    text-decoration: none;
    color: #00d9ff; /* Cyan for link */
    transition: color 0.3s ease;
}

.logo span .home-link:hover {
    color: #f0f0f0; /* Light gray on hover */
}
