:root {
    --bg-color: #3B4953;
    --surface-color: #90AB8B;
    --text-primary: #3B4953;
    --text-secondary: #5A7863;
    --border-color: #5A7863;
    --accent-color: #90AB8B;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Geometric Grid Background */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-color);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(0); }
    100% { transform: perspective(500px) rotateX(20deg) scale(1.5) translateY(40px); }
}

/* Main Content */
.container {
    text-align: center;
    padding: 3rem;
    z-index: 1;
    max-width: 900px;
    background: rgba(235, 244, 221, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(59, 73, 83, 0.2);
    border-radius: 15px;
}

/* Header Section */
.brand {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--text-secondary); /* Styling for '.dev' */
}

/* Terminal/Status Section */
.status-container {
    margin-top: 2.5rem;
    display: inline-block;
    text-align: left;
    background: var(--surface-color);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--text-primary);
    font-family: var(--font-mono);
    min-width: 300px;
}

.status-label {
    color: #1B2933;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.status-text {
    font-size: 0.8rem;
    color: #1B2933;
    font-family: 'Ubuntu', sans-serif;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: var(--text-primary);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

/* Footer Info */
.footer {
    position: absolute;
    bottom: 2rem;
    color: #EBF4DD;
    font-size: 0.8rem;
    display: flex;
    gap: 2rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #5A7863; /* Green 'Online' dot */
    border-radius: 50%;
    box-shadow: 0 0 10px #5A7863;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .logo-text { font-size: 3rem; }
    .container { width: 90%; padding: 2rem; margin-bottom: 4rem; }
    .footer { position: fixed; bottom: 1rem; width: 100%; justify-content: center; }
}