.frame-border {
    border: 8px solid;
    border-image: linear-gradient(45deg, #596EFF, #C966FF, #FF6B6B, #4ECDC4) 1;
}
.frame-shadow {
    box-shadow: 0 0 30px rgba(89, 110, 255, 0.3);
}
.polaroid {
    background: white;
    padding: 10px 10px 30px 10px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: bounceNatural 1.8s ease-in-out infinite;
}
@media (min-width: 768px) {
    .polaroid {
        padding: 15px 15px 45px 15px;
    }
}
.polaroid:nth-child(1) {
    animation-delay: 0.2s;
}
.polaroid:nth-child(2) {
    animation: bounceNaturalEven 1.8s ease-in-out infinite;
    animation-delay: -0.3s;
}
.polaroid:nth-child(3) {
    animation-delay: -0.8s;
}
.polaroid:nth-child(4) {
    animation: bounceNaturalEven 1.8s ease-in-out infinite;
    animation-delay: -1.3s;
}
@keyframes bounceNatural {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}
@keyframes bounceNaturalEven {
    0%, 100% { transform: rotate(2deg) translateY(0px); }
    50% { transform: rotate(2deg) translateY(-8px); }
}
.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    transition: transform 0.3s ease;
    animation-play-state: paused;
}
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #596EFF;
}
.frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}
.frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}
.frame-corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}
.frame-corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}
.tagline-shadow {
    text-shadow: 
        4px 4px 0px #596EFF,
        8px 8px 0px #C966FF,
        12px 12px 20px rgba(89, 110, 255, 0.3);
}
.tagline-border {
    -webkit-text-stroke: 3px white;
    text-stroke: 3px white;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(89, 110, 255, 0.2), rgba(201, 102, 255, 0.2));
    animation: float 8s ease-in-out infinite;
}
.bubble:nth-child(odd) {
    animation-direction: reverse;
}
.zigzag {
    background-image: 
        linear-gradient(135deg, #596EFF 25%, transparent 25%), 
        linear-gradient(225deg, #596EFF 25%, transparent 25%), 
        linear-gradient(45deg, #C966FF 25%, transparent 25%), 
        linear-gradient(315deg, #C966FF 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 10px 0, 10px 0, 0 0, 0 0;
}
.text-pop {
    animation: textPop 0.6s ease-out;
}

/* Glassmorphism Styles */
.glass-strong {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-primary {
    background: rgba(89, 110, 255, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
    box-shadow: 0 8px 32px rgba(89, 110, 255, 0.15);
}

.glass-secondary {
    background: rgba(201, 102, 255, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
    box-shadow: 0 8px 32px rgba(201, 102, 255, 0.15);
}

.glass-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* Neumorphism Styles */
.neomorphic {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        6px 6px 12px rgba(163, 177, 198, 0.3),
        -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.neomorphic-inset {
    background: #f0f0f3;
    border-radius: 20px;
    box-shadow: 
        inset 6px 6px 12px rgba(163, 177, 198, 0.3),
        inset -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.neomorphic-button {
    background: linear-gradient(145deg, #f0f0f3, #cacaca);
    border-radius: 20px;
    box-shadow: 
        6px 6px 12px rgba(163, 177, 198, 0.3),
        -6px -6px 12px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.neomorphic-button:hover {
    box-shadow: 
        inset 3px 3px 6px rgba(163, 177, 198, 0.3),
        inset -3px -3px 6px rgba(255, 255, 255, 0.6);
}

.neomorphic-card {
    background: #f0f0f3;
    border-radius: 24px;
    box-shadow: 
        8px 8px 16px rgba(163, 177, 198, 0.2),
        -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.neomorphic-small {
    background: #f0f0f3;
    border-radius: 12px;
    box-shadow: 
        3px 3px 6px rgba(163, 177, 198, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.7);
}

.neomorphic-icon {
    background: #f0f0f3;
    border-radius: 50%;
    box-shadow: 
        4px 4px 8px rgba(163, 177, 198, 0.3),
        -4px -4px 8px rgba(255, 255, 255, 0.7);
}

.neomorphic-input {
    background: #f0f0f3;
    border-radius: 16px;
    border: none;
    box-shadow: 
        inset 4px 4px 8px rgba(163, 177, 198, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

/* Fun Icon Styles */
.fun-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
}

.fun-icon-sm {
    width: 1em;
    height: 1em;
}

.fun-icon-lg {
    width: 2em;
    height: 2em;
}

.fun-icon-xl {
    width: 3em;
    height: 3em;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

.icon-pulse {
    animation: pulse 2s infinite;
}

.icon-wiggle {
    animation: wiggle 2s infinite;
}
.camera-icon {
    background: linear-gradient(135deg, #596EFF, #C966FF);
    border-radius: 12px;
    color: white;
    padding: 8px;
}
.sticker {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.glass-ultra {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 
        0 20px 60px rgba(31, 38, 135, 0.3),
        0 8px 32px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}