* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f7f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c23152;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #ddd;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            color: #fff;
            background: rgba(233, 69, 96, 0.25);
            text-decoration: none;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 2px 4px 2px 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: border 0.2s;
        }
        .nav-search-form:focus-within {
            border-color: #e94560;
        }
        .nav-search-form input {
            background: none;
            border: none;
            color: #fff;
            padding: 6px 0;
            font-size: 0.9rem;
            outline: none;
            min-width: 120px;
        }
        .nav-search-form input::placeholder {
            color: #999;
        }
        .nav-search-form button {
            background: #e94560;
            border: none;
            color: #fff;
            padding: 6px 14px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        .nav-search-form button:hover {
            background: #c23152;
        }
        .breadcrumb {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #e94560;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 50px 0 40px;
            color: #fff;
            text-align: center;
            border-bottom: 4px solid #e94560;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 20px;
            color: #ccc;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #999;
        }
        .hero .meta i {
            margin-right: 4px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            background: #fff;
            border-radius: 16px;
            padding: 36px 32px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f3460;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f5af19;
        }
        .main-content h2:first-child {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a2e;
            margin: 28px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e94560;
            margin: 20px 0 8px;
        }
        .main-content p {
            margin-bottom: 16px;
            color: #2d2d44;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #2d2d44;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #fef9e7;
            border-left: 4px solid #f5af19;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .main-content .highlight-box strong {
            color: #0f3460;
        }
        .main-content .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            background: #f0f2f5;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #666;
            background: #fff;
            border-top: 1px solid #eee;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 22px 20px;
            margin-bottom: 24px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f3460;
            margin-bottom: 12px;
            border-bottom: 2px solid #f5af19;
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card li a {
            color: #1a1a2e;
            font-weight: 500;
            display: block;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar-card li a:hover {
            background: #fef3e7;
            text-decoration: none;
            color: #e94560;
        }
        .rating-section {
            margin: 32px 0 20px;
            padding: 20px 24px;
            background: #f8f9fa;
            border-radius: 14px;
            border: 1px solid #e9ecef;
        }
        .rating-section h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
            flex-wrap: wrap;
        }
        .stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .stars i:hover,
        .stars i.active {
            color: #f5af19;
            transform: scale(1.1);
        }
        .rating-section .score-output {
            font-weight: 600;
            color: #0f3460;
        }
        .rating-section .score-form button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 6px;
        }
        .rating-section .score-form button:hover {
            background: #c23152;
        }
        .comment-section {
            margin: 32px 0 10px;
            padding: 24px;
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e9ecef;
        }
        .comment-section h4 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-section textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.2s;
        }
        .comment-section textarea:focus {
            border-color: #e94560;
            outline: none;
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 0.95rem;
            margin: 8px 0 12px;
            transition: border 0.2s;
        }
        .comment-section input[type="text"]:focus {
            border-color: #e94560;
            outline: none;
        }
        .comment-section button {
            background: #0f3460;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-section button:hover {
            background: #1a1a2e;
        }
        .comment-list {
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 16px;
        }
        .comment-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .comment-item strong {
            color: #0f3460;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 12px;
        }
        footer {
            background: #0f3460;
            color: #ddd;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer a {
            color: #f5af19;
        }
        footer a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 16px 20px;
            border-radius: 12px;
            margin: 16px 0 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: #aaa;
        }
        .copyright strong {
            color: #fff;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 10px;
            }
            .nav-search-form {
                width: 100%;
                margin-top: 4px;
            }
            .nav-search-form input {
                width: 1px;
                flex: 1;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .main-content {
                padding: 24px 16px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 0;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .stars {
                font-size: 1.5rem;
            }
        }
        .text-muted {
            color: #999;
        }
        .mt-4 {
            margin-top: 24px;
        }
        .mb-2 {
            margin-bottom: 8px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
