@font-face {
    font-family: 'pixeled';
    src: url('/assets/fonts/pixeled.ttf') format('truetype');
}

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

body {
    font-family: Arial, sans-serif;
    background: #1a1a2e;
    color: #e0e0e0;
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 16px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
}

h1 {
    font-family: 'pixeled', monospace;
    font-size: 20px;
    color: #4fc3f7;
    margin-top: 12px;
}

h2 {
    text-align: center;
    font-size: 13px;
    color: #4fc3f7;
    margin-bottom: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(79, 195, 247, 0.1);
    border-top: 1px solid rgba(79, 195, 247, 0.3);
    border-bottom: 1px solid rgba(79, 195, 247, 0.3);
    padding: 10px 0;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.6);
}

h3 {
    font-size: 16px;
    color: #fff;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 12px;
}

ul {
    list-style: none;
    margin-bottom: 16px;
}

li {
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #4fc3f7;
    font-weight: bold;
}

.cta {
    display: block;
    text-align: center;
    background: #4fc3f7;
    color: #1a1a2e;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 16px;
}

.cta:hover {
    background: #81d4fa;
}

.note {
    font-size: 13px;
    color: #888;
    text-align: center;
}

a:not(.cta) {
    color: #fff;
    text-decoration: underline;
}
