body {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

.hero-title {
    font-size: 2.5rem; /* Mobile default */
}

.site-title {
    font-size: 1.25rem; /* Mobile default */
}

.section-title {
    font-size: 1.8rem; /* Mobile default */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem; /* Tablet */
    }
    .site-title {
        font-size: 1.8rem; /* Tablet */
    }
    .section-title {
        font-size: 2.2rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem; /* Desktop */
    }
    .site-title {
        font-size: 2.2rem; /* Desktop */
    }
    .section-title {
        font-size: 2.5rem; /* Desktop */
    }
}

.game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card img {
    flex-shrink: 0;
}

.game-card .p-6 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-card .play-game-btn {
    margin-top: auto; /* Pushes the button to the bottom */
}

/* Ensure images in footer logos are responsive and centered */
.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; /* Fixed width as per requirements */
    height: auto; /* Maintain aspect ratio */
}

.footer-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Prevent body scroll when modal is open */
body.no-scroll {
    overflow: hidden;
}.consentTunnelGrid {
    /* Main container padding */
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.consentTunnelGrid h1 {
    /* Heading 1 styles: Not too large, clear and prominent */
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 15px;
}

.consentTunnelGrid h2 {
    /* Heading 2 styles: Slightly smaller than h1 */
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 12px;
}

.consentTunnelGrid h3 {
    /* Heading 3 styles: Good for sub-sections */
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 10px;
}

.consentTunnelGrid h4 {
    /* Heading 4 styles: More subtle, for minor divisions */
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 18px;
    margin-bottom: 8px;
}

.consentTunnelGrid h5 {
    /* Heading 5 styles: Smallest heading, often similar to body text but bolder */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 5px;
}

.consentTunnelGrid p {
    /* Paragraph styles: Standard readable text */
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0; /* Reset default browser top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

.consentTunnelGrid ul {
    /* Unordered list styles: Standard bullet points with padding */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 20px; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

.consentTunnelGrid li {
    /* List item styles: Spacing between list items */
    margin-bottom: 0.5em;
    line-height: 1.6;
}
