        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #74c0fc; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-accent { color: #00d4ff; }
        .bold { font-weight: 700; }
        .highlight-box {
            background: rgba(0, 212, 255, 0.08);
            border-left: 4px solid #00d4ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .main-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00d4ff, #0088cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { font-size: 2.2rem; }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #00d4ff;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #00d4ff;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(15, 15, 25, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #2a2a3a;
            color: #ddd;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a3a;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #00d4ff; }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff, #00d4ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #888;
            font-style: italic;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .article-content { grid-template-columns: 1fr; }
        }
        .main-article { font-size: 1.1rem; }
        .main-article p { margin-bottom: 1.5rem; text-align: justify; }
        .main-article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            color: #00d4ff;
            border-bottom: 2px solid #2a2a3a;
            padding-bottom: 10px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #4dabf7;
        }
        .featured-image {
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
        }
        .sidebar-widget {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #3a3a5a;
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #00d4ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .live-counter {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            color: #00ff9d;
            text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
            margin: 15px 0;
        }
        .platform-stats { list-style: none; }
        .platform-stats li {
            padding: 12px;
            border-bottom: 1px dashed #444;
            display: flex;
            justify-content: space-between;
        }
        .interactive-section {
            background: rgba(20, 25, 40, 0.8);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #00d4ff;
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #00d4ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #0088cc, #00d4ff);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: linear-gradient(90deg, #00d4ff, #0088cc);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffd700; }
        .footer-links-section {
            padding: 40px 0;
            border-top: 1px solid #2a2a3a;
            border-bottom: 1px solid #2a2a3a;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 6px;
            border: 1px solid #333;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 212, 255, 0.05);
            border-color: #00d4ff;
            transform: translateX(5px);
        }
        .main-footer {
            padding: 30px 0;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-content { padding: 0 10px; }
            .interactive-section { padding: 20px; }
            .live-counter { font-size: 2.5rem; }
        }
