:root {
    --primary: #9d4053;
    --surface: #fff9f0;
    --text-dark: #353229;
    --primary-dim: #ffa9b6;
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--surface);
    height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden; /* Lock scroll as it's a single screen */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 10;
}

/* Background floating emojis */
.background-decorations {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.4;
    animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, -40px) rotate(20deg); }
}

/* Link wrapper */
.gigantic-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* The giant Cremosin logo */
.cremosin-logo {
    width: 80vw;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(157, 64, 83, 0.25));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
}

/* Heartbeat pulse to encourage clicking */
.pulse-animation {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.05); filter: drop-shadow(0 25px 50px rgba(157, 64, 83, 0.4)); }
    28% { transform: scale(1); filter: drop-shadow(0 20px 40px rgba(157, 64, 83, 0.25)); }
    42% { transform: scale(1.05); filter: drop-shadow(0 25px 50px rgba(157, 64, 83, 0.4)); }
    70% { transform: scale(1); }
}

/* Pop logic on hover */
.vibrate-on-hover:hover {
    transform: scale(1.1) rotate(3deg);
    animation: none; /* stop heartbeat when hovering */
    filter: drop-shadow(0 30px 60px rgba(157, 64, 83, 0.5));
}

.vibrate-on-hover:active {
    transform: scale(0.95);
    filter: drop-shadow(0 10px 20px rgba(157, 64, 83, 0.3));
}

/* Text Call to Action */
.call-to-action {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    border: 2px dashed var(--primary-dim);
    box-shadow: 0 8px 32px rgba(157, 64, 83, 0.1);
    animation: float-text 4s ease-in-out infinite;
}

.touch-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.03em;
}

.subtitle {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.8;
}

@keyframes float-text {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cremosin-logo {
        width: 85vw;
        max-width: 380px;
    }
    .touch-text {
        font-size: 1.5rem;
    }
}
