body {
    margin: 0;
    background: #111;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.section {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.section img {
    width: 100%;
    display: block;
}

/* Reveal animation */
.section.show {
    opacity: 1;
    transform: translateY(0);
}