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