/* SVG Pattern Background */
.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    will-change: auto;
}

.svg-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #39ff14;
    mix-blend-mode: screen;
    opacity: 0.5;
    z-index: 1;
}

.pattern-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
    filter: brightness(1.5) contrast(1.2);
}


/* Para la página de construcción */
.construction-container {
    position: relative;
    z-index: 10;
}

.construction-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    z-index: -1;
}

/* Para la página del menú */
.menu-body {
    background: #808080;
    position: relative;
}

.menu-body .pattern-svg {
    opacity: 0.3;
    mix-blend-mode: screen;
}

.menu-body .svg-background::after {
    opacity: 0.4;
}

.menu-container {
    position: relative;
    z-index: 10;
}