@import url('components/menu/menu.css');
@import url('components/menu/control.css');
@import url('components/menu/information.css');
@import url('components/menu/slider.css');
@import url('components/transition/transition.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #3B4D54;
    font-family: 'Courier New', monospace;
    color: #3B4D54;
    min-height: 100vh;
}

.main-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.main-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    pointer-events: none;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.main-container.menu-active.with-music::after {
    background: rgba(0,0,0,0.5);
}

.content-wrapper {
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.under-project {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .main-container {
        transition: transform 0.3s ease-out;
    }

    .main-container.menu-active {
        transform: translateX(240px);
        perspective: none;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .content-wrapper {
        padding: 1rem;
    }

    .under-project {
        bottom: 80px;
        z-index: 10;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
}