* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mission {
    font-size: 1rem;
    text-align: left;
    color: #ffffff;
    border-left: 3px solid #ffffff;
    padding-left: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.mission strong {
    color: #ffffff;
}

.meta {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #666666;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.meta .separator {
    margin: 0 0.75rem;
    color: #444444;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description,
    .mission {
        font-size: 0.9rem;
    }

    .mission {
        padding-left: 1rem;
        border-left-width: 2px;
    }

    .logo-container {
        margin-bottom: 2rem;
        min-height: 80px;
    }

    .logo {
        max-width: 150px;
        max-height: 80px;
    }

    .meta {
        font-size: 0.8rem;
    }
}