/* proj/include/css/about.css */

body {
    background-color: #292929;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.about-container {
    background: rgba(0, 0, 0, 0.25); /* Semi-transparent dark bg */
    border: 1px solid #444;          /* Subtle border */
    width: 90%;
    max-width: 600px;
    margin: 60px auto 0 auto;        /* Center on page */
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
    box-sizing: border-box;
}

.pixel-title {
    font-family: 'upheavtt', sans-serif; /* Your retro font */
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 4px;
    color: #eee;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
}

.pixel-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.construction-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    opacity: 0.8;
}

/* Optional: A subtle divider */
.divider-small {
    width: 50px;
    height: 2px;
    background-color: #395B50; /* Your theme green */
    margin: 0 auto;
}