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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: var(--dark);
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--light);
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}