* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, #1a1a2e, #16213e);
            padding: 1rem 0;
            border-bottom: 3px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        main {
            padding: 2rem 0;
            background-color: #141a24;
            min-height: 100vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            border-left: 5px solid #d4af37;
        }
        h1 {
            font-size: 3.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px #000;
        }
        h2 {
            font-size: 2.5rem;
            color: #b38b2d;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid #444;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 2rem;
            color: #c9a645;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #d4b977;
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid #d4af37;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #d4af37;
            box-shadow: 0 4px 12px rgba(0,0,0,0.7);
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-box {
            background: #1a1a2e;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        .feature-box h3 {
            color: #d4af37;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #444;
            border-radius: 5px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem 1.5rem;
            background-color: #d4af37;
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #ffd700;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #888;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        footer {
            background-color: #0a0e14;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #d4af37;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a2e;
                padding: 1rem;
                border-top: 1px solid #333;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
        }
