* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e94560;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.7);
}

.logo {
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.3));
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(22, 33, 62, 0.8);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

nav a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.8);
    text-decoration: none;
}

.dot {
    color: #533483;
}

footer {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 100;
}

footer a {
    color: #e94560;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

footer a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.8);
}

.back-link {
    align-self: flex-start;
    color: #e94560;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.8);
    text-decoration: none;
}

.subtitle {
    font-size: 1.4rem;
    margin: 0;
    margin-bottom: 2rem;
    color: #533483;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(22, 33, 62, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.2);
}

.content-box h3 {
    color: #533483;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box p {
    line-height: 1.8;
    color: #e94560;
}

.content-box ul {
    line-height: 1.8;
    color: #e94560;
}

.twitter-link {
    margin-top: 2rem;
    text-align: center;
}

.twitter-link a {
    color: #533483;
    text-decoration: none;
    background: rgba(233, 69, 96, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.twitter-link a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    text-decoration: none;
}

.content-box li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.twitter-link {
    margin-top: 2rem;
    text-align: center;
}

.twitter-link a {
    color: #7e4c2b;
    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(#7e4c2b 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}
