/* Global styles */
body {
    margin: 0;
    font-family: 'Fira Code', monospace;
    background-color: #000000;
    color: #dcdcdc;
    line-height: 1.6;
    text-align: center;
    padding: 50px 20px;
}

h1,
h2,
h3 {
    color: #4ec9b0;
}

h1 {
    font-size: 3em;
    margin: 0 0 20px 0;
}

p {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Links */
a {
    text-decoration: none;
    color: #4ec9b0;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #00d0ff;
    transform: scale(1.1);
    text-shadow: 0 0 8px #00d0ff;
}

a:visited {
    color: #3aa18c;
    font-style: italic;
}

.status {
    color: #4ade80;
    font-weight: bold;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #292929;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    .container {
        padding: 20px;
    }
}

/* Tech overview section */
.tech-overview {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.tech-overview h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4ec9b0;
    border-bottom: 2px solid #4ec9b0;
    padding-bottom: 5px;
    font-size: 1.3em;
}

.tech-overview h3:first-child {
    margin-top: 0;
}

.tech-overview p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
    color: #d4d4d4;
}

.tech-overview strong {
    color: #4ec9b0;
    font-weight: 600;
}

/* Navigation section */
.navigation {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4ec9b0, #3aa18c);
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(78, 201, 176, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #3aa18c, #4ec9b0);
}

.nav-button:visited {
    color: #000;
}