        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #0b0f1a;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #fde047;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            background: linear-gradient(145deg, #141b2b, #1f2a3f);
            padding: 20px 0;
            border-bottom: 2px solid #facc15;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(250, 204, 21, 0.25);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #facc15;
            color: #0b0f1a;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a2335;
            padding: 14px 20px;
            border-radius: 12px;
            margin: 24px 0 16px;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #facc15;
        }
        .breadcrumb .current {
            color: #ffffff;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 32px 0 16px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #facc15;
            border-left: 6px solid #f97316;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #fde047;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #fef9c3;
        }
        .hero-image {
            margin: 28px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .hero-image img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .content-section {
            background: #141b2b;
            padding: 28px 24px;
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid #1f2a3f;
        }
        .content-section p {
            margin-bottom: 1.2rem;
        }
        .stat-highlight {
            background: #1f2a3f;
            border-left: 6px solid #facc15;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
            font-style: italic;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 540px;
            margin: 24px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 18px;
            border-radius: 40px;
            border: none;
            background: #1a2335;
            color: #fff;
            font-size: 1rem;
            border: 1px solid #2a3a55;
            transition: 0.2s;
            min-width: 180px;
        }
        .search-box input:focus {
            outline: none;
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
        }
        .search-box button {
            padding: 14px 28px;
            border-radius: 40px;
            border: none;
            background: #facc15;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #fde047;
            transform: scale(1.02);
        }
        .comment-area textarea {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #2a3a55;
            background: #1a2335;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #facc15;
            outline: none;
        }
        .comment-area button,
        .rating-area button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #facc15;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 8px;
        }
        .comment-area button:hover,
        .rating-area button:hover {
            background: #fde047;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            margin: 8px 0;
        }
        .rating-stars i {
            transition: 0.15s;
            color: #475569;
        }
        .rating-stars i.active {
            color: #facc15;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #facc15;
        }
        friend-link {
            display: block;
            background: #1a2335;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 40px 0 20px;
            border-top: 4px solid #facc15;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #0b0f1a;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #facc15;
            color: #0b0f1a;
            text-decoration: none;
        }
        footer {
            padding: 32px 0 20px;
            border-top: 2px solid #1f2a3f;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
        }
        @media (max-width: 820px) {
            .two-col {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 20px 0 8px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 12px 16px;
            }
            .content-section {
                padding: 20px 16px;
            }
        }
        @media (max-width: 480px) {
            .search-box input {
                min-width: 140px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .updated-badge {
            display: inline-block;
            background: #1f2a3f;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #facc15;
            margin-bottom: 12px;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .list-disc {
            padding-left: 24px;
            margin: 12px 0;
        }
        .list-disc li {
            margin-bottom: 8px;
        }
        .key-insight {
            background: #0b0f1a;
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid #facc1540;
            margin: 16px 0;
        }
        hr {
            border: none;
            border-top: 1px solid #1f2a3f;
            margin: 32px 0;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
