* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #131a24;
            padding: 20px 28px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2a3546;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(145deg, #f5c542, #e09e1f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 6px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #f5c542;
            border-radius: 4px;
            transition: 0.3s;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            font-size: 0.9rem;
            padding: 14px 0 10px;
            color: #9aabbf;
        }
        .breadcrumb a {
            color: #9aabbf;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span.sep {
            color: #55667a;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 18px 0 10px;
            max-width: 520px;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #2a3546;
            border-radius: 40px;
            background: #1c2633;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-box input:focus {
            border-color: #f5c542;
            box-shadow: 0 0 12px rgba(245, 197, 66, 0.15);
        }
        .search-box button {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #ffdd7a;
            transform: scale(1.02);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 28px 0 16px;
            color: #f5c542;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f0d78c;
            border-left: 6px solid #f5c542;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #e3c87a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #d4b96a;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .content-img {
            margin: 28px auto;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            max-width: 800px;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 8px;
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0 30px;
            padding: 28px 24px;
            background: #1c2633;
            border-radius: 20px;
            border: 1px solid #2a3546;
        }
        .comment-section,
        .rating-section {
            flex: 1 1 280px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            color: #f5c542;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #2a3546;
            border-radius: 12px;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #f5c542;
        }
        .comment-section button,
        .rating-section button {
            margin-top: 12px;
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #ffdd7a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #55667a;
            transition: 0.2s;
            flex-wrap: wrap;
        }
        .star-rating span:hover,
        .star-rating span.active {
            color: #f5c542;
            text-shadow: 0 0 12px rgba(245, 197, 66, 0.4);
        }
        footer {
            margin-top: 48px;
            padding: 32px 0 20px;
            border-top: 2px solid #2a3546;
        }
        friend-link {
            display: block;
            margin-bottom: 24px;
            font-weight: 500;
            color: #9aabbf;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            color: #6a7d94;
            font-size: 0.9rem;
            padding-top: 16px;
            border-top: 1px solid #1f2a38;
        }
        .last-updated {
            font-size: 0.95rem;
            color: #9aabbf;
            margin: 8px 0 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            .container {
                padding: 14px 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                gap: 6px;
                padding: 12px 0;
                border-top: 1px solid #2a3546;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 0;
                border-bottom: 1px solid #1f2a38;
            }
            header {
                align-items: flex-start;
            }
            .search-box {
                max-width: 100%;
            }
            .search-box input {
                min-width: 140px;
            }
            .interaction-area {
                padding: 18px 16px;
                gap: 20px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 10px 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .section-spacer {
            height: 12px;
        }
        blockquote {
            border-left: 4px solid #f5c542;
            padding: 12px 20px;
            margin: 20px 0;
            background: #1c2633;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #cbd6e6;
        }
