:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #00ff41; /* Green similar to terminal or matrix, but cleaner */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

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

/* Subtle background gradient for depth */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.container {
    z-index: 2;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.25rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.loading-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 4px;
}

.loading-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    animation: slide 2s infinite ease-in-out;
    border-radius: 4px;
}

.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-left: 5px;
    box-shadow: 0 0 10px var(--accent-color);
}

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

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    p { font-size: 1rem; }
}
