/* style.css */

*, *::before, *::after {
    box-sizing: border-box;
}

/* Reset e base */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background-color: #0f1822;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_wrap {
    width: 100%;
    max-width: 900px;
    min-width: 240px;
    box-sizing: border-box;
    /*overflow: clip;*/
    margin: 0 auto;
}

.page_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.main_content {
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo_wrap {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    width: 100%;
    max-width: 900px;
    min-width: 240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    position: relative;
}

.logo_outline, .logo_full {
    width: 100%;
    height: auto;
    grid-area: 1 / 1 / 1 / 1;
    fill: white;
    z-index: 1;
}

.logo_full {
    z-index: 2;
}

.development-notice {
    margin: 2rem 0 0 0;
    max-width: 900px;
    min-width: 240px;
    padding: 1.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.development-notice p {
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.development-notice a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 500;
}

.development-notice a:hover {
    text-decoration: underline;
}