/* Base styles */
:root {
    --primary-color: #9c27b0;
    --primary-dark: #7b1fa2;
    --primary-light: #ba68c8;
    --secondary-color: #3f51b5;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-bg: linear-gradient(135deg, #9c27b0, #3f51b5);
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'MedievalSharp', cursive;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Cookie notice */
.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    display: none;
}

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

.cookie-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-box h2 {
    font-family: 'MedievalSharp', cursive;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cookie-box p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: #f5f5f5;
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
}

/* Header */
.site-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo span {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.5rem;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: all 0.3s ease;
}


.hero-banner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-logo {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.game-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-banner .store-buttons {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin-top: auto;
    margin-bottom: 3rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage-icon img {
    height: 60px;
    width: auto;
}

.advantage-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.play-now-banner {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.play-now-image {
    flex: 1;
}

.play-now-text {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.play-now-text h3 {
    margin-bottom: 1.5rem;
}

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

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: var(--text-dark);
    box-shadow: var(--box-shadow);
}

.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.gallery-title {
    margin-top: 3rem;
}

.gallery-description {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

input, button {
    padding: 1rem;
    border-radius: var(--border-radius);
    border: none;
}

input {
    background-color: #fff;
    color: var(--text-dark);
}

button {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-card.wide {
        grid-column: span 1;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-banner {
        height: 80vh;
    }

    .hero-content {
        flex-direction: column;
    }
    
    .play-now-banner {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section {
    padding: 4rem 0;
    background: #fff;
    color: var(--text-dark);
}

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

.thank-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}