
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(120deg, #0f0f0f, #1a1a1a);
}

canvas#trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.logo {
    max-width: 150px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff6600;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

footer p {
    font-size: 1em;
    margin-bottom: 10px;
}

footer p a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

footer p a:hover {
    text-decoration: underline;
}
