        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff9aec;
            text-shadow: 0 0 8px rgba(255, 154, 236, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(110, 231, 255, 0.2) 50%, transparent 100%);
            padding: 2px 8px;
            border-left: 3px solid #6ee7ff;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #3a3560;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #6ee7ff, #ff9aec);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 12px;
            font-size: 2.5rem;
            color: #6ee7ff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(110, 231, 255, 0.15);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaaaff;
            border-bottom: 1px dashed #3a3560;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #aaaaff; }
        .breadcrumb span { margin: 0 8px; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #6ee7ff;
            cursor: pointer;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px solid #3a3560;
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #6ee7ff, #ff9aec);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: #aaaaff;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-content {
            font-size: 1.15rem;
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 50px 0 20px;
            color: #ff9aec;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3560;
        }
        .article-content h3 {
            font-size: 1.9rem;
            margin: 40px 0 15px;
            color: #6ee7ff;
        }
        .article-content h4 {
            font-size: 1.5rem;
            margin: 30px 0 12px;
            color: #b19cff;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }
        .article-content li { margin-bottom: 10px; }
        .feature-img {
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dashed #6ee7ff;
        }
        .sidebar {
            background: rgba(42, 38, 80, 0.6);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #4a4570;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #ff9aec;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid #4a4570;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group.horizontal { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
        .form-label {
            font-weight: 600;
            margin-bottom: 5px;
            color: #b19cff;
        }
        .form-input, .form-textarea, .form-select {
            padding: 12px 15px;
            background: rgba(20, 18, 45, 0.8);
            border: 1px solid #5a5588;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #6ee7ff;
            box-shadow: 0 0 0 3px rgba(110, 231, 255, 0.2);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .btn {
            padding: 14px 28px;
            background: linear-gradient(45deg, #6e44ff, #ff2e8b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 46, 139, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            margin: 10px 0;
        }
        .star-rating .star { transition: color 0.2s; }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffcc00; }
        .site-footer {
            background: rgba(15, 12, 41, 0.98);
            border-top: 1px solid #3a3560;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-widget h4 {
            font-size: 1.5rem;
            color: #6ee7ff;
            margin-bottom: 20px;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        friend-link {
            display: block;
            background: rgba(110, 231, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #3a3560;
            color: #aaaaff;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active { max-height: 400px; margin-top: 20px; }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .article-header h1 { font-size: 2.5rem; }
            .article-content h2 { font-size: 2rem; }
            .article-content h3 { font-size: 1.7rem; }
        }
