* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
        }
        a {
            color: #f8c555;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd99;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Cinzel', serif;
        }
        .logo a:hover {
            color: #f8c555;
        }
        .my-logo {
            font-style: italic;
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background: rgba(248, 197, 85, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f8c555;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 26, 46, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:after {
            content: ">";
            margin-left: 0.5rem;
            color: #888;
        }
        .breadcrumb li:last-child:after {
            content: "";
        }
        main {
            padding: 2rem 0;
            background: rgba(22, 33, 62, 0.95);
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
            margin-bottom: 2rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 1.5rem;
            text-align: center;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #f8c555;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid #444;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0b354;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #cca142;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #fff;
            text-align: center;
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(248, 197, 85, 0.1);
            padding: 1rem;
            border-left: 4px solid #f8c555;
            margin: 1.5rem 0;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .interactive-section form {
            background: rgba(0, 0, 0, 0.4);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #444;
        }
        .interactive-section h3 {
            color: #f8c555;
            margin-bottom: 1rem;
        }
        .interactive-section input,
        .interactive-section textarea,
        .interactive-section select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #555;
            border-radius: 4px;
            background: #222;
            color: #e0e0e0;
        }
        .interactive-section button {
            background: linear-gradient(to bottom, #d4af37, #a8841e);
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .interactive-section button:hover {
            background: linear-gradient(to bottom, #f8c555, #d4af37);
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffdd00;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
        }
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 2rem;
        }
        friend-link h3 {
            color: #f8c555;
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        friend-link ul li a {
            color: #e0e0e0;
            padding: 0.5rem 1rem;
            border: 1px solid #555;
            border-radius: 4px;
            transition: all 0.3s;
        }
        friend-link ul li a:hover {
            background: #f8c555;
            color: #000;
        }
        .copyright {
            margin-top: 2rem;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            nav ul li {
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 0 1rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
