/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0f2447 100%);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Sections */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 150px) clamp(20px, 6vw, 120px);
}

.section-content {
    width: 90%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered entrance for multiple elements */
section:nth-of-type(2) .section-content { animation-delay: 0.1s; }
section:nth-of-type(3) .section-content { animation-delay: 0.1s; }
section:nth-of-type(4) .section-content { animation-delay: 0.1s; }
section:nth-of-type(5) .section-content { animation-delay: 0.1s; }
section:nth-of-type(6) .section-content { animation-delay: 0.1s; }
section:nth-of-type(7) .section-content { animation-delay: 0.1s; }
section:nth-of-type(8) .section-content { animation-delay: 0.1s; }
