﻿:root {
            --theme-color: rgb(241,250,140); 
            --theme-hover: #e0e872;
            --text-on-theme: #0f172a;
            --bg-dark: #0f172a;
            --bg-darker: #020617;
            --bg-card: #1e293b;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border-color: #334155;
            --accent-red: #ef4444;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; background-color: var(--bg-darker); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .grid { display: grid; gap: 24px; }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        @media(max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
        
        
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; font-size: 16px; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.3s; text-align: center; }
        .btn-primary { background: var(--theme-color); color: var(--text-on-theme); box-shadow: 0 4px 14px rgba(241,250,140,0.3); }
        .btn-primary:hover { background: var(--theme-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(241,250,140,0.4); }
        .btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--theme-color); }
        .btn-outline:hover { background: rgba(241,250,140,0.1); }

        
        .header { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--theme-color); white-space: nowrap; letter-spacing: 1px; }
        
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-size: 16px; font-weight: 500; color: var(--text-main); position: relative; padding: 8px 0; }
        .nav-desktop a:hover { color: var(--theme-color); }
        .nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--theme-color); transition: width 0.3s; }
        .nav-desktop a:hover::after { width: 100%; }
        
        .header-actions { display: flex; gap: 15px; align-items: center; }
        .menu-toggle { display: none; font-size: 24px; color: var(--theme-color); cursor: pointer; background: none; border: none; }
        
        @media(max-width: 992px) {
            .nav-desktop, .header-actions .btn { display: none; }
            .menu-toggle { display: block; }
        }

        
        .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-dark); z-index: 1000; box-shadow: 5px 0 15px rgba(0,0,0,0.5); transition: left 0.3s ease; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; color: var(--text-muted); cursor: pointer; background: none; border: none; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 25px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .drawer-nav a:hover { color: var(--theme-color); padding-left: 30px; background: rgba(241,250,140,0.05); }

        
        .hero { position: relative; padding: 100px 0; background: linear-gradient(135deg, var(--bg-darker) 0%, #1e1b4b 100%); overflow: hidden; }
        .hero::before { content: ''; position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: url('https://picsum.photos/seed/dafa1/1000/800') center/cover; opacity: 0.2; mask-image: linear-gradient(to left, black, transparent); -webkit-mask-image: linear-gradient(to left, black, transparent); }
        .hero-content { position: relative; z-index: 10; max-width: 600px; }
        .hero-tag { display: inline-block; padding: 6px 12px; background: rgba(241,250,140,0.1); color: var(--theme-color); border-radius: 4px; font-size: 14px; margin-bottom: 20px; border: 1px solid rgba(241,250,140,0.2); }
        .hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .hero h1 span { color: var(--theme-color); }
        .hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
        .hero-stats { display: flex; gap: 40px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
        .stat-item h3 { font-size: 28px; color: var(--theme-color); line-height: 1; margin-bottom: 8px; }
        .stat-item p { font-size: 14px; color: var(--text-muted); }
        @media(max-width: 768px) {
            .hero { padding: 60px 0; text-align: center; }
            .hero-content { margin: 0 auto; }
            .hero::before { width: 100%; mask-image: linear-gradient(to top, black, transparent); -webkit-mask-image: linear-gradient(to top, black, transparent); }
            .hero h1 { font-size: 36px; }
            .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
        }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 15px; position: relative; display: inline-block; }
        .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--theme-color); border-radius: 2px; }
        .section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

        
        .feature-card { background: var(--bg-card); padding: 40px 30px; border-radius: 12px; transition: all 0.3s; border: 1px solid var(--border-color); position: relative; overflow: hidden; }
        .feature-card:hover { transform: translateY(-5px); border-color: var(--theme-color); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .feature-icon { width: 60px; height: 60px; background: rgba(241,250,140,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; color: var(--theme-color); }
        .feature-card h3 { font-size: 20px; margin-bottom: 15px; }
        .feature-card p { color: var(--text-muted); font-size: 15px; }
        .feature-card::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle, rgba(241,250,140,0.1) 0%, transparent 70%); border-radius: 50%; transform: translate(30%, -30%); }

        
        .article-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.3s; display: flex; flex-direction: column; }
        .article-card:hover { border-color: var(--theme-color); transform: translateY(-5px); }
        .article-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
        .article-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .article-tags { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
        .article-tags span { font-size: 12px; background: rgba(255,255,255,0.05); padding: 4px 8px; border-radius: 4px; color: var(--theme-color); }
        .article-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; font-size: 12px; color: var(--text-muted); }

        
        .process-bg { background: linear-gradient(to right, var(--bg-card), var(--bg-dark)); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .step-item { text-align: center; position: relative; }
        .step-num { width: 50px; height: 50px; background: var(--theme-color); color: var(--text-on-theme); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin: 0 auto 20px; position: relative; z-index: 2; box-shadow: 0 0 15px rgba(241,250,140,0.3); }
        .step-item h4 { font-size: 18px; margin-bottom: 10px; color: #fff; }
        .step-item p { color: var(--text-muted); font-size: 14px; }
        @media(min-width: 769px) {
            .step-item:not(:last-child)::after { content: ''; position: absolute; top: 25px; left: 50%; width: 100%; height: 2px; background: dashed 2px var(--border-color); z-index: 1; }
        }

        
        .cta-section { padding: 80px 0; background: url('https://picsum.photos/seed/dafabet/1920/600') center/cover fixed; position: relative; text-align: center; }
        .cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(15, 23, 42, 0.85); }
        .cta-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; }
        .cta-content h2 { font-size: 36px; margin-bottom: 20px; color: #fff; }
        .cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }

        
        .footer { background: #020617; padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 16px; color: #fff; margin-bottom: 20px; font-weight: 600; }
        .footer-col p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-muted); font-size: 14px; display: inline-block; }
        .footer-links a:hover { color: var(--theme-color); transform: translateX(5px); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 14px; color: var(--text-muted); }
        .footer-tags a { color: var(--theme-color); margin-left: 15px; }
        @media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }