/* Valentine's Day Website - Premium Romantic Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-pink: #ff6b9d;
    --secondary-pink: #ffa8c8;
    --accent-pink: #f8bbd9;
    --deep-pink: #e91e63;
    --soft-pink: #fce4ec;
    --white: #ffffff;
    --cream: #fff8e1;
    --rose-gold: #e8b4b8;
    --champagne: #f7e7ce;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --gradient-romantic: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    --gradient-warm: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-heart: linear-gradient(45deg, #ff1744, #ff5722);
    
    /* Typography */
    --font-romantic: 'Dancing Script', cursive;
    --font-elegant: 'Great Vibes', cursive;
    --font-modern: 'Poppins', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(255, 107, 157, 0.15);
    --shadow-medium: 0 8px 30px rgba(255, 107, 157, 0.25);
    --shadow-strong: 0 12px 40px rgba(255, 107, 157, 0.35);
    --shadow-glow: 0 0 30px rgba(255, 107, 157, 0.5);
}

/* Global Styles */
body {
    font-family: var(--font-modern);
    background: var(--gradient-romantic);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Background Elements */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 228, 225, 0.2) 0%, transparent 50%);
}

.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    color: rgba(255, 182, 193, 0.6);
    font-size: 20px;
    animation: floatUp 8s infinite linear;
    z-index: 1;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 1;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) rotate(324deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) rotate(360deg) scale(0);
    }
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    animation: sparkleFloat 5s infinite ease-in-out;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-heart);
    border-radius: 3px;
    width: 20%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 300px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step.active {
    background: var(--primary-pink);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.step.completed {
    background: var(--deep-pink);
    color: white;
}

/* Main Container */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Page Sections */
.page-section {
    display: none;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: calc(100vh - 80px);
    padding-top: 60px;
}

.page-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0;
}

.animated-heart {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
}

.heart-core {
    width: 120px;
    height: 120px;
    background: var(--gradient-heart);
    transform: rotate(-45deg);
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
    animation: heartbeat 2s infinite ease-in-out;
    box-shadow: var(--shadow-glow);
}

.heart-core::before,
.heart-core::after {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    left: 60px;
    top: 0;
    background: var(--gradient-heart);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.heart-core::after {
    left: 0;
    top: -60px;
}

.heart-pulse {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid rgba(255, 107, 157, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.15);
    }
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line-1 {
    display: block;
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    color: var(--deep-pink);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2,
.title-line-3,
.title-line-4 {
    display: block;
    font-family: var(--font-romantic);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.title-line-3 {
    animation-delay: 0.6s;
}

.title-line-4 {
    animation-delay: 0.8s;
    color: var(--primary-pink);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-container {
    margin: 50px 0;
}

/* Magic Button Styles */
.magic-button {
    position: relative;
    background: var(--gradient-heart);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.magic-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.magic-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.magic-button:hover .button-glow {
    left: 100%;
}

.magic-button.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Section Titles */
.section-title {
    font-family: var(--font-romantic);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Memory Timeline */
.memories-section {
    padding: 40px 0;
}

.memory-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.memory-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.2);
    animation: slideInUp 0.6s ease-out both;
}

.memory-card:nth-child(1) { animation-delay: 0.2s; }
.memory-card:nth-child(2) { animation-delay: 0.4s; }
.memory-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.memory-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-pink);
}

.memory-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-heart);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-soft);
}

.memory-content h3 {
    font-family: var(--font-romantic);
    font-size: 1.8rem;
    color: var(--deep-pink);
    margin-bottom: 15px;
}

.memory-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.nav-button {
    padding: 12px 24px;
    border: 2px solid var(--primary-pink);
    background: transparent;
    color: var(--primary-pink);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
}

.nav-button.secondary {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.nav-button.secondary:hover {
    background: var(--accent-pink);
    color: white;
}

/* Question Section */
.question-section {
    padding: 40px 0;
}

.question-header {
    margin-bottom: 50px;
}

.beating-heart-container {
    margin-bottom: 30px;
}

.beating-heart {
    width: 100px;
    height: 100px;
    background: var(--gradient-heart);
    transform: rotate(-45deg);
    position: relative;
    margin: 0 auto;
    animation: heartbeat 1.5s infinite ease-in-out;
    border-radius: 15px;
    box-shadow: var(--shadow-glow);
}

.beating-heart::before,
.beating-heart::after {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50px;
    top: 0;
    background: var(--gradient-heart);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.beating-heart::after {
    left: 0;
    top: -50px;
}

.question-title {
    font-family: var(--font-romantic);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.question-content {
    max-width: 600px;
    margin: 0 auto;
}

.question-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.question-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--accent-pink);
}

.big-question {
    font-family: var(--font-romantic);
    font-size: 3rem;
    color: var(--deep-pink);
    margin-bottom: 20px;
    line-height: 1.2;
}

.question-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Answer Buttons */
.answer-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.yes-button-mega {
    position: relative;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    animation: yesButtonGlow 3s infinite;
}

@keyframes yesButtonGlow {
    0%, 100% {
        box-shadow: var(--shadow-medium);
    }
    50% {
        box-shadow: 0 8px 40px rgba(76, 175, 80, 0.6);
    }
}

.yes-button-mega:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-strong);
}

