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

body {
    font-family: system-ui, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.scroll-section {
    background-color: #1e293b;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #94a3b8;
}

.box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #38bdf8, #0369a1);
    border-radius: 12px;
}

.scroll-box {
    background: linear-gradient(135deg, #f43f5e, #be123c);
    margin-top: 2rem;
}
