* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #c0a86a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0d111c 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #c0a86a;
            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;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #c0a86a, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #c0a86a;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(192, 168, 106, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #c0a86a;
        }
        main {
            padding: 2.5rem 0;
            min-height: 100vh;
        }
        article {
            background: rgba(26, 31, 46, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 5px solid #c0a86a;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
        }
        h2 {
            font-size: 2.2rem;
            color: #c0a86a;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0c060;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #d4b45a;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            color: #f0f0f0;
            font-weight: 500;
            background: rgba(192, 168, 106, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ffd700;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .section-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid #333;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .link-card {
            background: rgba(40, 45, 60, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #444;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(192, 168, 106, 0.15);
            border-color: #c0a86a;
        }
        .link-card h4 {
            margin-top: 0;
            color: #ffd700;
        }
        .interactive-section {
            background: rgba(30, 35, 50, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .interactive-section h3 {
            text-align: center;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #555;
            background-color: #1a1f2e;
            color: #eee;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c0a86a;
            box-shadow: 0 0 8px rgba(192, 168, 106, 0.4);
        }
        button {
            background: linear-gradient(to right, #c0a86a, #b8942e);
            color: #0a0e17;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #ffd700, #c0a86a);
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #888;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        footer {
            background: #0d111c;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #333;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #c0a86a;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px dashed #333;
        }
        friend-link:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #222;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: flex;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1f2e;
                padding: 1rem;
                border-radius: 8px;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
