* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f0eb;
            color: #2c3e50;
            line-height: 1.75;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #e67e22;
            text-decoration: none;
            transition: all .3s;
        }
        a:hover {
            color: #c0392b;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
        }
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-style: italic;
            text-decoration: none;
            transition: transform .3s;
        }
        .my-logo span {
            color: #e67e22;
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #fff;
            cursor: pointer;
        }
        .navbar {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .navbar a {
            color: #ddd;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: .5px;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all .3s;
        }
        .navbar a:hover {
            color: #e67e22;
            border-color: #e67e22;
        }
        .breadcrumb {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            font-size: 14px;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #aaa;
        }
        .breadcrumb a {
            color: #777;
        }
        main {
            padding: 40px 0;
        }
        article {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 42px;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 4px solid #e67e22;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 30px;
            font-weight: 800;
            color: #1a1a2e;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #e67e22;
        }
        h3 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 19px;
            font-weight: 600;
            color: #555;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #888;
            font-size: 14px;
            margin-bottom: 25px;
            background: #f8f9fa;
            padding: 12px 20px;
            border-radius: 8px;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-left: 5px solid #e67e22;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 25px 0;
            font-style: italic;
        }
        .info-box {
            background: #e8f4fd;
            border-left: 5px solid #2196f3;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .warning-box {
            background: #fdecea;
            border-left: 5px solid #e53935;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 25px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
        .card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #eee;
            transition: transform .3s, box-shadow .3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
        }
        .card h4 {
            color: #e67e22;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th,
        td {
            padding: 12px 15px;
            border: 1px solid #eee;
            text-align: left;
        }
        th {
            background: #1a1a2e;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f9fa;
        }
        .featured-image {
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 30px rgba(0, 0, 0, .1);
        }
        .btn {
            display: inline-block;
            background: #e67e22;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all .3s;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(230, 126, 34, .4);
        }
        .search-section {
            background: linear-gradient(135deg, #1a1a2e, #2c3e50);
            padding: 40px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            color: #fff;
        }
        .search-section h3 {
            color: #fff;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 20px auto;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
        }
        .search-form button {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 14px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
        }
        .comment-form,
        .score-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid #eee;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        .score-form {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .star-rating i {
            font-size: 24px;
            color: #f1c40f;
            cursor: pointer;
            transition: transform .2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #fff;
        }
        footer a {
            color: #e67e22;
        }
        friend-link {
            display: block;
            background: #222;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid #333;
        }
        friend-link a {
            margin: 0 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 14px;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                gap: 15px;
            }
            .navbar.active {
                display: flex;
            }
            .navbar a {
                font-size: 16px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            article {
                padding: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            .search-form {
                flex-direction: column;
            }
            .header-flex {
                padding: 0 15px;
            }
        }
        @media(max-width:480px) {
            h1 {
                font-size: 24px;
            }
            .meta-info {
                flex-direction: column;
                gap: 5px;
            }
        }
