/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2C2E33; /* dark-graphite */
    color: #ECE8E1; /* light-beige */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Custom Color Variables for easier use with Tailwind */
.bg-dark-graphite {
    background-color: #2C2E33;
}
.text-dark-graphite {
    color: #2C2E33;
}
.bg-light-beige {
    background-color: #ECE8E1;
}
.text-light-beige {
    color: #ECE8E1;
}
.bg-deep-blue {
    background-color: #2F4E6F;
}
.text-deep-blue {
    color: #2F4E6F;
}
.bg-red-brick {
    background-color: #8B3A2E;
}
.text-red-brick {
    color: #8B3A2E;
}
.border-blue-400 {
    border-color: #60A5FA; /* Tailwind's default blue-400 */
}
.text-blue-400 {
    color: #60A5FA; /* Tailwind's default blue-400 */
}
.focus\:ring-blue-400:focus {
    --tw-ring-color: #60A5FA;
}
.focus\:border-blue-400:focus {
    border-color: #60A5FA;
}

/* Adaptive Typography for Headings */
h1 {
    font-size: 2.5rem; /* Default for mobile */
}
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem; /* Tablet */
    }
}
@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem; /* Desktop */
    }
}

h2 {
    font-size: 2rem; /* Default for mobile */
}
@media (min-width: 768px) {
    h2 {
        font-size: 2.8rem; /* Tablet */
    }
}
@media (min-width: 1024px) {
    h2 {
        font-size: 3.5rem; /* Desktop */
    }
}

h3 {
    font-size: 1.5rem; /* Default for mobile */
}
@media (min-width: 768px) {
    h3 {
        font-size: 1.8rem; /* Tablet */
    }
}
@media (min-width: 1024px) {
    h3 {
        font-size: 2.2rem; /* Desktop */
    }
}

/* Header & Navigation */
#main-header {
    background-color: #2C2E33;
    border-bottom: 2px solid #2F4E6F;
}

#main-header.scrolled {
    background-color: rgba(44, 46, 51, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#mobile-menu a {
    padding: 0.75rem 0;
    display: block;
}

/* Hero Section Specifics */
#hero {
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
}

/* Animation for Hero Text */
.hero-text-animate {
    opacity: 0;
    transform: translateY(20px);
}

/* Animations for sections on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card specific styles for equal height */
#top-games .flex-col {
    display: flex;
    flex-direction: column;
}
#top-games .flex-grow {
    flex-grow: 1;
}
#top-games img {
    height: 200px; /* Fixed height for images */
    object-fit: cover;
}

#player-reviews .flex-col {
    display: flex;
    flex-direction: column;
}
#player-reviews .flex-grow {
    flex-grow: 1;
}
#player-reviews img {
    height: 80px; /* Fixed height for avatars */
    width: 80px;
    object-fit: cover;
}

/* Contact form button */
form button {
    text-decoration: none !important;
}

/* Cookie Banner and Modal */
#cookie-banner,
#cookie-modal {
    font-family: 'Roboto', sans-serif;
}

#cookie-banner input[type="checkbox"],
#cookie-modal input[type="checkbox"] {
    accent-color: #60A5FA;
}

#cookie-modal .max-h-\[90vh\] {
    max-height: 90vh;
}

#cookie-modal .overflow-y-auto {
    overflow-y: auto;
}

/* Email word break */
.word-break-all {
    word-break: break-all;
}
/* Parent container styles for .consentTunnelGrid */
.consentTunnelGrid {
    padding-top: 32px; /* Top padding for the main content area */
    padding-inline: 24px; /* Side padding for the main content area (left and right) */
}

/* Heading styles within .consentTunnelGrid */
.consentTunnelGrid h1 {
    font-size: 24px; /* Moderate font size for H1 */
    line-height: 1.2; /* Improved readability */
    margin-top: 28px; /* Space above heading */
    margin-bottom: 16px; /* Space below heading */
    font-weight: 600; /* Slightly bolder than normal */
}

.consentTunnelGrid h2 {
    font-size: 20px; /* Moderate font size for H2 */
    line-height: 1.3;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.consentTunnelGrid h3 {
    font-size: 18px; /* Moderate font size for H3 */
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.consentTunnelGrid h4 {
    font-size: 16px; /* Standard paragraph size, but bold for H4 */
    line-height: 1.5;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.consentTunnelGrid h5 {
    font-size: 14px; /* Slightly smaller than paragraph, but bold for H5 */
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Paragraph styles within .consentTunnelGrid */
.consentTunnelGrid p {
    font-size: 16px; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles within .consentTunnelGrid */
.consentTunnelGrid ul {
    list-style-type: disc; /* Default disc bullets */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 24px; /* Indentation for list items */
}

/* List item styles within .consentTunnelGrid */
.consentTunnelGrid li {
    font-size: 16px; /* List item font size, matches paragraph */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 0.5em; /* Space between list items */
}

/* Remove bottom margin from the last list item to prevent extra space */
.consentTunnelGrid li:last-child {
    margin-bottom: 0;
}
footer .flex{
    flex-wrap: wrap;
    justify-content: center;
}