:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --text: #2C3E50;
    --bg: #FFF5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.header {
padding: 0;
margin: 0;
background: none;
}

.hero {
position: relative;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
object-fit: cover;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
padding: 2rem;
background: rgba(0, 0, 0, 0.5);
border-radius: 1rem;
backdrop-filter: blur(5px);
margin: 0 1rem;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
}

.hero-content p {
font-size: 1.5rem;
margin-bottom: 2rem;
}

.hero-content .button {
background: var(--primary);
color: white;
padding: 1rem 2rem;
border-radius: 2rem;
text-decoration: none;
display: inline-block;
transition: transform 0.3s;
font-size: 1.2rem;
}

.hero-content .button:hover {
transform: scale(1.05);
}

.navigation {
    background: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navigation a:hover {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta {
    background: var(--accent);
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.button {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.button:hover {
    transform: scale(1.05);
}

.gameplay {
    padding: 4rem 0;
    text-align: center;
}

.characters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
}

.character-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer {
    background: var(--text);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}


/* Testimonials Section */
.testimonials {
padding: 4rem 0;
background: #f5f5f5;
}

.testimonials-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.testimonial-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
}

.testimonial-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 1rem;
}

.testimonial-rating {
color: #FFD700;
font-size: 1.2rem;
margin: 0.5rem 0;
}

/* Gallery Section */
.gallery {
padding: 4rem 0;
}

.gallery-container {
max-width: 1920px;
margin: 0 auto;
padding: 0 2rem;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

.gallery-item {
position: relative;
height: 0;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
overflow: hidden;
border-radius: 1rem;
}

.gallery-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
transform: scale(1.05);
}

@media (max-width: 768px) {

    .hero-content h1 {
font-size: 2.5rem;
}

.hero-content p {
font-size: 1.2rem;
}
    .navigation ul {
        flex-direction: column;
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .character-card {
        flex: 0 0 100%;
    }
    .gallery-grid {
grid-template-columns: 1fr;
}

.testimonials-grid {
grid-template-columns: 1fr;
}
}

.cta {
    background: linear-gradient(135deg, #FF6B6B, #6B5B95, #4ECDC4);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/80/80') repeat;
    opacity: 0.1;
    animation: floatBackground 30s linear infinite;
}

@keyframes floatBackground {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

.cta h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideIn 1s ease-out;
}

.cta p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta .button {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    border-radius: 3rem;
    background: white;
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

.cta .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #FF6B6B;
}

.cta .button:hover::before {
    left: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    gap: 1rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-button {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s;
}

.cookie-button:hover {
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta p {
        font-size: 1.2rem;
    }
    
    .cta .button {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-text {
        margin-bottom: 1rem;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
