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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.google-play {
    display: inline-block;
    margin-top: 20px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    background-color: #4FBEB4;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #3a9d93;
    transform: translateY(-2px);
}

.btn .arrow {
    margin-left: 8px;
}

.btn-secondary {
    background-color: transparent;
    color: #2D5F59;
    border: 1px solid #2D5F59;
}

.btn-secondary:hover {
    background-color: #eaf8f6;
}

/* Header */
.header {
    background-color: #2D5F59;
    padding: 20px 0;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: #69BFB6;
    background-image: linear-gradient(to bottom, #69BFB6, #a7dcd6);
    padding: 60px 0;
    color: #333;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-info p {
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews {
    background-color: #F0FAFE;
    padding: 60px 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

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

.short-desc, .desc {
    margin-bottom: 15px;
}

.review-quote, .player-quote, .user-comment, .review-excerpt {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.our-review {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

/* Review Process Section */
.review-process {
    padding: 60px 0;
    background-color: white;
}

.review-process h2 {
    text-align: center;
    margin-bottom: 20px;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background-color: #E9F5F3;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.icon {
    background-color: #2D5F59;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.process-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Detailed Review */
.detailed-review {
    background-color: #F0FAFE;
    padding: 60px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.game-details {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.game-details ul {
    list-style: none;
}

.game-details li {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}

.game-details li strong {
    min-width: 120px;
    display: inline-block;
}

.review-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-section {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.review-section h3 {
    margin-bottom: 15px;
    color: #2D5F59;
}

.review-section ul {
    list-style: disc;
    padding-left: 20px;
}

.review-section li {
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background-color: white;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-invite {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.community-invite h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.community-invite p {
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    padding: 30px 0;
}

.cookie-content h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 800px;
}

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

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }
    
    .review-sections {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: space-between;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.main-section {
    padding: 60px 0;
}

.main-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}