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

body {
    font-family: 'Zalando Sans', sans-serif;
    overflow-x: hidden;
    color: #ffffff;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f1e 50%, #000000 100%);
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.profile-card {
    background: #ffffff;
    border-radius: 3px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border: none;
    animation: fadeInUp 1s ease-out;
}

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

h1 {
    font-family: 'Stack Sans Notch', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #1a237e;
}

.subtitle {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 2rem;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a237e;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1a237e;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.hiboost-logo {
    width: 28px;
    height: 28px;
    background: #1a237e;
    padding: 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.hiboost-logo svg {
    width: 150px;
    height: 150px;
}

.social-icon.hiboost-logo:hover {
    background: #283593;
}

.company-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: #1a237e;
    border: 2px solid #1a237e;
    border-radius: 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.company-link:hover {
    background: #283593;
    border-color: #283593;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.location {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }
}

