﻿:root {
            --primary: rgb(236, 72, 153);
            --primary-dark: rgb(219, 39, 119);
            --primary-light: rgba(236, 72, 153, 0.1);
            --bg-dark: #0b1121;
            --bg-darker: #050811;
            --bg-card: #1f2937;
            --bg-light: #f8fafc;
            --text-white: #ffffff;
            --text-gray: #9ca3af;
            --text-dark: #111827;
            --border-color: #374151;
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: var(--font-main); color: var(--text-dark); background-color: var(--bg-light); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background-color: var(--bg-darker); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .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: 20px; font-weight: 800; line-height: 1; color: var(--text-white); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { color: var(--text-gray); font-size: 15px; font-weight: 500; }
        .nav-desktop a:hover { color: var(--primary); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn-primary { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(236,72,153,0.3); }
        .btn-outline { border: 1px solid var(--border-color); color: var(--text-white); padding: 9px 23px; border-radius: 6px; font-weight: 600; }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
        
        
        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 5px; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-darker); z-index: 1000; transition: var(--transition); box-shadow: 4px 0 20px rgba(0,0,0,0.5); display: flex; flex-direction: column; }
        .mobile-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 { background: none; border: none; color: var(--text-gray); font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; color: var(--text-white); font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        
        
        .hero { background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%); color: #fff; padding: 80px 0 100px; position: relative; overflow: hidden; }
        .hero::after { content: ''; position: absolute; right: -10%; top: -20%; width: 50%; height: 100%; background: radial-gradient(circle, rgba(236,72,153,0.15) 0%, rgba(0,0,0,0) 70%); pointer-events: none; }
        .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-content h1 { font-size: 48px; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; max-width: 90%; }
        .hero-actions { display: flex; gap: 20px; }
        .hero-visual { position: relative; }
        .hero-img-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 1px solid var(--border-color); }
        .live-badge { position: absolute; top: 20px; left: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 8px; font-size: 14px; border: 1px solid rgba(236,72,153,0.5); }
        .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(236,72,153, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(236,72,153, 0); } 100% { box-shadow: 0 0 0 0 rgba(236,72,153, 0); } }

        
        .ticker { background: var(--primary); color: #fff; padding: 12px 0; overflow: hidden; font-size: 14px; font-weight: 600; }
        .ticker-inner { display: flex; white-space: nowrap; animation: scroll 30s linear infinite; gap: 40px; }
        .ticker-item { display: inline-flex; align-items: center; gap: 8px; }
        .ticker-up { color: #fff; } .ticker-down { color: #fff; opacity: 0.8; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 32px; color: var(--bg-dark); margin-bottom: 15px; }
        .section-header p { color: var(--text-gray); font-size: 16px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .feature-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid #e5e7eb; }
        .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--primary-light); }
        .feature-icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; font-weight: bold; }
        .feature-card h3 { font-size: 20px; margin-bottom: 10px; }
        .feature-card p { color: #6b7280; font-size: 14px; }

        
        .bg-gray { background-color: #f3f4f6; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .article-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: var(--transition); display: flex; flex-direction: column; }
        .article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .article-img { width: 100%; height: 200px; object-fit: cover; }
        .article-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .article-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-gray); margin-bottom: 10px; }
        .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-title a:hover { color: var(--primary); }
        .article-desc { font-size: 14px; color: #6b7280; margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .article-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f3f4f6; }
        .article-tag { background: var(--primary-light); color: var(--primary); font-size: 12px; padding: 4px 10px; border-radius: 4px; }

        
        .cta-section { background: var(--bg-darker); padding: 80px 0; text-align: center; color: #fff; position: relative; }
        .cta-section::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(236,72,153,0.1) 0%, transparent 60%); pointer-events: none; }
        .cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
        .cta-content h2 { font-size: 36px; margin-bottom: 20px; }
        .cta-content p { color: var(--text-gray); margin-bottom: 30px; font-size: 16px; }

        
        .footer { background: var(--bg-dark); color: #fff; padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand p { color: var(--text-gray); margin-top: 20px; font-size: 14px; line-height: 1.8; max-width: 300px; }
        .footer-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #fff; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-gray); font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); color: var(--text-gray); font-size: 14px; }
        .footer-bottom a:hover { color: var(--primary); }

        
        @media (max-width: 992px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 36px; }
            .hero-content p { margin: 0 auto 30px; }
            .hero-actions { justify-content: center; }
            .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-desktop, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .grid-4, .grid-3 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-brand p { margin: 20px auto; }
            .ticker-inner { animation-duration: 15s; }
        }