* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.social-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
    fill: white;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #894AF6, #2EF55D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #894AF6, #2EF55D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #a0a0a0;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1.2rem 2.4rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(137, 74, 246, 0.2), rgba(46, 245, 93, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-button:hover::before {
    opacity: 1;
}

.primary-button {
    background: linear-gradient(135deg, #894AF6, #2EF55D);
    color: white;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.primary-button:hover .button-icon {
    transform: translateX(4px);
}

.social-links {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: -0.01em;
    }

    .description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}