/* Section Dividers and Additional Utilities */
.section-divider-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 4rem auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-divider-image[src*="yydivider"] {
    width: 50%;
    max-width: 300px;
}

.section-divider-image:hover {
    transform: scale(1.02);
}

/* Playful Icon Styles */
.playful-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.playful-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Playful Circle */
.playful-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: white;
    padding: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.playful-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--melon), var(--jasmine), var(--air-superiority-blue), var(--olivine));
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Playful Divider */
.playful-divider {
    display: none;
}

/* Password Screen Utilities */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}