body {
    font-family: 'Poppins', sans-serif;
    background-color: #0F0F1A;
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #E94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD700;
}

.button {
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button.primary {
    background-color: #E94560;
    color: #FFFFFF;
    border: 1px solid #E94560;
}

.button.primary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #FFD700;
}

.button.secondary {
    background-color: #33334F;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.button.secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #FFD700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #CCCCCC;
}

.grid-container {
    max-width: 1200px;
}

.text-center {
    text-align: center;
}

.align-center {
    justify-content: center;
}

.header-section {
    background-color: #1A1A2E;
    padding: 1rem 0;
    border-bottom: 1px solid #2A2A4A;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-logo:hover {
    color: #FFD700;
}

.logo-img {
    height: 40px;
    width: auto;
}

.main-navigation .menu {
    background-color: transparent;
}

.main-navigation .menu li a {
    color: #E0E0E0;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-navigation .menu li a:hover {
    color: #FFD700;
    background-color: transparent;
}

.header-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2A2A4A;
}

.header-disclaimer p {
    font-size: 0.85rem;
    color: #CCCCCC;
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.9) 0%, rgba(15, 15, 26, 0.5) 50%, rgba(15, 15, 26, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    max-width: 900px;
}

.hero-features li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features i {
    color: #FFD700;
    font-size: 1.5rem;
}

.play-now-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-section, .game-selection-section, .responsible-play-section, .testimonials-section, .contact-section, .disclaimer-block {
    padding: 4rem 0;
    background-color: #1A1A2E;
    border-top: 1px solid #2A2A4A;
}

.about-section h2, .game-selection-section h2, .responsible-play-section h2, .testimonials-section h2, .contact-section h2 {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    max-width: 800px;
}

.about-features li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E0E0E0;
}

.about-features i {
    color: #E94560;
    font-size: 1.4rem;
}

.game-card-wrapper {
    margin-bottom: 2rem;
}

.game-card {
    background-color: #2A2A4A;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.game-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.game-link:hover {
    color: inherit;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #33334F;
}

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

.game-title {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 0.75rem;
}

.game-description {
    font-size: 0.95rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.star-rating {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.star-rating i {
    margin-right: 2px;
}

.player-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 1rem;
    border-left: 3px solid #E94560;
    padding-left: 0.75rem;
}

.play-game-btn {
    width: 100%;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-modal-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0F0F1A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(233, 69, 96, 0.8);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1010;
    transition: background-color 0.3s ease;
}

.close-modal-btn:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.responsible-card {
    background-color: #2A2A4A;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.responsible-card i {
    font-size: 3rem;
    color: #E94560;
    margin-bottom: 1rem;
}

.responsible-card h3 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.responsible-card p {
    font-size: 0.95rem;
    color: #CCCCCC;
}

.support-text {
    margin-top: 2rem;
    font-size: 1rem;
    color: #CCCCCC;
}

.testimonials-section {
    background-color: #0F0F1A;
}

.testimonial-card-wrapper {
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: #2A2A4A;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #E94560;
}

.testimonial-card .player-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 1rem;
    position: relative;
    padding-top: 0.5rem;
}

.testimonial-card .player-quote i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.3);
}

.player-name {
    font-weight: 600;
    color: #FFD700;
    font-size: 0.95rem;
}

.contact-section {
    background-color: #1A1A2E;
}

.contact-form-container {
    background-color: #2A2A4A;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.contact-form-container h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact-form-container .lead {
    margin-bottom: 2rem;
}

.contact-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #E0E0E0;
}

.contact-form-container input[type="text"], 
.contact-form-container input[type="email"], 
.contact-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #33334F;
    border-radius: 0.5rem;
    background-color: #1A1A2E;
    color: #E0E0E0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container input[type="text"]:focus, 
.contact-form-container input[type="email"]:focus, 
.contact-form-container textarea:focus {
    border-color: #E94560;
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.3);
    outline: none;
}

.contact-form-container input::placeholder, 
.contact-form-container textarea::placeholder {
    color: #888888;
}

.form-error {
    color: #E94560;
    font-size: 0.85rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
    display: none;
}

.contact-form-container .button {
    margin-top: 1rem;
}

.disclaimer-block {
    background-color: #2A2A4A;
    padding: 3rem 0;
    text-align: center;
    border-top: 5px solid #E94560;
    border-bottom: 1px solid #33334F;
}

.disclaimer-content {
    background-color: #1A1A2E;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid #E94560;
}

.disclaimer-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.disclaimer-content h3 {
    color: #E94560;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.footer-section {
    background-color: #0F0F1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid #2A2A4A;
}

.footer-top {
    padding-bottom: 2rem;
    border-bottom: 1px solid #2A2A4A;
    margin-bottom: 1.5rem;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
}

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

.copyright-text {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 0.5rem;
}

