:root {
    --primary-pink: #FF69B4;
    --secondary-pink: #FFB6C1;
    --candy-purple: #9B6B9E;
    --sweet-yellow: #FFD700;
    --candy-blue: #87CEEB;
    --candy-green: #98FB98;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5F1 100%);
}

.hero-section {
    background: linear-gradient(rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0.3)),
    url('../img/hero.webp') center/cover;
    padding: 120px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.sweet-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.sweet-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.candy-button {
    background: linear-gradient(45deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.candy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    color: white;
}

.download-button {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: scale(1.05);
    color: white;
}

.testimonial-section {
    background: linear-gradient(45deg, var(--candy-purple) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 80px 0;
}

.disclaimer {
    background: rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-pink);
    padding: 20px;
    margin: 40px 0;
}

.candy-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--sweet-yellow);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.game-features {
    background: linear-gradient(135deg, var(--candy-blue) 0%, var(--candy-green) 100%);
    padding: 60px 0;
    color: white;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

/* Screenshot Section Styles */
.screenshots-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF5F5 100%);
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5C40.493 5 49 13.507 49 24S40.493 43 30 43 11 34.493 11 24 19.507 5 30 5zm0 2c-9.389 0-17 7.611-17 17s7.611 17 17 17 17-7.611 17-17-7.611-17-17-17z' fill='%23FFB6C1' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.screenshots-content {
    position: relative;
    z-index: 2;
}

.screenshots-title {
    text-align: center;
    margin-bottom: 50px;
    color: #FF69B4;
    font-weight: bold;
    position: relative;
}

.screenshots-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF69B4, #FFB6C1);
    margin: 15px auto;
    border-radius: 2px;
}

.screenshot-container {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.screenshot-card {
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    transform-origin: center;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f0f0f0;
    border-radius: 10px;
}

.screenshot-card img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-container:hover .screenshot-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.screenshot-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.screenshot-container:hover .screenshot-label {
    bottom: 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .screenshot-container {
        margin-bottom: 40px;
    }

    .screenshot-label {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* Floating animation for decorative elements */
.candy-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.candy-1 { background: #FF69B4; animation: float 6s ease-in-out infinite; }
.candy-2 { background: #FFB6C1; animation: float 8s ease-in-out infinite 1s; }
.candy-3 { background: #FFD700; animation: float 7s ease-in-out infinite 2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -20px); }
}

/* Sweet Features Section Styles */
.sweet-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF5F5 100%);
    position: relative;
    overflow: hidden;
}

.candy-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#FF69B4 1px, transparent 1px),
    radial-gradient(#FFB6C1 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}

.sweet-title {
    font-size: 2.5rem;
    text-align: center;
    color: #FF1493;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sweet-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #FF69B4, #FFB6C1);
    margin: 15px auto;
    border-radius: 10px;
}

.candy-box {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.candy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #FF69B4, #FFB6C1);
    border-radius: 3px 3px 0 0;
}

.candy-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transform: rotate(-45deg);
}

.candy-box:hover .feature-icon {
    transform: rotate(225deg);
}

.candy-box:hover .feature-icon i {
    transform: rotate(-225deg);
}

.feature-title {
    font-size: 1.5rem;
    color: #FF1493;
    margin-bottom: 15px;
    text-align: center;
}

.feature-text {
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}

.sweet-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 5px;
    transition: transform 0.3s ease;
}

.sweet-badge:hover {
    transform: scale(1.1);
}

.features-footer {
    text-align: center;
    margin-top: 50px;
}

.candy-button-alt {
    padding: 15px 40px;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.candy-button-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .sweet-title {
        font-size: 2rem;
    }

    .candy-box {
        padding: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.3rem;
    }
}

.cookie-disclaimer {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
}

.cookie-disclaimer.show {
    bottom: 0;
}

.cookie-text {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.cookie-button {
    background: #FF69B4;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background: #FF1493;
}

@media (max-width: 768px) {
    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-button {
        width: 100%;
    }
}