:root {
    --primary-color: #FF5E5B;
    --secondary-color: #00CECB;
    --bg-color: #FFED66;
    --text-color: #333;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
    border: 5px solid white;
}

h1 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 0px white, 4px 4px 0px rgba(0,0,0,0.1);
}

h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.mascot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid white;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.mascot:hover {
    transform: rotate(2deg) scale(1.02);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 700;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    font-family: 'Fredoka One', cursive;
    letter-spacing: 1px;
}

.social-btn.youtube {
    background-color: #FF0000;
}

.social-btn.tiktok {
    background-color: #000000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