.footer-links .menu {
    background-color: transparent;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links .menu li a {
    color: #CCCCCC;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-links .menu li a:hover {
    color: #FFD700;
}

.footer-logos {
    padding: 1.5rem 0;
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
}

.footer-org-logo {
    max-width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.age-icon {
    max-width: 60px;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid #2A2A4A;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 0;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    align-content: center;
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-verification-content {
    background-color: #1A1A2E;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    max-width: 500px;
    width: 90%;
    border: 2px solid #E94560;
    margin: 0 auto;
}

.age-verification-content h2 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.age-verification-content p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.age-verification-content .button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.age-verification-content .button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1A2E;
    color: #E0E0E0;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: transform 0.3s ease-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-message p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-buttons .button {
    margin-left: 0.75rem;
}

.cookie-settings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1600;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

.cookie-settings-modal-content {
    background-color: #2A2A4A;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    width: 90%;
    color: #E0E0E0;
}

.cookie-settings-modal-content h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.cookie-settings-modal-content p {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #33334F;
    padding-bottom: 1.5rem;
}

.cookie-category:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.75rem;
    vertical-align: middle;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #E94560;
}

.cookie-category label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
    vertical-align: middle;
}

.cookie-category p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.85rem;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-content .lead {
        font-size: 1.1rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    .main-navigation .menu {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .main-navigation .menu li a {
        padding: 0.5rem 1rem;
    }
    .header-disclaimer {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    .footer-top .cell {
        margin-bottom: 1.5rem;
    }
    .footer-top .cell:last-child {
        margin-bottom: 0;
    }
    .footer-links .menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-org-logo {
        max-width: 80px;
    }
    .age-icon {
        max-width: 40px;
    }
    .cookie-banner .grid-x {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-buttons .button {
        margin: 0 0.5rem;
    }
    .cookie-message p {
        font-size: 0.85rem;
    }
    .contact-form-container {
        padding: 2rem;
    }
    .disclaimer-content {
        padding: 1.5rem;
    }
    .disclaimer-icon {
        font-size: 2.5rem;
    }
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
}
/*
 * Base styles for the .infoGuardBlock container
 * Provides general padding for content inside.
 */
.infoGuardBlock {
    padding-top: 2rem;    /* Top padding for the block */
    padding-left: 1.5rem; /* Left padding for the block */
    padding-right: 1.5rem;/* Right padding for the block */
    padding-bottom: 2rem; /* Bottom padding for the block */
    /* Add any other base styles for the block itself if needed, e.g., background, border */
}

/*
 * Heading styles within .infoGuardBlock
 * Font sizes are moderate, not overly large, with appropriate spacing.
 */
.infoGuardBlock h1 {
    font-size: 1.8rem;        /* Relatively small h1 font size */
    line-height: 1.2;         /* Standard line height for headings */
    font-weight: 700;         /* Bold font weight */
    margin-top: 2rem;         /* Space above the heading */
    margin-bottom: 1rem;      /* Space below the heading */
    color: #c7c6c6;              /* Darker text color for headings */
}

.infoGuardBlock h2 {
    font-size: 1.6rem;        /* Smaller h2 font size */
    line-height: 1.3;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: #c7c6c6;
}

.infoGuardBlock h3 {
    font-size: 1.4rem;        /* Smaller h3 font size */
    line-height: 1.4;
    font-weight: 500;
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    color: #c7c6c6;
}

.infoGuardBlock h4 {
    font-size: 1.2rem;        /* Smaller h4 font size */
    line-height: 1.5;
    font-weight: 500;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
    color: #c7c6c6;
}

.infoGuardBlock h5 {
    font-size: 1.1rem;        /* Smallest h5 font size, close to body text */
    line-height: 1.5;
    font-weight: 400;         /* Slightly less bold or normal */
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #c7c6c6;
}

/*
 * Paragraph styles within .infoGuardBlock
 * Sets a comfortable font size, line height, and bottom margin for readability.
 */
.infoGuardBlock p {
    font-size: 1rem;          /* Standard body text font size */
    line-height: 1.6;         /* Optimal line height for readability */
    margin-bottom: 1rem;      /* Space between paragraphs */
    color: #c7c6c6;              /* Default text color */
}

/*
 * Unordered list styles within .infoGuardBlock
 * Provides indentation and spacing for lists.
 */
.infoGuardBlock ul {
    list-style-type: disc;    /* Default bullet style */
    margin-top: 1rem;         /* Space above the list */
    margin-bottom: 1rem;      /* Space below the list */
    padding-left: 1.5rem;     /* Indentation for list items */
}

/*
 * List item styles within .infoGuardBlock
 * Adds spacing between individual list items.
 */
.infoGuardBlock li {
    font-size: 1rem;          /* Standard font size for list items */
    line-height: 1.6;         /* Line height for multi-line list items */
    margin-bottom: 0.5rem;    /* Space between list items */
    color: #c7c6c6;              /* Default text color */
}

/*
 * Remove top margin for the very first heading/paragraph
 * if it directly follows the .infoGuardBlock container.
 */
.infoGuardBlock > h1:first-child,
.infoGuardBlock > h2:first-child,
.infoGuardBlock > h3:first-child,
.infoGuardBlock > h4:first-child,
.infoGuardBlock > h5:first-child,
.infoGuardBlock > p:first-child,
.infoGuardBlock > ul:first-child {
    margin-top: 0;
}
.header-section .grid-container {
    max-width: unset;
}
@media screen and (width < 900px) {
.header-section .cell.shrink {
    display: none;
}
.hero-section {
    padding: 53px 0;
    height: unset;
}
.hero-section h1 {
   font-size: clamp(2rem, 7vw, 4rem);
}
}
