body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #1a0000;
    color: #f0f0f0;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    color: #ff4d4d;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    color: #e0e0e0;
}

a {
    color: #ff4d4d;
    text-decoration: none;
}

a:hover {
    color: #ff1a1a;
}

.button {
    background-color: #ff4d4d;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    transition: background-color 0.3s ease;
}

.button:hover, .button:focus {
    background-color: #cc0000;
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ff4d4d;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Age Verification Modal */
#ageVerificationModal {
    background-color: #2a0000;
    border: 2px solid #ff4d4d;
    color: #f0f0f0;
    padding: 2rem;
    max-width: 500px;
    z-index: 9999;
}

#ageVerificationModal h2 {
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

#ageVerificationModal p {
    margin-bottom: 1.5rem;
}

.age-confirm-btn {
    margin: 0 0.5rem;
}

.age-confirm-btn.secondary {
    background-color: #555;
}

.age-confirm-btn.secondary:hover {
    background-color: #333;
}

.close-button {
    color: #f0f0f0;
}

/* Top Disclaimer Bar */
.top-disclaimer {
    background-color: #cc0000;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Header */
.header-main {
    background-color: #1a0000;
    padding: 1rem 0;
    border-bottom: 1px solid #330000;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-logo a {
    display: flex;
    align-items: center;
    color: #ff4d4d;
    font-size: 2rem;
    font-weight: 700;
}

.header-logo .logo-img {
    height: 40px;
    margin-right: 10px;
}

.header-logo .site-name {
    font-size: 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-logo .site-name {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .header-logo .site-name {
        font-size: 1.5rem;
    }
}

.main-navigation .menu a {
    color: #f0f0f0;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.main-navigation .menu a:hover {
    color: #ff4d4d;
}

.header-disclaimer {
    background-color: #330000;
    color: #f0f0f0;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    border: 1px solid #ff4d4d;
}

/* Off-canvas menu for mobile */
.off-canvas {
    background-color: #2a0000;
    color: #f0f0f0;
}

.off-canvas .menu a {
    color: #f0f0f0;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #330000;
}

.off-canvas .menu a:hover {
    background-color: #3a0000;
    color: #ff4d4d;
}

.menu-icon::after {
    background-color: #ff4d4d;
    box-shadow: 0 7px 0 #ff4d4d, 0 14px 0 #ff4d4d;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('media/media/hero-gaming-background_10.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-section .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-section .grid-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media screen and (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-button {
    background-color: #ff4d4d;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.hero-button:hover {
    background-color: #cc0000;
}

/* Articles Block (About Us, Why Choose Us, Responsible Gaming) */
.articles-block {
    padding: 4rem 0;
    background-color: #2a0000;
    border-bottom: 1px solid #330000;
}

.articles-block:nth-of-type(odd) {
    background-color: #1a0000;
}

.articles-block h3 {
    color: #ff4d4d;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.why-list, .responsible-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.why-list li, .responsible-list li {
    background-color: #330000;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
    border-left: 5px solid #ff4d4d;
    color: #e0e0e0;
}

.why-list li strong, .responsible-list li strong {
    color: #ff4d4d;
}

/* Rating Grid */
.rating-grid {
    padding: 4rem 0;
    background-color: #2a0000;
    border-bottom: 1px solid #330000;
}

.rating-card {
    display: flex;
    flex-direction: column;
    background-color: #330000;
    border: 1px solid #ff4d4d;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    color: #f0f0f0;
}

@media screen and (min-width: 768px) {
    .rating-card {
        flex-direction: row;
    }
}

.rating-card .card-image-wrapper {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a0000;
    border-bottom: 1px solid #ff4d4d;
}

@media screen and (min-width: 768px) {
    .rating-card .card-image-wrapper {
        width: 250px;
        height: auto;
        border-bottom: none;
        border-right: 1px solid #ff4d4d;
    }
}

.rating-card .card-logo {
    max-height: 80%;
    object-fit: contain;
}

.rating-card .card-content {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating-card h3 {
    color: #ff4d4d;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.rating-card p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.rating-card p strong {
    color: #ff4d4d;
}

.rating-stars .fa-star, .rating-stars .fa-star-half-stroke {
    color: #ffd700;
    margin-right: 2px;
}

.rating-card .visit-button {
    margin-top: 1rem;
    width: 100%;
}

.responsible-gaming-note {
    font-size: 0.85rem;
    color: #aaaaaa;
    margin-top: 0.5rem;
    text-align: center;
}

.offer-highlight {
    background-color: #4d0000;
    color: #ffcc00;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* FAQ Block */
.faq-block {
    padding: 4rem 0;
    background-color: #1a0000;
    border-bottom: 1px solid #330000;
}

.faq-item {
    background-color: #330000;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 5px solid #ff4d4d;
}

.faq-item h3 {
    color: #ff4d4d;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #e0e0e0;
}

/* Contact Form Block */
.contact-form-block {
    padding: 4rem 0;
    background-color: #2a0000;
    border-bottom: 1px solid #330000;
}

.contact-form-block label {
    color: #f0f0f0;
}

.contact-form-block input[type="text"],
.contact-form-block input[type="email"],
.contact-form-block textarea {
    background-color: #1a0000;
    border: 1px solid #ff4d4d;
    color: #f0f0f0;
    padding: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.contact-form-block input::placeholder,
.contact-form-block textarea::placeholder {
    color: #888;
}

.contact-form-block input:focus,
.contact-form-block textarea:focus {
    border-color: #ff1a1a;
    background-color: #0d0000;
    box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
}

.contact-form-block .help-text {
    color: #aaaaaa;
    font-size: 0.8rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.contact-form-block .submit-button {
    background-color: #ff4d4d;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1rem;
}

.contact-form-block .submit-button:hover {
    background-color: #cc0000;
}

/* Disclaimer Footer Block */
.disclaimer-footer-block {
    background-color: #0d0000;
    padding: 2rem 0;
    border-top: 2px solid #ff4d4d;
    color: #aaaaaa;
    font-size: 0.9rem;
    text-align: center;
}

.disclaimer-footer-block .disclaimer-text {
    margin: 0;
    padding: 1rem;
    background-color: #1a0000;
    border-radius: 8px;
    border: 1px solid #cc0000;
}

/* Footer */
.footer-main {
    background-color: #1a0000;
    color: #f0f0f0;
    padding: 3rem 0;
    border-top: 1px solid #330000;
}

.footer-main h4 {
    color: #ff4d4d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container a {
    display: flex;
    align-items: center;
    color: #ff4d4d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-container .footer-logo-img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo-container .site-name {
    font-size: 1.5rem;
}

.footer-main .copyright {
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-links {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
}

.footer-links a:hover {
    color: #ff4d4d;
}

.footer-org-logos {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #330000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-org-logos img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8);
}

.footer-org-logos img:hover {
    filter: brightness(1);
}

.age-restriction-icon {
    font-size: 2rem;
    color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .footer-main .cell {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .footer-logo-container {
        align-items: center;
    }
    .footer-links {
        text-align: center;
    }
}

/* Global adjustments for mobile */
@media screen and (max-width: 767px) {
    .grid-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        padding: 4rem 0;
        min-height: 400px;
    }

    .articles-block, .rating-grid, .faq-block, .contact-form-block {
        padding: 2rem 0;
    }

    .header-logo .logo-img {
        height: 30px;
    }

    .header-disclaimer {
        margin-top: 0.5rem;
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }

    .footer-main {
        padding: 2rem 0;
    }

    .footer-main h4 {
        font-size: 1.2rem;
    }

    .footer-logo-container a {
        font-size: 1.2rem;
    }

    .footer-logo-container .footer-logo-img {
        height: 25px;
    }

    .footer-org-logos img {
        max-width: 90px;
    }

    .age-restriction-icon {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
    .header-main .main-navigation {
        display: none; /* Hide desktop nav */
    }
    .header-main .menu-icon {
        display: block; /* Show burger menu */
    }
}
/*
 * New stock styles for common text elements within .policyScopeWrap.
 * These styles are designed to be readable and provide good spacing
 * without overly large font sizes for headings.
 */

.policyScopeWrap {
    /* Adds top margin and horizontal padding to the main content wrapper. */
    margin-top: 3rem; /* Provides space above the content */
    padding-left: 1.5rem; /* Padding on the left side */
    padding-right: 1.5rem; /* Padding on the right side */
    /* Optional: Add max-width for better readability on very wide screens */
    /* max-width: 800px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Headings */
.policyScopeWrap h1 {
    font-size: 2em; /* Moderate size for main heading */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Improved readability */
    margin-top: 1.8em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    color: #d8cccc; /* Darker text for headings */
}

.policyScopeWrap h2 {
    font-size: 1.7em;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    color: #d8cccc;
}

.policyScopeWrap h3 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    color: #d8cccc;
}

.policyScopeWrap h4 {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    color: #d8cccc;
}

.policyScopeWrap h5 {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1em;
    margin-bottom: 0.4em;
    color: #d8cccc;
}

/* Paragraphs */
.policyScopeWrap p {
    font-size: 1em; /* Base font size */
    line-height: 1.6; /* Good line spacing for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #d8cccc; /* Slightly lighter text for body */
}

/* Unordered Lists */
.policyScopeWrap ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 2em; /* Indentation for bullet points */
    color: #d8cccc;
}

/* List Items */
.policyScopeWrap li {
    font-size: 1em; /* Inherit or set explicitly */
    line-height: 1.6; /* Consistent line spacing */
    margin-bottom: 0.5em; /* Space between list items */
}
.footer-logo-container svg {
    width: 90px;
}
.off-canvas {
    padding-top: 80px;
}