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

body {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    padding: 20px;
    min-height: 100vh;
}

a {
    color: #0f0;
    text-decoration: none;
}

.page-center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    color: #0f0;
    text-shadow: 0 0 15px #0f0;
    margin-bottom: 15px;
    letter-spacing: 10px;
    text-align: center;
}

.hero-subtitle {
    font-size: 14px;
    color: #0a0;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-motto {
    font-size: 12px;
    color: #0a0;
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 30px;
    border-top: 1px solid #0a0;
    padding-top: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 40px;
    color: #0f0;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    border: 1px solid #0f0;
    padding: 10px 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #0f0;
    transition: all 0.3s;
}

.btn:hover {
    background: #0f0;
    color: #000;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    color: #0f0;
    text-shadow: 0 0 15px #0f0;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.back-link {
    color: #0a0;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.muted {
    color: #0a0;
    font-size: 14px;
}
