:root {
    --dark-gray: #1a1a1a;
    --orange: #ff6b35;
    --cyan: #4ecdc4;
}



body {
    background-color: var(--dark-gray);
    color: white;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.container > img {
    margin: 2rem 0;
    max-width: 90%;
    height: auto;
    border: 3px solid var(--orange);
    border-radius: 10px;
}

.simple-info {
    line-height: 1.6;
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
    max-width: 800px;
}

.paragraph {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#particles-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contact Section Styles */
.contact-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
    max-width: 800px;
    width: 100%;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: fadeIn 1s forwards;
}

.contact-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    border: none !important;
    margin: 0 !important;
    max-width: 30px !important;
    max-height: 30px !important;
    box-sizing: content-box;
}

.contact-info {
    flex-grow: 1;
}

.contact-info a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--orange);
    text-decoration: underline;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}