.yes-button-mega:active {
    transform: translateY(-2px) scale(1.05);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.button-text-main {
    font-size: 1.4rem;
}

.button-text-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

.no-button-mega {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.no-button-mega:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.love-persuasion {
    margin-top: 30px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.persuasion-message {
    background: rgba(255, 107, 157, 0.1);
    color: var(--deep-pink);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    animation: fadeInScale 0.5s ease-out;
    border: 1px solid var(--accent-pink);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Celebration Section */
.celebration-section {
    padding: 40px 0;
}

.celebration-header {
    margin-bottom: 50px;
}

.success-hearts {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 30px;
}

.success-heart {
    position: absolute;
    font-size: 40px;
    animation: successHeartFloat 3s infinite ease-in-out;
}

.heart-1 { top: 0; left: 0; animation-delay: 0s; }
.heart-2 { top: 20px; left: 60px; animation-delay: 0.5s; }
.heart-3 { top: 0; left: 120px; animation-delay: 1s; }
.heart-4 { top: 20px; left: 180px; animation-delay: 1.5s; }

@keyframes successHeartFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.2);
    }
}

.celebration-title {
    font-family: var(--font-elegant);
    font-size: 4rem;
    color: var(--deep-pink);
    margin-bottom: 20px;
    animation: celebrationBounce 1s infinite;
}

@keyframes celebrationBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

.celebration-subtitle {
    font-family: var(--font-romantic);
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 30px;
}

.success-message {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--accent-pink);
}

.success-message p {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Future Dreams */
.future-dreams {
    margin: 50px 0;
}

.future-dreams h3 {
    font-family: var(--font-romantic);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.dream-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.dream-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-pink);
}

.dream-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.dream-card h4 {
    font-family: var(--font-romantic);
    font-size: 1.6rem;
    color: var(--deep-pink);
    margin-bottom: 15px;
}

.dream-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.celebration-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Love Letter Section */
.love-letter-section {
    padding: 40px 0;
}

.letter-header {
    margin-bottom: 50px;
}

.letter-title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    color: var(--deep-pink);
    margin-bottom: 20px;
}

.letter-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.letter-container {
    max-width: 700px;
    margin: 0 auto 50px;
}

.envelope-container {
    perspective: 1000px;
}

.envelope {
    background: var(--gradient-warm);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.envelope:hover {
    transform: rotateY(5deg);
}

.envelope-flap {
    height: 40px;
    background: var(--gradient-heart);
    border-radius: 15px 15px 0 0;
    position: relative;
}

.envelope-flap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--rose-gold);
}

.envelope-body {
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 40px;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.letter-paper {
    background: #fefefe;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.letter-content {
    text-align: left;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.letter-content p {
    margin: 20px 0;
}

.greeting {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--deep-pink);
    margin-bottom: 30px;
}

.letter-signature {
    margin-top: 40px;
    text-align: right;
}

.signature-name {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--deep-pink);
    font-weight: bold;
}

.signature-date {
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.letter-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-bar,
    .progress-steps {
        width: 250px;
    }
    
    .main-container {
        padding: 20px 15px;
    }
    
    .page-section {
        padding-top: 80px;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2,
    .title-line-3,
    .title-line-4 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .big-question {
        font-size: 2.2rem;
    }
    
    .celebration-title {
        font-size: 3rem;
    }
    
    .letter-title {
        font-size: 2.5rem;
    }
    
    .answer-buttons,
    .navigation-buttons,
    .celebration-actions,
    .letter-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .yes-button-mega,
    .no-button-mega {
        width: 100%;
        max-width: 300px;
    }
    
    .dreams-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .progress-bar,
    .progress-steps {
        width: 200px;
    }
    
    .title-line-1 {
        font-size: 1.8rem;
    }
    
    .title-line-2,
    .title-line-3,
    .title-line-4 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .big-question {
        font-size: 1.8rem;
    }
    
    .celebration-title {
        font-size: 2.5rem;
    }
    
    .letter-title {
        font-size: 2rem;
    }
    
    .memory-card,
    .dream-card {
        padding: 20px;
    }
    
    .question-box {
        padding: 25px;
    }
    
    .letter-paper {
        padding: 25px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* Special Effects */
.magic-sparkle {
    position: relative;
    overflow: hidden;
}

.magic-sparkle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: sparkleMove 3s linear infinite;
    pointer-events: none;
}

@keyframes sparkleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}