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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    /* background: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #75d579, #5ea161);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.google-play-btn {

}

.google-play-btn:hover {
    transform: translateY(-2px);
}

.google-play-btn img {
    /* width: ;
    height: 24px; */
}

/* About Section */
.about {
    background: #4CAF50;
    color: white;
    padding: 6rem 2rem;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.game-showcase {
    display: grid;

    gap: 1rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

/* Features Section */
.features {
    background: #2E7D32;
    padding: 6rem 2rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Rating Section */
.rating-section {
    background: #4CAF50;
    padding: 6rem 2rem;
    color: white;
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chicken-silhouettes img{
    width: 100%;
}

.chicken-silhouettes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.silhouette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.silhouette {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    position: relative;
}

.silhouette::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #000;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.rating-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.rating-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Why Players Section */
.why-players {
    background: #2E7D32;
    padding: 4rem 2rem;
    color: white;
}

.why-players h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Evolution Section */
.evolution {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    padding: 6rem 2rem;
    color: white;
    text-align: center;
}

.evolution h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.evolution p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.evolution-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.evolution-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1rem;
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evolution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Newsletter Section */
.newsletter {
    background: #2E7D32;
    padding: 6rem 2rem;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.newsletter p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #45a049;
}

.game-preview {

    text-align: center;
    position: relative;
    overflow: hidden;
}

.evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./imgs/bg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

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

.chicken-evolution-logo {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.get-it-now-btn {
    background: #FF5722;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.get-it-now-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #1B5E20;
    color: white;
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem;
    text-align: center;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.settings {
    background: #FFC107;
    color: #000;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .rating-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .evolution-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .container {
        padding: 0 1rem;
    }
}