/* General Styles */
:root {
    --color-primary-green: #39FF14; /* Bright lime green for accents */
    --color-dark-green: #0A4F0A; /* Darker green for backgrounds/elements */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-light-grey: #E0E0E0;
    --color-dark-grey: #333333;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-light-grey); /* Default text color */
    background-color: var(--color-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8em;
    color: var(--color-primary-green);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary-green), transparent);
    margin: 15px auto 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1em;
    color: var(--color-light-grey);
}

a {
    color: var(--color-primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-white);
}

button {
    cursor: pointer;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary-green);
    color: var(--color-black);
    border: 2px solid var(--color-primary-green);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    border: 2px solid var(--color-dark-grey);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    border-color: var(--color-primary-green);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-dark-green);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.company-name {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--color-primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding-top: 80px; /* To account for fixed header */
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 15px var(--color-primary-green);
    color: var(--color-white);
}

.hero-content .tagline {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: var(--color-light-grey);
}

.scroll-to-game {
    padding: 15px 35px;
    font-size: 1.3em;
}

/* Game Play Section */
.game-play-section {
    background-color: var(--color-dark-grey);
    text-align: center;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
    border-radius: 10px;
    
}

.game-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}


.game-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.game-poster-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.game-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.poster-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.poster-content h3 {
    font-family: var(--font-heading);
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--color-primary-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

.poster-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--color-light-grey);
}

.play-button {
    padding: 15px 40px;
    font-size: 1.4em;
}

.play-button i {
    margin-right: 10px;
}

/* About Game Section */
.about-game-section {
    background-color: var(--color-black);
}

.about-game-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-game-content .text-block {
    flex: 2;
    font-size: 1.1em;
    color: var(--color-light-grey);
}

.about-game-content .text-block h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-green);
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-game-content .text-block p {
    margin-bottom: 15px;
}

.about-game-content .text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-game-content .text-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about-game-content .text-block ul li::before {
    content: '\2022'; /* Bullet point */
    color: var(--color-primary-green);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -3px;
}

.about-game-content .image-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-game-content .responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-game-content .responsive-img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background-color: var(--color-dark-green);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(0, 0, 0, 0.7);
    border-color: var(--color-primary-green);
}

.feature-icon {
    font-size: 3.5em;
    color: var(--color-primary-green);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.6em;
    color: var(--color-white);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1em;
    color: var(--color-light-grey);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-dark-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--color-primary-green);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--color-light-grey);
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--color-primary-green);
    font-size: 0.95em;
}

/* Company Stats Section */
.company-stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
}

.company-stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background-color: rgba(57, 255, 20, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-primary-green);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3.5em;
    color: var(--color-primary-green);
    margin-bottom: 15px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3em;
    font-weight: bold;
    color: var(--color-white);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1em;
    color: var(--color-light-grey);
}

/* Footer */
.main-footer {
    background-color: var(--color-dark-grey);
    color: var(--color-light-grey);
    padding: 50px 0 30px;
    border-top: 1px solid var(--color-dark-green);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.logo-footer {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand .company-name {
    font-size: 2em;
    margin-bottom: 15px;
    display: block;
}

.copyright {
    font-size: 0.9em;
    color: rgba(224, 224, 224, 0.7);
}

.footer-links h3,
.footer-social h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-green);
    font-size: 1.4em;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-light-grey);
    font-size: 1em;
}

.footer-links a:hover {
    color: var(--color-primary-green);
}

.social-icons a {
    color: var(--color-light-grey);
    font-size: 1.8em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-primary-green);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--color-primary-green);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95em;
    color: var(--color-light-grey);
}

