* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #cccccc;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 10px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 159, 28, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #ff9f1c;
}

.contact-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 159, 28, 0.2);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo img {
        width: 120px;
    }
}
