body {
    background-color: #FFF5F7;
    font-family: 'Poppins', sans-serif;
}

/* 自定义颜色 */
.bg-her-pink, .bg-\[\#ff6b9d\], .bg-pink-500 {
    background-color: #ff6b9d !important;
}

.bg-her-dark-pink, .bg-\[\#e05d87\], .bg-pink-600 {
    background-color: #e05d87 !important;
}

.bg-her-light-pink, .bg-pink-100 {
    background-color: #ffd1dc !important;
}

.text-her-pink {
    color: #ff6b9d !important;
}

.text-her-dark-pink, .text-pink-800 {
    color: #e05d87 !important;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

.game-card {
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feminist-game:hover {
    transform: rotateZ(1.5deg) scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(72,199,199,0.2));
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.coop-game {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px -2px rgba(0, 0, 0, 0.1);
}

.pixel-art-frame {
    border: none;
    aspect-ratio: 16/9;
    width: 100%;
    image-rendering: pixelated;
}

.feminist-game iframe {
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, #fff0f3 0%, #fde2e4 100%);
    box-shadow: 0 8px 32px rgba(255,126,185,0.15);
}

.dress-item {
    touch-action: manipulation;
    min-width: 80px;
}

.license-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .hero-wave svg {
        height: 40px;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .feminist-game {
        padding: 8px;
        transform: scale(0.95);
    }
}

@media (pointer: coarse) {
    .control-button {
        min-width: 44px;
        padding: 12px;
    }
}

@media (orientation: portrait) {
    #cat-controls {
        position: fixed;
        bottom: 0;
        background: linear-gradient(to top, #fff 60%, transparent);
    }
} 