body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f1a;
    color: white;
}

/* HERO SECTION */

.hero {
    padding: 120px 8%;
    background: linear-gradient(135deg, #1e1e3f, #111122);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.name {
    font-size: 110px;
    margin: 0;
    font-weight: 900;
    background: linear-gradient(90deg, #6c5ce7, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.7;
    max-width: 650px;
    color: #ccc;
}

.contact {
    margin-top: 35px;
}

.contact a {
    margin-right: 15px;
    padding: 12px 25px;
    background: #6c5ce7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.contact a:hover {
    background: #4834d4;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 520px;
    max-width: 100%;
    filter: drop-shadow(0 0 25px rgba(108,92,231,0.5));
}

/* PROJECT SECTIONS */

.project {
    padding: 100px 8%;
    text-align: center;
}

.project h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.project p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
    color: #ddd;
}

.project-gallery {
    display: flex;
    flex-direction: column; /* UNA ABAJO DE LA OTRA */
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}


.project-img {
    width: 80%;           /* GRANDE */
    max-width: 700px;    /* MÁS GRANDE QUE ANTES */
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    transition: 0.3s;
}

.aegis-layout {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Imagen de código MÁS GRANDE */
.aegis-code {
    width: 85%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* Contenedor inferior */
.aegis-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aegis-small {
    width: 45%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.project-img:hover {
    transform: scale(1.05);
}

button {
    margin-top: 25px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #4834d4, #6c5ce7);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(108,92,231,0.6);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
        margin-top: 40px;
    }

    .name {
        font-size: 70px;
    }

    .project-gallery {
        flex-direction: column;
        gap: 20px;
    }
}
/* ===== DOWNLOAD PAGE ===== */

.download-hero {
    text-align: center;
    padding: 120px 8%;
    background: linear-gradient(135deg, #111122, #1e1e3f);
}

.download-hero h1 {
    font-size: 70px;
    margin: 0;
}

.download-sub {
    margin-top: 20px;
    font-size: 22px;
    color: #ccc;
}

.download-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 35px;
    background: linear-gradient(90deg, #6c5ce7, #00f5ff);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(108,92,231,0.6);
}

.btn-secondary {
    padding: 16px 35px;
    background: transparent;
    border: 2px solid #6c5ce7;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #6c5ce7;
}

.download-description,
.download-features,
.download-specs {
    padding: 80px 12%;
    max-width: 1000px;
    margin: auto;
}

.download-description h2,
.download-features h2,
.download-specs h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.download-description p {
    line-height: 1.5;   /* menos espacio entre líneas */
    margin-bottom: 8px; /* menos separación entre párrafos */
    color: #ddd;
}


.download-features ul,
.download-specs ul {
    line-height: 1.8;
    color: #ddd;
}

.download-specs h3 {
    margin-top: 40px;
    font-size: 22px;
}
.project-button {
    margin-top: 50px;
    text-align: center;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0d0f14;
    color: #eaeaea;
}

/* ===== MINECRAFT SECTION PRO ===== */

.minecraft-section {
    padding: 160px 20px;
    background: linear-gradient(
        135deg,
        #1a0006 0%,
        #3b0014 25%,
        #5a001f 50%,
        #3b0014 75%,
        #140005 100%
    );
    position: relative;
    overflow: hidden;
}

/* Brillo suave profesional */
.minecraft-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.15), transparent 70%);
    top: -200px;
    right: -200px;
}

.minecraft-container {
    max-width: 1300px;
    margin: auto;
}

.minecraft-container h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 100px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff2a6d, #ff004c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BLOQUES */
.minecraft-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.minecraft-block.reverse {
    flex-direction: row-reverse;
}

/* TEXTOS */
.minecraft-block .text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ff2a6d;
}

.minecraft-block .text p,
.minecraft-block li {
    font-size: 18px;
    line-height: 1.8;
    color: #f1f1f1;
}

.minecraft-block strong {
    color: #ff4d88;
}

/* IMÁGENES */
.minecraft-block .image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.minecraft-block img {
    width: 100%;
    max-width: 650px;
    border-radius: 35px; /* curvas suaves */
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
    transition: 0.4s ease;
}

.minecraft-block img:hover {
    transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .minecraft-block {
        flex-direction: column;
        text-align: center;
    }

    .minecraft-block.reverse {
        flex-direction: column;
    }
}
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #020617, #071a3d, #0a2a66);
    color: white;
}

/* ===== CONTAINER ===== */

.music-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HERO ===== */

.music-hero {
    padding: 100px 0 80px 0;
    text-align: center;
}

.music-hero h1 {
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #00c3ff;
    text-shadow: 0 0 25px rgba(0, 195, 255, 0.8);
}

.music-version {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.music-sub {
    font-size: 18px;
    opacity: 0.85;
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
}

/* ===== BOTONES ===== */

.music-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-music-primary {
    background: linear-gradient(135deg, #0077ff, #00c3ff);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0, 195, 255, 0.6);
}

.btn-music-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 195, 255, 1);
}

.btn-music-secondary {
    background: rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn-music-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== INFO SECTION ===== */

.music-info {
    padding: 70px 0 120px 0;
}

/* ===== BLOQUES ===== */

.music-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.music-block.reverse {
    flex-direction: row-reverse;
}

.music-text {
    flex: 1;
    min-width: 320px;
}

.music-text h2 {
    margin-bottom: 20px;
    font-size: 30px;
    color: #00c3ff;
}

.music-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.music-text ul {
    margin-top: 10px;
    padding-left: 20px;
}

.music-text li {
    margin-bottom: 8px;
}

/* ===== IMÁGENES ===== */

.music-image {
    flex: 1;
    text-align: center;
    min-width: 320px;
}

.music-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0, 195, 255, 0.2);
    transition: 0.4s;
}

.music-image img:hover {
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(0, 195, 255, 0.5);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .music-block,
    .music-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .music-text {
        text-align: center;
    }
}
/* ===== BOTÓN PRO ELECTRIC ===== */

.btn-download-main {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066ff, #00c3ff);
    box-shadow: 
        0 10px 25px rgba(0, 140, 255, 0.4),
        0 0 40px rgba(0, 195, 255, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Efecto brillo que recorre el botón */
.btn-download-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-20deg);
}

/* Animación al hover */
.btn-download-main:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 140, 255, 0.6),
        0 0 60px rgba(0, 195, 255, 1);
}

/* Activa el brillo */
.btn-download-main:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
