:root {
    --primary-color: #FF69B4;
    --secondary-color: #87CEEB;
    --accent-color: #FFD700;
    --text-color: #4A4A4A;
}

body {
    font-family: 'Comic Sans MS', cursive;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5F1 100%);
    color: var(--text-color);
}

.hero-section {
    background: url('../img/hero.webp') center/cover;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 111, 181, 0.5);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.game-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-sweet {
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-sweet:hover {
    background: #FF1493;
    transform: scale(1.05);
}

.btn-install {
    background: #689f38;
    color: white;
    border-radius: 25px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-install:hover {
    background: #558b2f;
    color: white;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.feature-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
}

.contact-section {
    background: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin: 2rem 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.achievement-badge {
    background: linear-gradient(45deg, #FFB6C1, #FF69B4);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
    text-align: center;
}

/* Screenshot Gallery Styles */
.screenshot-section {
    background: linear-gradient(135deg, #FFE5F5 0%, #FFF5FF 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.screenshot-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #FF69B4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.screenshot-title::after {
    content: "🎮";
    position: absolute;
    font-size: 2rem;
    margin-left: 10px;
}

.screenshots-container {
    position: relative;
    padding: 2rem 0;
}

.screenshot-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.25);
}

.screenshot-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255,105,180,0.9), transparent);
    padding: 2rem 1rem 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.2rem;
}

.screenshot-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background: #FF69B4;
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .screenshot-img {
        height: 200px;
    }

    .screenshot-overlay {
        padding: 1rem;
    }
}

/* Cute Game Features Section Styles */
.game-features {
    background: linear-gradient(135deg, #FFE5F5 0%, #FFF0FF 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.game-features::before {
    content: "🦄";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.game-features::after {
    content: "🌈";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-bubble {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.feature-bubble::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FF69B4;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-bubble:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-title {
    color: #FF69B4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.feature-description {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    background: #FFE5F5;
    color: #FF69B4;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #FF69B4;
    color: white;
    transform: scale(1.05);
}

.feature-tags {
    text-align: center;
    margin-top: 1rem;
}

.section-title {
    text-align: center;
    color: #FF69B4;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #FF69B4, #FFB6C1);
    margin: 1rem auto;
    border-radius: 2px;
}

.star-decoration {
    position: absolute;
    color: #FFD700;
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.feature-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF69B4;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    text-align: left;
    padding: 0 10px;
}

.cookie-banner a {
    color: #ffc107;
    text-decoration: underline;
}

.cookie-banner a:hover {
    text-decoration: none;
}

.btn-cookie {
    background-color: #ffc107;
    border: none;
    color: #343a40;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #e0a800;
}
