/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #202124 0%, #2c2c2f 100%);
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

.step p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #b1b1b1;
}

.step img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
}

.step img:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

#confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding: 30px 16px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .step {
        text-align: center;
        margin-bottom: 50px;
    }

    .step p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .step img {
        border-radius: 8px;
    }

    .step img:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}