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

body {
    height: 100vh;
    background: radial-gradient(circle at top, #0a0a23 0%, #000 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
}

canvas#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #74ABE2;
    text-shadow: 0 0 10px #74ABE2, 0 0 30px #74ABE2;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    height: 3rem;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.8;
}
