/* contributions-style.css */
body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: #161b22ee;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6a29e2;
    box-shadow: 0 0 25px rgba(106, 41, 226, 0.3);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #58ff7c;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.navbar a:hover {
    background: #6a29e233;
    border-color: #58ff7c;
    text-shadow: 0 0 15px #58ff7c;
    transform: translateY(-2px);
}

.navbar a[href="contributions.html"] {
    background: #6a29e266;
    border-color: #58ff7c;
    box-shadow: 0 0 15px rgba(88, 255, 124, 0.3);
}

/* Sección de contribuciones */
.contributions-section {
    padding: 150px 20px 100px;
    text-align: center;
}

.neon-title {
    font-family: 'Pixelify Sans';
    font-size: 4rem;
    color: #58ff7c;
    text-shadow: 0 0 25px #58ff7c;
    margin-bottom: 30px;
}

.intro-message {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #8b949e;
}

.contributions-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.contribution-item {
    display: flex;
    align-items: center;
    background: rgba(22, 27, 34, 0.9);
    border: 1px solid #6a29e255;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(88, 255, 124, 0.3);
    border-color: #58ff7c;
}

.contribution-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: #58ff7c;
    text-shadow: 0 0 15px #58ff7c;
}

.contribution-content {
    flex: 1;
}

.contribution-title {
    font-family: 'Pixelify Sans';
    font-size: 1.5rem;
    color: #58ff7c;
    margin-bottom: 10px;
}

.contribution-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #8b949e;
    margin-bottom: 15px;
}

.contribution-link {
    display: inline-block;
    padding: 8px 16px;
    background: #6a29e2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contribution-link:hover {
    background: #58ff7c;
    color: #161b22;
    box-shadow: 0 0 15px #58ff7c;
}

/* Footer */
footer {
    background-color: #161b22;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #58a6ff;
    text-decoration: none;
    font-family: 'Pixelify Sans';
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #58ff7c;
    text-shadow: 0 0 15px rgba(88, 255, 124, 0.4);
}