.flashy-notification {
    position: fixed;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin: 20px;
    box-sizing: border-box;
}

.flashy-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flashy-content {
    font-size: 16px;
    line-height: 1.5;
}

.flashy-link {
    text-decoration: none;
    font-weight: 600;
}

.flashy-link.link-position-below {
    display: block;
    margin-top: 10px;
}

.flashy-link.link-position-center-below {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.flashy-link.link-position-inline {
    display: inline;
    margin-left: 5px;
}

.flashy-link.link-position-button {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    background: #0073aa;
    color: #fff !important;
    text-align: center;
    margin-top: 10px;
}

.flashy-image-container {
    max-width: 100%;
}

.flashy-image-container.left {
    float: left;
    margin-right: 10px;
}

.flashy-image-container.right {
    float: right;
    margin-left: 10px;
}

.flashy-image-container.top {
    margin-bottom: 10px;
}

.flashy-image-container.bottom {
    margin-top: 10px;
}

.flashy-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.flashy-dismiss {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
}

.size-compact {
    max-width: 300px;
}

.size-square {
    width: 250px;
    height: 250px;
}

.position-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.position-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.position-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.position-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.position-top-left {
    top: 20px;
    left: 20px;
}

.position-top-right {
    top: 20px;
    right: 20px;
}

.position-bottom-left {
    bottom: 20px;
    left: 20px;
}

.position-bottom-right {
    bottom: 20px;
    right: 20px;
}

.position-page-central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 80%;
}

.animated.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.animated.tilt {
    animation: tilt 0.5s ease-in-out;
}

.animated.slide-in {
    animation: slideIn 0.5s ease-in;
}

.animated.bounce {
    animation: bounce 0.5s ease-in-out;
}

.animated.pulse {
    animation: pulse 0.5s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes tilt {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes slideIn {
    from { transform: translateY(100px); }
    to { transform: translateY(0); }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}