.flashy-notification {
    position: fixed;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 300px;
    z-index: 1000;
}
.flashy-notification.position-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.flashy-notification.position-bottom {
    bottom: 20px;
    right: 20px;
}
.flashy-notification.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.flashy-notification.position-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.flashy-notification.position-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.flashy-image {
    max-width: 100%;
}
.flashy-image.left { float: left; margin-right: 10px; }
.flashy-image.right { float: right; margin-left: 10px; }
.flashy-image.top { display: block; margin-bottom: 10px; }
.flashy-image.bottom { display: block; margin-top: 10px; }
.flashy-dismiss {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.flashy-link {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes tilt {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}
.flashy-notification[data-animation="fade-in"] {
    animation: fade-in 1s ease-in-out;
}
.flashy-notification[data-animation="tilt"] {
    animation: tilt 2s ease-in-out infinite;
}