:root {
    --bg-color: #E6E6FA; /* Soft Lavender */
    --text-color: #483D8B; /* Dark Slate Blue */
    --accent-color: #9370DB; /* Medium Purple */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Patrick Hand', cursive;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scrollbars from floating elements */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.handwritten {
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transform: rotate(-2deg);
}

.warning-box {
    font-size: 1.5rem;
    margin: 1rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-size: 1.8rem;
}

.illustration-container {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

/* Simple CSS-only cute blob/character placeholder */
.cute-blob {
    width: 100px;
    height: 90px;
    background-color: var(--white);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: bounce 2s infinite ease-in-out;
}

.cute-blob::before, .cute-blob::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 10px;
    height: 10px;
    background-color: var(--text-color);
    border-radius: 50%;
}

.cute-blob::before { left: 30px; }
.cute-blob::after { right: 30px; }

/* Cheeks */
.cute-blob .cheeks {
    position: absolute;
    top: 45px;
    width: 100%;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(2deg);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.smiley {
    margin-top: 10px;
    transform: rotate(5deg);
}

/* Floating background elements */
.floating-shape {
    position: absolute;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, -100px) rotate(360deg); }
}
