:root {
    --primary-pink: #FF69B4;
    --secondary-purple: #9B6B9E;
    --accent-yellow: #FFD700;
    --bg-light-pink: #FFF0F5;
}

body {
    background: var(--bg-light-pink);
    font-family: 'Arial', sans-serif;
    color: #444;
}

.hero-section {
    background: linear-gradient(135deg, #FFB6C1, #DDA0DD);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/800/400') center/cover;
    opacity: 0.1;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.game-title {
    color: var(--secondary-purple);
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 0 var(--accent-yellow);
}

.sweet-button {
    background: var(--primary-pink);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
    transition: all 0.3s;
}

.sweet-button:hover {
    transform: scale(1.05);
    background: var(--secondary-purple);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.characters-section {
    background: white;
    border-radius: 30px;
    margin: 2rem 0;
    padding: 3rem 0;
}

.disclaimer {
    background: rgba(0,0,0,0.05);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.floating-candy {
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.level-preview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sweet-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    transform: rotate(15deg);
}

.achievements-section {
    background: linear-gradient(45deg, #FFE5F1, #F0E6FF);
    border-radius: 30px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.achievement-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-yellow));
}

.combo-showcase {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 2rem 0;
}

.power-up-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.power-up-icon:hover {
    transform: scale(1.1) rotate(15deg);
}

.progress-bar-custom {
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-yellow));
}

.sweet-stats {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.story-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-yellow) 50%);
    opacity: 0.2;
}

.screenshot-card {
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.screenshot-img {
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.screenshot-overlay .badge {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.screenshot-caption {
    text-align: center;
}

/* Make the section stand out with a subtle background */
section:has(.screenshot-card) {
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
    border-radius: 30px;
    margin: 2rem 0;
    padding: 4rem 0;
}

#cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    z-index: 1000;
    display: none; /* Initially hidden */
}
#cookie-disclaimer a {
    color: #ffd700;
    text-decoration: underline;
}
#cookie-disclaimer .btn-accept {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 10px;
}
#cookie-disclaimer .btn-accept:hover {
    background-color: #ffcc00;
}