        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: #0c0c0c;
            color: #e0e0e0;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #ff9900;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffcc66;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: bold; }
        .italic { font-style: italic; }
        .highlight {
            background-color: #333;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .emoji { margin-right: 5px; }
        header {
            background: #1a1a1a;
            border-bottom: 2px solid #ff9900;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff9900;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9900;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background: #333;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff9900;
        }
        .search-box {
            padding: 30px 0;
            background: #151515;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #444;
            border-right: none;
            background: #222;
            color: #fff;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            padding: 12px 25px;
            background: #ff9900;
            border: none;
            color: #000;
            font-weight: bold;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ffcc66;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: #151515;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9900;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ffcc66;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffaa33;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffbb44;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-meta {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 25px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border: 3px solid #444;
            border-radius: 8px;
            overflow: hidden;
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-img img:hover {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 8px;
        }
        .pull-quote {
            border-left: 5px solid #ff9900;
            padding-left: 20px;
            margin: 30px 0;
            font-size: 1.2rem;
            color: #ffcc66;
            font-style: italic;
        }
        .link-list {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: square inside;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 10px;
            break-inside: avoid;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-top: 4px solid #ff9900;
        }
        .stat-card .number {
            font-size: 2.5rem;
            color: #ff9900;
            font-weight: bold;
        }
        .interaction-section {
            margin-top: 50px;
        }
        .rating-form, .comment-form {
            background: #1a1a1a;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .rating-form h3, .comment-form h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            margin: 0 5px;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ff9900;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: #ff9900;
            color: #000;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #ffcc66;
        }
        footer {
            background: #1a1a1a;
            border-top: 2px solid #ff9900;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ff9900;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        friend-link {
            display: inline-block;
            background: #222;
            padding: 8px 15px;
            border-radius: 5px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a1a;
                display: none;
                padding: 20px 0;
                border-top: 1px solid #333;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0;
                text-align: center;
            }
            nav ul li a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .link-list ul {
                columns: 1;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .article-meta {
                flex-direction: column;
            }
        }
