* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(145deg, #3e2723 0%, #5d4037 30%, #795548 60%, #d7ccc8 100%); color: #f5f0eb; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: rgba(62, 39, 35, 0.85); backdrop-filter: blur(12px); border-bottom: 3px solid #a1887f; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; background: linear-gradient(135deg, #ffcc80, #ffe0b2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 2px 10px rgba(255,204,128,0.3); }
        .nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
        .nav-links a { color: #f5f0eb; text-decoration: none; padding: 8px 18px; border-radius: 30px; background: rgba(161, 136, 127, 0.25); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { background: #a1887f; color: #3e2723; border-color: #d7ccc8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        h1 { font-size: 3.2rem; font-weight: 800; text-align: center; margin: 50px 0 20px; background: linear-gradient(135deg, #ffcc80, #ffe0b2, #ffab40); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 4px 20px rgba(255,204,128,0.2); letter-spacing: 2px; }
        .geo-intro-text { background: rgba(62, 39, 35, 0.6); border-radius: 24px; padding: 40px; margin: 30px 0 50px; border-left: 6px solid #ffcc80; backdrop-filter: blur(4px); font-size: 1.1rem; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
        .card { background: linear-gradient(145deg, rgba(94, 64, 55, 0.9), rgba(62, 39, 35, 0.95)); border-radius: 28px; padding: 30px; border: 1px solid rgba(161, 136, 127, 0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.4); transition: all 0.4s; backdrop-filter: blur(4px); }
        .card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.6); border-color: #ffcc80; }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 18px; margin-bottom: 20px; border: 2px solid rgba(255,204,128,0.15); }
        .card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #ffcc80; }
        .card p { color: #e0d6d1; }
        .section-title { font-size: 2.4rem; font-weight: 700; margin: 60px 0 30px; text-align: center; color: #ffe0b2; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); }
        .section-title::after { content: ''; display: block; width: 80px; height: 4px; background: #ffcc80; margin: 12px auto 0; border-radius: 4px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 40px 0; }
        .stat-item { text-align: center; padding: 30px 15px; background: rgba(62, 39, 35, 0.7); border-radius: 20px; border: 1px solid rgba(161, 136, 127, 0.2); }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #ffcc80; }
        .stat-label { font-size: 1rem; color: #d7ccc8; margin-top: 8px; }
        .faq-item { background: rgba(62, 39, 35, 0.65); border-radius: 18px; padding: 25px; margin-bottom: 20px; border-left: 4px solid #a1887f; transition: 0.3s; }
        .faq-item:hover { border-left-color: #ffcc80; }
        .faq-question { font-weight: 700; font-size: 1.2rem; color: #ffe0b2; margin-bottom: 12px; cursor: pointer; }
        .faq-answer { color: #e0d6d1; font-size: 1rem; }
        .news-item { background: rgba(62, 39, 35, 0.8); border-radius: 24px; padding: 30px; margin-bottom: 30px; border: 1px solid rgba(161, 136, 127, 0.2); }
        .news-date { color: #a1887f; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; display: block; }
        .news-title { font-size: 1.5rem; font-weight: 700; color: #ffcc80; margin-bottom: 12px; }
        .news-summary { color: #d7ccc8; }
        footer { background: rgba(30, 18, 15, 0.95); margin-top: 80px; padding: 50px 20px 30px; border-top: 3px solid #a1887f; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
        .footer-section h4 { color: #ffcc80; margin-bottom: 15px; font-size: 1.2rem; }
        .footer-section p, .footer-section a { color: #d7ccc8; font-size: 0.95rem; }
        .footer-section a { text-decoration: none; display: inline-block; margin: 3px 0; }
        .footer-section a:hover { color: #ffcc80; }
        .footer-bottom { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(161, 136, 127, 0.2); color: #a1887f; font-size: 0.9rem; }
        .footer-bottom a { color: #d7ccc8; margin: 0 8px; text-decoration: none; }
        .footer-bottom a:hover { color: #ffcc80; }
        .friend-links { margin-top: 20px; }
        .friend-links a { color: #d7ccc8; margin: 0 5px; text-decoration: none; }
        .friend-links a:hover { color: #ffcc80; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .header-inner { flex-direction: column; gap: 15px; }
            .card-grid { grid-template-columns: 1fr; }
            .nav-links { justify-content: center; }
        }
        .cta-button { display: inline-block; background: linear-gradient(135deg, #ffcc80, #ffab40); color: #3e2723; padding: 14px 40px; border-radius: 50px; font-weight: 700; font-size: 1.2rem; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
        .cta-button:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255,204,128,0.4); }
        .hero-banner { background: linear-gradient(135deg, rgba(255,204,128,0.1), rgba(62,39,35,0.8)), url('/img/lol.webp') center/cover; border-radius: 40px; padding: 80px 40px; text-align: center; margin: 40px 0; }
        .hero-banner h2 { font-size: 3rem; color: #fff; margin-bottom: 20px; }