* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e1a;
            color: #e8e8e8;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #ff4757;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b81;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            border-bottom: 3px solid #e94560;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(233, 69, 96, 0.2);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #e94560, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e94560;
            margin-right: 6px;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #f0f0f0;
            font-weight: 600;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-menu a:hover {
            border-bottom-color: #e94560;
            color: #ff6b81;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            color: #e94560;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb-wrap {
            background: #14182b;
            padding: 12px 0;
            border-bottom: 1px solid #2a2f4a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            font-size: 14px;
            color: #aaa;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #e94560;
        }
        .breadcrumb a {
            color: #f5a623;
        }
        .breadcrumb a:hover {
            color: #ff6b81;
        }
        .breadcrumb .current {
            color: #ccc;
        }
        .hero {
            background: linear-gradient(145deg, #0f3460 0%, #1a1a2e 70%, #0b0e1a 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #e94560;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #ff6b81, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #b0b8d1;
            max-width: 750px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            font-size: 14px;
            color: #7f8fa6;
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .hero .meta-info span i {
            color: #e94560;
            margin-right: 6px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-article h2 {
            font-size: 2rem;
            color: #f5a623;
            margin: 40px 0 16px;
            border-left: 5px solid #e94560;
            padding-left: 16px;
        }
        .main-article h3 {
            font-size: 1.4rem;
            color: #ff6b81;
            margin: 28px 0 12px;
        }
        .main-article h4 {
            font-size: 1.1rem;
            color: #f0c27f;
            margin: 20px 0 10px;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #d0d4e0;
            text-align: justify;
        }
        .main-article .highlight-box {
            background: #1a1f3a;
            border-left: 5px solid #e94560;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-article .highlight-box strong {
            color: #f5a623;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 20px 24px;
            color: #c8ccda;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 30px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1f3a;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px 6px;
            font-size: 14px;
            color: #7f8fa6;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #14182b;
            border-radius: 16px;
            padding: 24px 20px;
            position: sticky;
            top: 100px;
            align-self: start;
            border: 1px solid #2a2f4a;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f5a623;
            margin-bottom: 16px;
            border-bottom: 2px solid #e94560;
            padding-bottom: 8px;
        }
        .sidebar .link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar .link-list li {
            margin-bottom: 12px;
            border-bottom: 1px solid #1f2440;
            padding-bottom: 10px;
        }
        .sidebar .link-list a {
            color: #b0b8d1;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .link-list a:hover {
            color: #ff6b81;
        }
        .sidebar .link-list a i {
            color: #e94560;
            font-size: 14px;
            width: 18px;
        }
        .search-section {
            background: #1a1f3a;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 30px 0;
            border: 1px solid #2a2f4a;
        }
        .search-section h3 {
            color: #f5a623;
            margin-bottom: 16px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 50px;
            border: 2px solid #2a2f4a;
            background: #0b0e1a;
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #e94560;
            box-shadow: 0 0 20px rgba(233, 69, 96, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #e94560, #c23152);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
        }
        .comment-section {
            background: #1a1f3a;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 30px 0;
            border: 1px solid #2a2f4a;
        }
        .comment-section h3 {
            color: #f5a623;
            margin-bottom: 16px;
            font-size: 1.5rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #2a2f4a;
            background: #0b0e1a;
            color: #fff;
            font-size: 15px;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #e94560;
            box-shadow: 0 0 20px rgba(233, 69, 96, 0.1);
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            margin: 14px 0;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 50px;
            border: 2px solid #2a2f4a;
            background: #0b0e1a;
            color: #fff;
            font-size: 15px;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #e94560;
        }
        .comment-form button {
            padding: 12px 36px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #d4891a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
        }
        .rating-section {
            background: #1a1f3a;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 30px 0;
            border: 1px solid #2a2f4a;
            text-align: center;
        }
        .rating-section h3 {
            color: #f5a623;
            margin-bottom: 12px;
            font-size: 1.5rem;
        }
        .stars {
            font-size: 2.4rem;
            color: #2a2f4a;
            cursor: pointer;
            display: inline-flex;
            gap: 6px;
            transition: 0.2s;
        }
        .stars i {
            transition: 0.2s;
        }
        .stars i.active,
        .stars i:hover,
        .stars i:hover~i {
            color: #f5a623;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-section .rating-result {
            margin-top: 12px;
            font-size: 18px;
            color: #b0b8d1;
        }
        .rating-section .rating-result span {
            color: #f5a623;
            font-weight: 700;
        }
        .rating-form button {
            margin-top: 16px;
            padding: 12px 36px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #e94560, #c23152);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
        }
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
        }
        friend-link {
            display: block;
            padding: 24px 0;
            border-top: 2px solid #2a2f4a;
            margin-top: 30px;
        }
        friend-link h3 {
            color: #f5a623;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
        }
        friend-link ul li a {
            color: #b0b8d1;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        friend-link ul li a:hover {
            color: #ff6b81;
        }
        .site-footer {
            background: #0b0e1a;
            padding: 28px 0 20px;
            border-top: 3px solid #e94560;
            text-align: center;
            font-size: 14px;
            color: #6a7191;
        }
        .site-footer .copyright {
            margin-top: 8px;
            letter-spacing: 0.5px;
        }
        .site-footer .copyright i {
            color: #e94560;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
                margin-top: 30px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 12px;
                border-top: 1px solid #2a2f4a;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 12px;
                border-bottom: none;
                background: rgba(255, 255, 255, 0.04);
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .container {
                padding: 0 14px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 20px;
            }
            .header-inner {
                padding: 0 4px;
            }
            .stars {
                font-size: 1.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #e94560;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b81;
        }
        .fade-in {
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #14182b;
            border-radius: 12px;
            overflow: hidden;
        }
        .info-table th {
            background: #e94560;
            color: #fff;
            padding: 12px 16px;
            font-weight: 700;
        }
        .info-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a2f4a;
            color: #c8ccda;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table td:first-child {
            font-weight: 600;
            color: #f5a623;
        }
