Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background: linear-gradient(135deg, #1a1a1a, #333);
+ color: #fff;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ overflow: hidden;
+ }
+
+ .container {
+ text-align: center;
+ position: relative;
+ }
+
+ .title {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 2s ease-in-out;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeIn 2.5s ease-in-out;
+ }
+
+ .message {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ margin-bottom: 2rem;
+ animation: fadeIn 3s ease-in-out;
+ }
+
+ .blinking-text {
+ font-size: 2rem;
+ animation: blink 1s infinite;
+ }
+
+ .fireworks {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ }
+
+ .firework {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: #ff0;
+ border-radius: 50%;
+ animation: explode 2s infinite;
+ }
+
+ .firework:nth-child(1) {
+ top: 20%;
+ left: 30%;
+ animation-delay: 0s;
+ }
+
+ .firework:nth-child(2) {
+ top: 40%;
+ left: 60%;
+ animation-delay: 1s;
+ }
+
+ .firework:nth-child(3) {
+ top: 60%;
+ left: 20%;
+ animation-delay: 1.5s;
+ }
+
+ @keyframes fadeIn {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+
+ @keyframes blink {
+ 0%, 50%, 100% {
+ opacity: 1;
+ }
+ 25%, 75% {
+ opacity: 0;
+ }
+ }
+
+ @keyframes explode {
+ 0% {
+ transform: scale(1);
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(10);
+ opacity: 0;
+ }
+ }
+
+ @media (max-width: 768px) {
+ .title {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .message {
+ font-size: 1rem;
+ }
+
+ .blinking-text {
+ font-size: 1.5rem;
+ }
+ }