/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    color: #fff;
    background-color: #121212;
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    opacity: 0.8;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* Header and Navigation */
header {
    background-color: #121212;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0px;
}

.nav-links li {
    margin-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #121212;
    z-index: 1001;
    transition: 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
}

/* Hero Section */
.hero {
    background: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.google-play-btn {
    display: inline-block;
}

.google-play-btn img {
    height: 60px;
}

/* Features Section */
.features .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
}

/* Benefits Section */
.benefits .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-content {
    flex: 1;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
}

.benefits-content ul {
    list-style: none;
}

.benefits-content li {
    margin-bottom: 20px;
}

.benefits-content h3 {
    margin-bottom: 5px;
}

/* Game Rules Section */
.game-rules .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.game-rules-content {
    flex: 1;
}

.game-rules-image {
    flex: 1;
}

.game-rules-image img {
    width: 100%;
    border-radius: 8px;
}

.game-rules-content ol {
    margin-bottom: 30px;
}

.game-rules-content li {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card h3 {
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact h2 {
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background-color: #1e1e1e;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #E9B949;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    font-family: 'PT Sans', sans-serif;
}

.submit-btn:hover {
    background-color: #c99d3b;
}

.contact-email {
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e1e1e;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.cookie-btn.accept {
    background-color: #E9B949;
    color: #000;
}

.cookie-btn.manage {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features .container,
    .benefits .container,
    .game-rules .container {
        flex-direction: column;
    }

    .feature-image,
    .benefits-image,
    .game-rules-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}