        * { 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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        a { color: #2a6ebb; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e63946; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }
        .my-logo:hover { color: #fff; text-decoration: none; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2980;
            padding: 1rem;
            border-top: 2px solid #26d0ce;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            background: #f1f8ff;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce7f3;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #1a2980; }
        .breadcrumb span { color: #888; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
        aside { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); align-self: start; }
        h1 {
            font-size: 2.8rem;
            color: #1a2980;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2rem;
            color: #264653;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd166;
        }
        h3 {
            font-size: 1.6rem;
            color: #2a6ebb;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #e63946;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd16630 0%, #ffd16610 100%);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .code-box {
            background: #2b2d42;
            color: #edf2f4;
            padding: 1.5rem;
            border-radius: 8px;
            font-family: monospace;
            font-size: 1.3rem;
            text-align: center;
            margin: 1rem 0;
            letter-spacing: 1px;
            border: 2px dashed #e63946;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .code-box:hover { transform: scale(1.02); }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .form-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 1px solid #dee2e6;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a6ebb;
            box-shadow: 0 0 0 3px rgba(42, 110, 187, 0.2);
        }
        button {
            background: linear-gradient(90deg, #1a2980, #2a6ebb);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(90deg, #e63946, #f4a261);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            margin: 0.5rem 0;
        }
        .star { cursor: pointer; }
        .related-links {
            list-style: none;
            margin: 1.5rem 0;
        }
        .related-links li {
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            background: #f1f8ff;
            border-radius: 6px;
            border-left: 4px solid #2a6ebb;
        }
        .related-links a {
            color: #1a2980;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background: #1a2980;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffd166;
            border-bottom: 2px solid #26d0ce;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 0.6rem 1.2rem;
            margin: 0.3rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .updated-time {
            font-style: italic;
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
