        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 28, 50, 0.8) 0%, rgba(10, 10, 25, 0.9) 90%);
        }
        a {
            color: #8a6eff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #b19cff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c1a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #8a6eff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #8a6eff, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(138, 110, 255, 0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 20px rgba(138, 110, 255, 0.6);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #8a6eff;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e0e0ff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a1a2e;
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #2a2a3e;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #8a6eff;
        }
        .main-content {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid #2a2a3e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #8a6eff;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(138, 110, 255, 0.3);
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #aaa;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2, h3 {
            color: #c9b6ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a3a5e;
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #d0c6ff;
            background: rgba(138, 110, 255, 0.1);
            padding: 1.5rem;
            border-left: 5px solid #8a6eff;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: rgba(255, 107, 157, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ff6b9d;
            margin: 2rem 0;
        }
        .highlight strong {
            color: #ff9dc1;
        }
        .featured-image {
            margin: 2.5rem 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 0.8rem;
            background: rgba(0,0,0,0.5);
            border-radius: 0 0 12px 12px;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
            background: rgba(30, 30, 50, 0.6);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #3a3a5e;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #8a6eff;
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        blockquote {
            border-left: 4px solid #ff6b9d;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #d0c6ff;
            background: rgba(255,107,157,0.05);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: rgba(110, 255, 182, 0.1);
            border-left: 5px solid #6effb6;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .tip::before {
            content: "💡 PRO TIP: ";
            font-weight: bold;
            color: #6effb6;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: rgba(30,30,50,0.6);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .comparison-table th, .comparison-table td {
            padding: 1.2rem 1rem;
            text-align: left;
            border-bottom: 1px solid #3a3a5e;
        }
        .comparison-table th {
            background: rgba(138, 110, 255, 0.2);
            color: #c9b6ff;
            font-weight: 700;
        }
        .comparison-table tr:hover {
            background: rgba(255,255,255,0.03);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #2a2a3e;
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: #c9b6ff;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #8a6eff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid #3a3a5e;
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: #8a6eff;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #7254e6;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: transform 0.2s ease;
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid #3a3a5e;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .comment-form button, .rating-widget button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(90deg, #8a6eff, #6b5bff);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .comment-form button:hover, .rating-widget button:hover {
            background: linear-gradient(90deg, #7254e6, #5a4ae6);
            box-shadow: 0 5px 15px rgba(138, 110, 255, 0.4);
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #3a3a5e;
        }
        .related-links a::before {
            content: "🔗 ";
            font-size: 0.9em;
        }
        .long-tail-section {
            margin: 3rem 0;
            padding: 2.5rem;
            background: rgba(15, 15, 30, 0.9);
            border-radius: 15px;
            border: 1px solid #2a2a3e;
        }
        .long-tail-section h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 70, 0.5);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid #8a6eff;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(60, 60, 100, 0.7);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(138, 110, 255, 0.2);
        }
        .site-footer {
            background: #0a0a15;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #8a6eff;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #c9b6ff;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a2a3e;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright a {
            color: #aaa;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
        .strong { font-weight: 700; color: #ff9dc1; }
        .keyword { background: rgba(138, 110, 255, 0.2); padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .desktop-nav { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .article-content, .sidebar-widget { padding: 1.5rem; }
            .stats-box { grid-template-columns: 1fr; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
