diff --git a/submissions/examples/stacked-cards-55613/README.md b/submissions/examples/stacked-cards-55613/README.md
new file mode 100644
index 00000000000..74e1d5c879f
--- /dev/null
+++ b/submissions/examples/stacked-cards-55613/README.md
@@ -0,0 +1,21 @@
+# Stacked Deck Card Fan-Out Reveal
+
+## What does this do?
+Creates a component where 3 cards are stacked on top of each other (like a deck of playing cards). When the user hovers over the container, the cards beautifully fan out radially using `transform: rotate()` and `translate()`.
+
+## How is it used?
+```html
+
+
3
+
2
+
1
+
+```
+*(Note: Because of absolute positioning, the last element in the DOM appears on top).*
+
+## Why does it fit EaseMotion CSS?
+It provides a highly tactile, engaging interaction perfect for highlighting portfolios or testimonials. Using `nth-child` selectors and `cubic-bezier` transitions, it requires no JS state management to handle complex overlapping hover states.
+
+## Tech Stack
+- HTML
+- CSS (No JavaScript)
diff --git a/submissions/examples/stacked-cards-55613/demo.html b/submissions/examples/stacked-cards-55613/demo.html
new file mode 100644
index 00000000000..72f5d89027d
--- /dev/null
+++ b/submissions/examples/stacked-cards-55613/demo.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+ Stacked Deck Fan-Out Demo
+
+
+
+
+