.entertainment-notification {
    position: fixed !important;
    bottom: 24px !important;
    right: -500px !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 12px !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease-out, right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    pointer-events: all !important;
}

.entertainment-notification-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3),
                0 15px 30px -8px rgba(0, 0, 0, 0.25),
                0 5px 15px -3px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 20px;
    max-width: 280px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.entertainment-notification-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35),
                0 15px 30px -10px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.08);
}

.entertainment-notification-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 600;
}

.entertainment-notification-image {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25),
                0 10px 20px -5px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 110px;
    height: 110px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.entertainment-notification-image:hover {
    transform: translateY(-8px) scale(1.08) rotate(2deg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35),
                0 15px 30px -10px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.08);
}

.entertainment-notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .entertainment-notification {
        bottom: 16px !important;
        right: -100% !important;
        left: auto !important;
        width: calc(100% - 32px) !important;
        gap: 8px !important;
    }

    .entertainment-notification-content {
        flex: 1;
        max-width: none;
        padding: 16px;
    }

    .entertainment-notification-image {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .entertainment-notification-text {
        font-size: 0.8125rem;
    }
}
