﻿:root {
            --primary: rgb(241, 250, 140);
            --primary-hover: rgb(220, 230, 110);
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --bg-body: #0b1329;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
            --border-color: rgba(241, 250, 140, 0.15);
            --border-hover: rgba(241, 250, 140, 0.35);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 42px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; letter-spacing: 0.5px; }
        
        
        .site-header { background-color: rgba(15, 23, 42, 0.95); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .desktop-nav { display: flex; align-items: center; gap: 30px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-light); position: relative; padding: 8px 0; }
        .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary); transition: width 0.3s ease; }
        .desktop-nav a:hover::after { width: 100%; }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        
        
        .btn-primary { display: inline-flex; align-items: center; justify-content: center; background-color: var(--primary); color: #0f172a; font-weight: bold; padding: 12px 28px; border-radius: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(241, 250, 140, 0.25); border: none; cursor: pointer; }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(241, 250, 140, 0.4); }
        .btn-primary-sm { display: inline-flex; align-items: center; justify-content: center; background-color: var(--primary); color: #0f172a; font-weight: bold; padding: 8px 18px; border-radius: 6px; font-size: 14px; transition: all 0.3s ease; border: none; cursor: pointer; }
        .btn-primary-sm:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
        .btn-outline { display: inline-flex; align-items: center; justify-content: center; background-color: transparent; color: var(--primary); border: 2px solid var(--primary); font-weight: bold; padding: 10px 26px; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; }
        .btn-outline:hover { background-color: rgba(241, 250, 140, 0.1); transform: translateY(-2px); }
        
        
        .mobile-toggle-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; }
        .mobile-toggle-btn span { display: block; width: 100%; height: 2px; background-color: var(--text-light); transition: all 0.3s ease; }
        
        
        .mobile-drawer-mask { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
        .mobile-drawer-mask.active { display: block; opacity: 1; }
        .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-dark); z-index: 1001; transition: left 0.3s ease; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--border-color); }
        .mobile-drawer.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
        .drawer-close-btn { font-size: 28px; background: none; border: none; color: var(--text-light); cursor: pointer; }
        .mobile-menu { display: flex; flex-direction: column; gap: 20px; }
        .mobile-menu a { font-size: 16px; font-weight: 500; display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .mobile-menu a:hover { color: var(--primary); }
        .drawer-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
        .btn-primary-block { display: flex; align-items: center; justify-content: center; background-color: var(--primary); color: #0f172a; font-weight: bold; padding: 12px; border-radius: 8px; width: 100%; text-align: center; }
        .drawer-footer p { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 15px; }

        
        .hero { position: relative; padding: 100px 0 80px; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(241, 250, 140, 0.1) 0%, transparent 60%); }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
        .hero-content h1 { font-size: 48px; line-height: 1.2; font-weight: 800; color: var(--text-light); margin-bottom: 20px; }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; }
        .hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
        .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
        .hero-card { background: linear-gradient(135deg, var(--bg-card) 0%, #111a2e 100%); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; width: 100%; max-width: 440px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
        .hero-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(241, 250, 140, 0.05) 0%, transparent 70%); }
        .card-stat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
        .card-stat-title { font-size: 16px; font-weight: bold; color: var(--primary); }
        .card-stat-badge { background-color: rgba(241, 250, 140, 0.1); border: 1px solid var(--primary); color: var(--primary); font-size: 12px; padding: 3px 10px; border-radius: 12px; }
        .stat-item { margin-bottom: 15px; }
        .stat-label { font-size: 13px; color: var(--text-muted); margin-bottom: 5px; display: flex; justify-content: space-between; }
        .stat-progress { height: 6px; background-color: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
        .stat-fill { height: 100%; background-color: var(--primary); border-radius: 3px; }

        
        .stats-bar { background-color: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 30px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .stat-box h3 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
        .stat-box p { font-size: 14px; color: var(--text-muted); }

        
        .section-padding { padding: 80px 0; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 55px; }
        .section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
        .section-header h2 span { color: var(--primary); }
        .section-header p { font-size: 16px; color: var(--text-muted); }
        .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .adv-card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px; transition: all 0.3s ease; text-align: left; }
        .adv-card:hover { transform: translateY(-5px); border-color: var(--border-hover); box-shadow: 0 10px 30px rgba(241, 250, 140, 0.05); }
        .adv-icon { width: 60px; height: 60px; background-color: rgba(241, 250, 140, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--primary); font-size: 24px; font-weight: bold; }
        .adv-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: var(--text-light); }
        .adv-card p { font-size: 14px; color: var(--text-muted); }

        
        .news-section { background-color: rgba(15, 23, 42, 0.5); border-top: 1px solid var(--border-color); }
        .news-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
        .news-column h3 { font-size: 24px; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--primary); padding-left: 12px; }
        .article-card { display: flex; gap: 20px; background-color: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 15px; margin-bottom: 20px; transition: all 0.3s ease; }
        .article-card:hover { border-color: var(--border-color); transform: translateY(-2px); }
        .article-img { width: 140px; height: 100px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background-color: rgba(255,255,255,0.05); }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
        .article-info h4 { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--text-light); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-info h4 a:hover { color: var(--primary); }
        .article-meta { display: flex; align-items: center; gap: 15px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
        .article-tag { background-color: rgba(241, 250, 140, 0.1); color: var(--primary); padding: 1px 8px; border-radius: 4px; }
        
        
        .cta-section { background: linear-gradient(135deg, #10192e 0%, #080d1a 100%); border-top: 1px solid var(--border-color); position: relative; }
        .cta-box { background: linear-gradient(135deg, rgba(241, 250, 140, 0.08) 0%, transparent 100%); border: 1px solid var(--border-color); border-radius: 24px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
        .cta-box h2 { font-size: 40px; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
        .cta-box p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto 35px; }
        
        
        .site-footer { background-color: #080e1a; border-top: 1px solid var(--border-color); padding: 80px 0 0; }
        .footer-container { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr; gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo { margin-bottom: 20px; }
        .brand-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
        .contact-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
        .contact-info p span { color: var(--text-light); }
        .footer-nav-col h4, .footer-tags-col h4 { font-size: 16px; font-weight: bold; color: var(--text-light); margin-bottom: 25px; position: relative; }
        .footer-nav-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background-color: var(--primary); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: var(--text-muted); }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
        .footer-tag-cloud a { font-size: 12px; background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 20px; color: var(--text-muted); }
        .footer-tag-cloud a:hover { color: #000; background-color: var(--primary); border-color: var(--primary); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 0; font-size: 13px; color: var(--text-muted); }
        .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        .warning-text { color: #f43f5e; font-size: 12px; max-width: 600px; text-align: right; }

        
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-toggle-btn { display: flex; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-actions { justify-content: center; }
            .adv-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr 1fr; }
            .warning-text { text-align: left; }
        }
        @media (max-width: 576px) {
            .hero-content h1 { font-size: 32px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .footer-container { grid-template-columns: 1fr; }
            .footer-bottom-container { flex-direction: column; text-align: center; }
            .warning-text { text-align: center; }
            .article-card { flex-direction: column; }
            .article-img { width: 100%; height: 160px; }
            .cta-box { padding: 35px 20px; }
            .cta-box h2 { font-size: 28px; }
        }