* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background: #1e293b;
    color: #cbd5e1;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}
nav {
    background: #334155;
    border-bottom: 2px solid #3b82f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    color: #3b82f6;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid #3b82f6;
    background: #1e293b;
    transition: 0.2s ease-in-out;
    font-size: 0.9rem;
    border-radius: 6px;
}
.nav-links a:hover {
    background: #3b82f6;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(59,130,246,0.3);
}
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #3b82f6;
    padding: 40px 20px 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.card {
    background: #ffffff;
    border: 2px solid #3b82f6;
    padding: 24px;
    image-rendering: pixelated;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.05);
    border-radius: 18px;
    transition: box-shadow 0.25s ease-out;
}
.card:hover {
    box-shadow: 0 14px 20px -4px rgba(0,0,0,0.12), 0 6px 10px -2px rgba(0,0,0,0.08);
}
.card img {
    width: 100%;
    height: auto;
    border: 1px solid #3b82f6;
    margin-bottom: 12px;
    border-radius: 10px;
}
.card h3 {
    color: #1e293b;
    margin-bottom: 8px;
}
.card p {
    color: #334155;
    font-size: 0.95rem;
}
.section-title {
    font-size: 1.8rem;
    color: #3b82f6;
    border-left: 6px solid #3b82f6;
    padding-left: 15px;
    margin: 40px 0 20px;
    text-transform: uppercase;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #3b82f6;
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}
.faq-item h4 {
    color: #1e293b;
    cursor: pointer;
}
.faq-item h4:hover {
    color: #3b82f6;
}
.faq-item p {
    color: #334155;
    margin-top: 10px;
}
.news-card {
    background: #ffffff;
    border: 2px solid #3b82f6;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 12px -2px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
}
.news-card .date {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.news-card h3 {
    color: #1e293b;
    margin-bottom: 8px;
}
.news-card p {
    color: #334155;
}
footer {
    background: #334155;
    border-top: 3px solid #3b82f6;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #cbd5e1;
}
footer a {
    color: #93c5fd;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s;
}
footer a:hover {
    color: #ffffff;
}
footer .friend-links {
    margin: 20px 0;
}
footer .friend-links a {
    margin: 0 8px;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.stat-item {
    background: #ffffff;
    border: 2px solid #3b82f6;
    padding: 20px 30px;
    text-align: center;
    min-width: 160px;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -2px rgba(0,0,0,0.04);
}
.stat-item .num {
    font-size: 2.2rem;
    color: #3b82f6;
    font-weight: bold;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.partner-logos span {
    background: #1e293b;
    border: 1px solid #3b82f6;
    padding: 10px 18px;
    color: #93c5fd;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}