* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #0f172a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: -1px;
            background: linear-gradient(145deg, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: 0.2s;
        }
        .my-logo a:hover {
            opacity: 0.8;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
        }
        .breadcrumb {
            background: #e2e8f0;
            padding: 10px 0;
            font-size: 0.95rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #64748b;
        }
        .breadcrumb a {
            color: #0f172a;
            text-decoration: none;
        }
        .breadcrumb .current {
            color: #b45309;
            font-weight: 600;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            border-left: 6px solid #f59e0b;
            padding-left: 16px;
            margin: 40px 0 20px 0;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #1e293b;
        }
        h4 {
            font-weight: 600;
            font-size: 1.2rem;
            margin: 20px 0 8px;
            color: #334155;
        }
        p {
            margin-bottom: 16px;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            border-radius: 40px;
            padding: 6px 18px;
            font-size: 0.9rem;
            color: #475569;
            border: 1px solid #cbd5e1;
        }
        .featured-img {
            width: 100%;
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
        }
        ul, ol {
            margin: 0 0 16px 40px;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight-card {
            background: white;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            margin: 24px 0;
            border: 1px solid #dbeafe;
        }
        .btn-search {
            background: #f59e0b;
            border: none;
            color: #0f172a;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
            font-size: 1rem;
        }
        .btn-search:hover {
            background: #d97706;
            transform: translateY(-2px);
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 50px;
            border: 2px solid #cbd5e1;
            font-size: 1rem;
        }
        .search-form input:focus {
            outline: none;
            border-color: #f59e0b;
        }
        .rating-box, .comment-box {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 18px;
            margin: 24px 0;
        }
        .score-stars i {
            color: #fbbf24;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .score-stars i:hover {
            color: #d97706;
        }
        .comment-textarea {
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #94a3b8;
            margin-top: 8px;
        }
        .submit-btn {
            background: #1e293b;
            color: white;
            border: none;
            padding: 12px 26px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .submit-btn:hover {
            background: #334155;
        }
        .friend-link-container {
            border-block: 1px solid #334155;
            padding: 16px 0;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        friend-link a {
            background: #e2e8f0;
            padding: 10px 18px;
            border-radius: 30px;
            text-decoration: none;
            color: #1e293b;
            transition: 0.2s;
            font-weight: 500;
        }
        friend-link a:hover {
            background: #fbbf24;
        }
        .sidebar-card {
            background: white;
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 24px;
            margin-top: 60px;
            font-size: 0.95rem;
        }
        footer a {
            color: #fbbf24;
        }
        .copyright {
            border-top: 1px solid #1e293b;
            margin-top: 24px;
            padding-top: 20px;
            text-align: center;
        }
        @media (max-width: 700px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f172a;
                padding: 12px 0;
                gap: 12px;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
        }
