body {
    background-color: #1a1a2e;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 10vh;
}
h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(45deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle {
    font-size: 1.5rem;
    color: #a0a0b0;
    margin-bottom: 2rem;
}
.nav-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}
.btn:hover {
    background: rgba(0, 210, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}
.btn.highlight {
    background: linear-gradient(45deg, #ff7eb3 0%, #ff758c 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
}
.btn.highlight:hover {
    box-shadow: 0 8px 25px rgba(255, 117, 140, 0.6);
}
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@import url("particles.css");
