* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.wave-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    z-index: 1;
}

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 24px;
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.music-control.playing {
    color: #824caf;
    border-color: #7a4caf;
    animation: pulse 2s ease-in-out infinite;
}

.menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 100px 50px;
}

.side-menu.active {
    right: 0;
}

.side-menu nav ul {
    list-style: none;
}

.side-menu nav ul li {
    margin: 30px 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.side-menu.active nav ul li {
    opacity: 1;
}

.side-menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.side-menu nav ul li a:hover {
    transform: translateX(10px);
    display: inline-block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

section {
    min-height: 100vh;
    padding: 100px 50px;
    display: none;
    opacity: 0;
}

section.active {
    display: flex;
    animation: fadeIn 0.5s ease forwards;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    width: 100%;
}

#inicio {
    flex-direction: column;
    text-align: center;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 24px;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.hero-image {
    border-radius: 50%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.text-content p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.specialty-list {
    list-style: none;
    margin: 30px 0;
}

.specialty-list li {
    font-size: 18px;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.specialty-list li::before {
    content: '→';
    position: absolute;
    left: 0;
}

.profile-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tool-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.tool-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.tool-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tool-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.tool-card p {
    font-size: 16px;
    color: #a0a0a0;
}

.minecraft-header {
    text-align: center;
    margin-bottom: 80px;
}

.minecraft-header h2 {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #8c00ff 25%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.minecraft-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid rgba(76, 175, 80, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.slider-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    font-size: 24px;
}

.slider-arrow:hover {
    background: rgba(76, 175, 80, 0.3);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(76, 175, 80, 0.8);
}

.redes-content h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 60px;
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.social-item {
    text-align: center;
}

.social-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon.twitch:hover { border-color: #9146FF; color: #9146FF; }
.social-icon.youtube:hover { border-color: #FF0000; color: #FF0000; }
.social-icon.discord:hover { border-color: #5865F2; color: #5865F2; }
.social-icon.tiktok:hover { border-color: #00f2ea; color: #00f2ea; }
.social-icon.twitter:hover { border-color: #1DA1F2; color: #1DA1F2; }
.social-icon.namemc:hover { border-color: #4CAF50; color: #4CAF50; }
.social-icon.paypal:hover { border-color: #110ed6; color: #181aaac2; }

.social-label {
    margin-top: 15px;
    font-size: 18px;
    color: #a0a0a0;
}

.voidworld-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.voidworld-content h2 {
    font-size: 56px;
    margin-bottom: 40px;
}

.voidworld-content p {
    font-size: 20px;
    color: #a0a0a0;
    line-height: 1.8;
}

.voidworld-quote {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-top: 60px;
    letter-spacing: 2px;
}

.voidworld-logo {
    width: 110px;
    margin-bottom: 30px;
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
    animation: voidLogoFade 1.6s ease forwards;
}

@keyframes voidLogoFade {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.clientes-content h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 60px;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cliente-item {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.4s ease;
}

.cliente-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
}

.cliente-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    display: block;
}

.cliente-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.cliente-nombre {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #a0a0a0;
    font-weight: 500;
}

footer {
    padding: 60px 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .side-menu {
        width: 100%;
        right: -100%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .historia-content {
        grid-template-columns: 1fr;
    }

    .minecraft-slider {
        height: 400px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .redes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Categorías del portafolio */
.portfolio-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.category-card p {
    color: #a0a0a0;
    font-size: 16px;
}

/* Modal del álbum */
.album-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 100px 50px 50px;
}

.album-modal.active {
    opacity: 1;
    visibility: visible;
}

.album-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.album-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.album-header {
    text-align: center;
    margin-bottom: 60px;
}

.album-header h2 {
    font-size: 48px;
    color: #fff;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.album-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.album-image:hover {
    transform: scale(1.05);
    border-color: rgba(76, 175, 80, 0.5);
}

.album-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Visor de imagen completa */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.viewer-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
}

.viewer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.viewer-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
}

.viewer-nav:hover {
    background: rgba(76, 175, 80, 0.3);
}

.viewer-prev {
    left: 30px;
}

.viewer-next {
    right: 30px;
}

.image-viewer img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .album-modal {
        padding: 80px 20px 20px;
    }
    
    .album-grid {
        grid-template-columns: 1fr;
    }
    
    .viewer-nav {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .viewer-prev {
        left: 15px;
    }
    
    .viewer-next {
        right: 15px;
    }
}