* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, system-ui, sans-serif; }
        body { background: linear-gradient(145deg, #0b1120 0%, #1a1a2e 100%); color: #e2e8f0; min-height: 100vh; display: flex; flex-direction: column; align-items: center; }
        .container { max-width: 1280px; width: 100%; padding: 1.5rem; }
        /* nav */
        nav { width: 100%; background: rgba(11,17,32,0.7); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(251,191,36,0.15); position: sticky; top: 0; z-index: 50; }
        .nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; }
        .logo { font-weight: 700; font-size: 1.3rem; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 2rem; flex-wrap: wrap; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.3rem 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
        .nav-links a:hover { color: #fbbf24; border-bottom-color: #fbbf24; }
        .glass-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 2rem; margin-bottom: 2.5rem; transition: transform 0.25s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        h1 { font-size: 2.8rem; font-weight: 700; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; line-height: 1.2; }
        h2 { color: #fbbf24; font-weight: 600; font-size: 1.8rem; margin-bottom: 1.5rem; border-left: 4px solid #fbbf24; padding-left: 1rem; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
        img { width: 100%; border-radius: 16px; object-fit: cover; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
        .btn-gold { display: inline-block; background: linear-gradient(145deg, #fbbf24, #d97706); color: #0b1120; font-weight: 600; padding: 0.75rem 2rem; border-radius: 40px; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
        .btn-gold:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(251,191,36,0.3); }
        .stat-number { font-size: 2.5rem; font-weight: 700; color: #fbbf24; }
        .stat-label { color: #94a3b8; font-size: 0.95rem; }
        footer { width: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); padding: 2rem 1.5rem; margin-top: 3rem; border-top: 1px solid rgba(251,191,36,0.1); }
        footer a { color: #94a3b8; text-decoration: none; margin: 0 0.5rem; }
        footer a:hover { color: #fbbf24; }
        .friend-links { margin: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; }
        .news-item { margin-bottom: 1.8rem; }
        .news-item h4 { color: #fbbf24; font-size: 1.2rem; margin-bottom: 0.2rem; }
        .news-date { color: #64748b; font-size: 0.8rem; margin-bottom: 0.3rem; }
        .news-summary { color: #cbd5e1; line-height: 1.6; }
        .faq-item { margin-bottom: 1.8rem; }
        .faq-question { font-weight: 600; font-size: 1.1rem; color: #fbbf24; margin-bottom: 0.4rem; }
        .faq-answer { color: #cbd5e1; line-height: 1.7; }
        .tag { background: rgba(251,191,36,0.15); color: #fbbf24; padding: 0.2rem 0.8rem; border-radius: 30px; font-size: 0.75rem; display: inline-block; }
        .mt-4 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 1rem; }
        .flex-center { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            h1 { font-size: 2rem; }
            .nav-links { gap: 1rem; }
        }