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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #181828 0%, #23233a 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #6c3483, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

h2 {
    color: #39ff14;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #6c3483;
    padding-bottom: 10px;
}

.descripcion-section,
.tecnologias-section,
.caracteristicas-section,
.galeria-section,
.enlaces-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #6c3483;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(108, 52, 131, 0.3);
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    padding: 10px 0;
    color: #fff;
    position: relative;
    padding-left: 25px;
}

ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffbe00;
    font-weight: bold;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.image-container {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #6c3483;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
    border-color: #39ff14;
}

.image-container h3 {
    color: #ffbe00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #6c3483;
    margin-bottom: 15px;
}

.image-container p {
    color: #fff;
    font-size: 0.9rem;
    font-style: italic;
}

.enlaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.btn-enlace {
    padding: 15px 30px;
    background: linear-gradient(135deg, #6c3483, #39ff14);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.btn-enlace:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.4);
}

footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
}

.footer-link {
    color: #39ff14;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #39ff14;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    background: #39ff14;
    color: #181828;
    transform: scale(1.05);
}

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

    h2 {
        font-size: 1.4rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .descripcion-section,
    .tecnologias-section,
    .caracteristicas-section,
    .galeria-section,
    .enlaces-section {
        padding: 20px;
    }
}
