* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    background-color: #f0f8ff;
    color: #1a365d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a {
    color: #2b4c7e;
    text-decoration: none;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

.dot {
    color: #2b4c7e;
    padding: 0 0.25rem;
}

.back-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    color: #2b4c7e;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    text-decoration: underline;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: normal;
    color: #666;
}

.content-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(43, 76, 126, 0.1);
}

.content-box h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.content-box h3:first-child {
    margin-top: 0;
}

.content-box p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.content-box ul {
    list-style-type: none;
    padding: 0;
}

.content-box li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.content-box li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.twitter-link {
    margin-top: 2rem;
    text-align: center;
}

.twitter-link a {
    color: #2b4c7e;
    text-decoration: none;
    font-size: 1.1rem;
}

.twitter-link a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.8rem;
}

/* Add some subtle animation to the robot logo */
.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

/* Add some random dots in the background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2b4c7e 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}
