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

body {
    background-color: #fffff3; /* Exact match to video background from Canva */
    font-family: 'Caveat', cursive; /* More sketchy handwriting font */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
}

.video-container {
    margin-bottom: 0.5rem;
    /* Removed border-radius, overflow, and box-shadow for flat look */
}

.animation {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.studio-name {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(-0.5deg); /* Slight hand-drawn tilt */
    animation: gentle-wave 4s ease-in-out infinite;
}

.title-section {
    position: relative;
    display: inline-block;
}

.heart-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -45px;
    right: -20px;
    transform: rotate(5deg);
    opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .heart-icon {
        width: 20px;
        height: 20px;
        right: -20px;
        bottom: -40px;
    }
}

@keyframes gentle-wave {
    0%, 100% { 
        transform: rotate(-0.5deg) translateY(0px);
    }
    25% { 
        transform: rotate(0.3deg) translateY(-2px);
    }
    50% { 
        transform: rotate(-0.2deg) translateY(1px);
    }
    75% { 
        transform: rotate(0.4deg) translateY(-1px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .studio-name {
        font-size: 2rem;
    }
    
    .animation {
        max-width: 90vw;
    }
}
