* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0014;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #9d4edd, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.title {
    font-size: 1.5rem;
    color: #b8a8d1;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.description {
    color: #d1c6e9;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.links {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: rgba(157, 78, 221, 0.1);
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #9d4edd, #6a00ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.button:hover::before {
    opacity: 1;
}

.button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
}

@media (max-width: 600px) {
    h1 { font-size: 3rem; }
    .title { font-size: 1.2rem; }
    .links { flex-direction: column; align-items: center; }
}