        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            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: #ff9a6c;
            text-shadow: 0 0 8px rgba(255, 122, 69, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(20, 20, 30, 0.95);
            border-bottom: 2px solid #ff7a45;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff7a45, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: logo-glow 1s ease-in-out infinite alternate;
        }
        @keyframes logo-glow {
            from { text-shadow: 0 0 5px #ff7a45; }
            to { text-shadow: 0 0 15px #ffcc00, 0 0 5px #ff7a45; }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: rgba(255, 122, 69, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff7a45;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ff7a45; }
        main {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 30, 45, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #ff7a45;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9a6c;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.7rem;
            color: #ffcc00;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ff9a6c;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 122, 69, 0.1);
            border-left: 4px solid #ff7a45;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(30, 30, 45, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: #ffcc00;
            border-bottom: 1px solid #444;
            padding-bottom: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #555;
            background: rgba(20,20,30,0.7);
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff7a45;
            box-shadow: 0 0 0 2px rgba(255,122,69,0.2);
        }
        button {
            padding: 1rem 1.5rem;
            background: linear-gradient(90deg, #ff7a45, #e0551a);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 122, 69, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .related-links li:before {
            content: '🔥';
            position: absolute;
            left: 0;
        }
        footer {
            background: rgba(15, 15, 25, 0.95);
            border-top: 2px solid #333;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0;
        }
        .friend-links a {
            background: rgba(255,122,69,0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; gap: 1rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
            }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article, .sidebar-widget { padding: 1.5rem; }
        }
