:root {
    --primary-rose: #E75A7C;
    --secondary-blush: #FFB6C1;
    --accent-gold: #FFD700;
    --background: #FFF8F0;
    --text-dark: #333333;
    --success-green: #4CAF50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFB6C1 0%, #E75A7C 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-dark);
    /* Cat cursor theme! 🐱 */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">🐱</text></svg>'), auto;
}

/* Heart-eyes cat cursor for interactive elements */
button, a, .clickable, .yes-button, .no-button, .carousel-btn, .splaunch-button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="24" font-size="24">😻</text></svg>'), pointer !important;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: scale(1.1);
}

.lang-btn.active {
    border-color: var(--primary-rose);
    background: rgba(231, 90, 124, 0.1);
}

/* Floating Hearts Animation */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    animation: floatUp linear forwards;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkles Container */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.sparkle {
    position: absolute;
    animation: sparkleOut 1s ease-out forwards;
    pointer-events: none;
}

@keyframes sparkleOut {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(var(--angle, 45deg)) translateX(50px) scale(1);
        opacity: 0;
    }
}

/* Responsive Typography */
h1 {
    font-family: 'Playfair Display', serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-toggle {
        top: 10px;
        right: 10px;
        padding: 6px;
    }

    .lang-btn {
        font-size: 20px;
        padding: 6px 10px;
    }
}