.cookie-banner a {
    color: var(--color-primary-green);
    text-decoration: underline;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5em;
    }

    .logo-link{
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content .tagline {
        font-size: 1.3em;
    }
    .section-title {
        font-size: 2.2em;
    }
    .about-game-content {
        flex-direction: column;
    }
    .about-game-content .image-block {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-game-content .responsive-img {
        max-width: 48%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand,
    .footer-links,
    .footer-social {
        min-width: unset;
        width: 100%;
    }
    .footer-social .social-icons {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 768px) {
    .testimonials-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content .tagline {
        font-size: 1.1em;
    }
    .scroll-to-game {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.5em;
    }

    .main-header{
        position: relative;
    }
    .section-description {
        font-size: 1em;
    }
    .poster-content h3 {
        font-size: 2.2em;
    }
    .poster-content p {
        font-size: 1em;
    }
    .play-button {
        padding: 12px 30px;
        font-size: 1.2em;
    }
    .about-game-content .text-block {
        font-size: 1em;
    }
    .about-game-content .text-block h3 {
        font-size: 1.5em;
    }
    .about-game-content .responsive-img {
        max-width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content .tagline {
        font-size: 0.9em;
    }
    .company-name {
        font-size: 1.5em;
    }
    .cookie-banner {
        width: 90%;
        left: 5%;
        transform: translateX(0);
        bottom: 10px;
        padding: 15px 20px;
    }
    .cookie-banner .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-banner button {
        width: 100%;
    }
}/* Styles for the legal content block */
.legalDomeBlock {
    padding-top: 60px; /* Top padding for the block */
    padding-bottom: 60px; /* Bottom padding for the block */
    padding-left: 20px; /* Left padding for the block */
    padding-right: 20px; /* Right padding for the block */
    max-width: 900px; /* Maximum width for readability */
    margin: 0 auto; /* Center the block horizontally */
    color: var(--color-light-grey); /* Default text color within the block */
    font-family: var(--font-body); /* Default font for the block content */
}

.legalDomeBlock h1 {
    font-family: var(--font-heading); /* Heading font family */
    font-size: 2em; /* Heading 1 font size (not too large) */
    color: var(--color-white); /* Heading 1 color */
    margin-top: 40px; /* Top margin for heading 1 */
    margin-bottom: 20px; /* Bottom margin for heading 1 */
    line-height: 1.2; /* Line height for heading 1 */
}

.legalDomeBlock h2 {
    font-family: var(--font-heading); /* Heading font family */
    font-size: 1.7em; /* Heading 2 font size */
    color: var(--color-white); /* Heading 2 color */
    margin-top: 35px; /* Top margin for heading 2 */
    margin-bottom: 18px; /* Bottom margin for heading 2 */
    line-height: 1.3; /* Line height for heading 2 */
}

.legalDomeBlock h3 {
    font-family: var(--font-heading); /* Heading font family */
    font-size: 1.4em; /* Heading 3 font size */
    color: var(--color-white); /* Heading 3 color */
    margin-top: 30px; /* Top margin for heading 3 */
    margin-bottom: 15px; /* Bottom margin for heading 3 */
    line-height: 1.4; /* Line height for heading 3 */
}

.legalDomeBlock h4 {
    font-family: var(--font-heading); /* Heading font family */
    font-size: 1.2em; /* Heading 4 font size */
    color: var(--color-white); /* Heading 4 color */
    margin-top: 25px; /* Top margin for heading 4 */
    margin-bottom: 12px; /* Bottom margin for heading 4 */
    line-height: 1.5; /* Line height for heading 4 */
}

.legalDomeBlock h5 {
    font-family: var(--font-heading); /* Heading font family */
    font-size: 1.1em; /* Heading 5 font size */
    color: var(--color-white); /* Heading 5 color */
    margin-top: 20px; /* Top margin for heading 5 */
    margin-bottom: 10px; /* Bottom margin for heading 5 */
    line-height: 1.6; /* Line height for heading 5 */
}

.legalDomeBlock p {
    font-family: var(--font-body); /* Paragraph font family */
    font-size: 1.1em; /* Paragraph font size */
    color: var(--color-light-grey); /* Paragraph text color */
    margin-bottom: 1em; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for paragraphs */
}

.legalDomeBlock ul {
    font-family: var(--font-body); /* List font family */
    list-style: disc; /* Default disc bullet style */
    margin-top: 1em; /* Top margin for unordered lists */
    margin-bottom: 1em; /* Bottom margin for unordered lists */
    padding-left: 25px; /* Left padding for list indentation */
    color: var(--color-light-grey); /* Default list item color */
}

.legalDomeBlock ol {
    font-family: var(--font-body); /* List font family */
    list-style: decimal; /* Default decimal number style */
    margin-top: 1em; /* Top margin for ordered lists */
    margin-bottom: 1em; /* Bottom margin for ordered lists */
    padding-left: 25px; /* Left padding for list indentation */
    color: var(--color-light-grey); /* Default list item color */
}

.legalDomeBlock ul li,
.legalDomeBlock ol li {
    font-size: 1.1em; /* List item font size */
    margin-bottom: 0.5em; /* Bottom margin for list items */
    line-height: 1.6; /* Line height for list items */
}

.legalDomeBlock a {
    color: var(--color-primary-green); /* Link color */
    text-decoration: underline; /* Underline links */
}

.legalDomeBlock a:hover {
    color: var(--color-white); /* Link hover color */
    text-decoration: none; /* Remove underline on hover */
}
