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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.geometric-background {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top left, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
}

.geometric-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#canvas-geometric {
    width: 100%;
    height: 100;
    opacity: 0.25;
}

.content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 4rem 2rem;
    text-align: center;
}
