* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background: #121418;
    color: #e0e0e0;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px;
}
nav {
    background: #1a1d24;
    border-bottom: 2px solid #5dade2;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    color: #5dade2;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #5dade2;
    background: #242830;
    transition: all 0.2s ease-out;
    font-size: 0.9rem;
    border-radius: 4px;
}
.nav-links a:hover {
    background: #5dade2;
    color: #121418;
}
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #5dade2;
    padding: 32px 16px 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 30px 0;
}
.card {
    background: #1e2128;
    border: 2px solid #5dade2;
    padding: 16px;
    image-rendering: pixelated;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.15);
    border-radius: 5px;
}
.card img {
    width: 100%;
    height: auto;
    border: 1px solid #5dade2;
    margin-bottom: 10px;
    border-radius: 3px;
}
.card h3 {
    color: #5dade2;
    margin-bottom: 8px;
}
.card p {
    font-size: 0.95rem;
}
.section-title {
    font-size: 1.8rem;
    color: #5dade2;
    border-left: 6px solid #5dade2;
    padding-left: 15px;
    margin: 32px 0 16px;
    text-transform: uppercase;
}
.faq-item {
    background: #1a1d24;
    border: 1px solid #5dade2;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 4px;
}
.faq-item h4 {
    color: #5dade2;
    cursor: pointer;
}
.faq-item p {
    margin-top: 10px;
}
.news-card {
    background: #1e2128;
    border: 2px solid #5dade2;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.news-card .date {
    color: #9ba3af;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.news-card h3 {
    color: #5dade2;
    margin-bottom: 8px;
}
footer {
    background: #1a1d24;
    border-top: 3px solid #5dade2;
    padding: 24px 16px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
}
footer a {
    color: #5dade2;
    text-decoration: none;
    margin: 0 6px;
}
footer .friend-links {
    margin: 20px 0;
}
footer .friend-links a {
    margin: 0 8px;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.stat-item {
    background: #1e2128;
    border: 2px solid #5dade2;
    padding: 16px 24px;
    text-align: center;
    min-width: 160px;
    border-radius: 5px;
}
.stat-item .num {
    font-size: 2.2rem;
    color: #5dade2;
    font-weight: bold;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.partner-logos span {
    background: #242830;
    border: 1px solid #5dade2;
    padding: 8px 16px;
    color: #5dade2;
    border-radius: 4px;
}
@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}