:root {
            --primary: #FF3366;
            --secondary: #6633FF;
            --dark: #0A0A1A;
            --light: #F5F5FF;
            --accent: #33FFCC;
            --gray: #8888AA;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .logo:hover {
            text-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: 0.3s;
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            display: none;
            border-top: 1px solid var(--gray);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--light);
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(102, 51, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            color: var(--accent);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            color: var(--primary);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,51,102,0.1), rgba(51,255,204,0.1));
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid var(--secondary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid rgba(51, 255, 204, 0.2);
        }
        .widget h3 {
            color: var(--accent);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: var(--light);
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #FF0044;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .stars i {
            color: gold;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: orange;
        }
        .comment-form textarea {
            width: 100%;
            height: 100px;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--gray);
            border-radius: 5px;
            color: var(--light);
            resize: vertical;
            margin-bottom: 10px;
        }
        .comment-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #5522FF;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(51, 255, 204, 0.05);
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid var(--accent);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--secondary);
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .internal-link {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dashed var(--accent);
            transition: all 0.3s;
        }
        .internal-link:hover {
            color: var(--primary);
            border-bottom: 1px solid var(--primary);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .key-term {
            background: rgba(102, 51, 255, 0.2);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 600;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255,51,102,0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255,51,102,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,51,102,0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .article-content { padding: 25px; }
            .main-content { padding: 20px 0; }
            .footer-container { flex-direction: column; }
        }
