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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: rgba(58, 45, 38, 1);
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-content {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    color: #333;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #f4d03f;
    color: #333;
}

.cookie-btn.decline {
    background: #f4d03f;
    color: #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    background: linear-gradient(90deg, #3A2D26 0%, #8F5937 100%);
border-bottom: 2px solid rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: unset;
}

.logo img {
    width: 32px;
    height: 32px;
}

.logo span {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f4d03f;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 70px;
    max-height: calc(100vh - 70px);
    height: auto;
    width: 100%;
    background: url('./images/hero.png') no-repeat top center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px;
    aspect-ratio: 430/267;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.google-play-btn {
    display: inline-block;
    width: 200px;
    transition: transform 0.3s ease;
}

.google-play-btn:hover {
    transform: scale(1.05);
}

.google-play-btn img {
    width: 100%;
    height: auto;
}

/* Game Description */
.game-description {
    padding: 60px 0;
    background: rgba(143, 89, 55, 1);
}

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

.description-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.description-text h2 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.description-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: url(./images/bg.png) no-repeat center;
    background-size: cover;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.cta-section p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    padding: 60px 0;
    background: rgba(58, 45, 38, 1);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 4px solid rgba(255, 230, 137, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #f4d03f;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #fff;
    line-height: 1.6;
}

/* Reviews */
.reviews {
    padding: 60px 0;
    background: rgba(143, 89, 55, 1);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffff;
    margin-bottom: 60px;
}

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

.review-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 4px solid rgba(255, 230, 137, 1);
}

.review-card p {
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-stars {
    color: #f4d03f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reviewer {
    color: #fff;
    font-weight: bold;
}

/* Screenshots */
.screenshots {
    padding: 60px 0;
    background: url(./images/bg-2.png) no-repeat center;
    background-size: cover;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.screenshots p {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.screenshot-item {
    border-radius: 12px;
    border: 4px solid rgba(255, 230, 137, 1);
    overflow: hidden;
    height: 180px;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

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

/* Contact */
.contact {
    padding: 60px 0;
    background: rgba(58, 45, 38, 1);
}

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

.contact-form h2 {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.contact-form input {
    padding: 15px 20px;
    border: 2px solid #f4d03f;
    border-radius: 25px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    padding: 15px 30px;
    background: #f4d03f;
    color: #2c1810;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.contact-character img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
  
    background:
linear-gradient(90deg, #3A2D26 0%, #8F5937 100%);

    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 1);
    padding-top: 16px;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4d03f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(90deg, #3A2D26 0%, #8F5937 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .hero {
      height: auto;
      
      padding: 20px 18px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-characters {
        flex-direction: column;
        gap: 20px;
    }
    
    .character {
        width: 100px;
        height: 100px;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .description-text h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .reviews h2 {
        font-size: 2rem;
    }
    
    .screenshots h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .google-play-btn img {
        width: 150px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

.policy {
  margin-top: 70px;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}

.policy h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  color: inherit;
  text-decoration: unset;
}