        * {
            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, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff7a45;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 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;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .site-header {
            background: rgba(10, 10, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff7a45;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff7a45, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 122, 69, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px rgba(255, 122, 69, 0.5); }
            to { text-shadow: 0 0 20px rgba(255, 204, 0, 0.8), 0 0 30px rgba(255, 122, 69, 0.6); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 35, 0.98);
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #ff7a45;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffcc00;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 2px 15px rgba(255, 204, 0, 0.4);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff7a45;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #e0e0ff;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #aaaaff;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #ffcc00;
            font-weight: 300;
            text-align: center;
            margin-bottom: 40px;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255, 122, 69, 0.1), transparent);
            padding: 15px 25px;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            margin: 25px 0;
        }
        .quote {
            font-size: 1.3rem;
            color: #aaaaff;
            text-align: center;
            padding: 30px;
            font-style: italic;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: #ff7a45;
            opacity: 0.5;
            position: absolute;
        }
        .quote::before { top: 0; left: 10px; }
        .quote::after { bottom: -30px; right: 10px; }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        .link-list a {
            background: rgba(255, 122, 69, 0.15);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid #ff7a45;
        }
        .link-list a:hover {
            background: rgba(255, 122, 69, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 122, 69, 0.4);
        }
        .feature-img {
            margin: 40px auto;
            max-width: 800px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        .sidebar {
            background: rgba(15, 15, 30, 0.8);
            border-radius: 15px;
            padding: 30px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #555;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        button, .btn {
            background: linear-gradient(90deg, #ff7a45, #ff9900);
            color: #000;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 122, 69, 0.5);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .stars input { display: none; }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .site-footer {
            background: #0a0a1a;
            margin-top: auto;
            padding: 40px 0 20px;
            border-top: 2px solid #ff7a45;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 122, 69, 0.1);
            border-radius: 6px;
            border: 1px solid #444;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 122, 69, 0.25);
            border-color: #ff7a45;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #222;
        }
