        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #fdf6f0 0%, #fce4ec 100%);
            color: #2d1b2d;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        a {
            color: #c2185b;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #7b1fa2;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #7b1fa2, #c2185b, #ff6f00);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 2px 12px rgba(255, 215, 0, 0.5);
            letter-spacing: 1px;
            background: linear-gradient(45deg, #ffd700, #ffb300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffd700;
            margin-right: 6px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #fff;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 40px;
            transition: 0.25s;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            text-decoration: none;
        }
        .nav-bar a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .nav-bar a i {
            margin-right: 5px;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            padding: 0 10px;
            transition: 0.2s;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: rgba(123, 31, 162, 0.95);
            border-radius: 16px;
            padding: 16px 12px;
            margin-top: 10px;
            gap: 6px;
        }
        .nav-mobile a {
            color: #fff;
            padding: 10px 16px;
            border-radius: 40px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a:hover {
            background: rgba(255, 215, 0, 0.2);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #9e9e9e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7b1fa2;
        }
        .breadcrumb .active {
            color: #c2185b;
            font-weight: 600;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .content h1 {
            font-size: 2.7rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7b1fa2, #c2185b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .content h2 {
            font-size: 2rem;
            color: #7b1fa2;
            margin: 40px 0 16px;
            border-left: 6px solid #ff6f00;
            padding-left: 18px;
        }
        .content h3 {
            font-size: 1.5rem;
            color: #c2185b;
            margin: 32px 0 12px;
        }
        .content h4 {
            font-size: 1.2rem;
            color: #5d2e7e;
            margin: 24px 0 8px;
        }
        .content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .content ul,
        .content ol {
            margin: 16px 0 20px 24px;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight {
            background: linear-gradient(120deg, #fff3cd, #ffe0b2);
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
        }
        .content blockquote {
            background: #f3e5f5;
            border-left: 6px solid #7b1fa2;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #4a2c4a;
        }
        .content .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 24px 20px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            color: #7b1fa2;
            margin-bottom: 16px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .sidebar li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar li a i {
            color: #ff6f00;
            width: 20px;
        }
        .search-box {
            background: #fff;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 28px;
            border: 1px solid rgba(123, 31, 162, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #2d1b2d;
        }
        .search-box button {
            background: linear-gradient(135deg, #7b1fa2, #c2185b);
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
        }
        .search-box button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 16px rgba(194, 24, 91, 0.4);
        }
        .feedback-section {
            margin-top: 50px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 32px 28px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
        }
        .feedback-section h2 {
            margin-top: 0;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 20px;
        }
        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .form-group label {
            font-weight: 700;
            color: #5d2e7e;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 16px;
            border: 2px solid #e0d0e8;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #7b1fa2;
            box-shadow: 0 0 0 4px rgba(123, 31, 162, 0.12);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-group.full {
            grid-column: 1 / -1;
        }
        .btn-primary {
            background: linear-gradient(135deg, #ff6f00, #ff8f00);
            border: none;
            color: #fff;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(255, 111, 0, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(255, 111, 0, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #7b1fa2, #9c27b0);
            border: none;
            color: #fff;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(123, 31, 162, 0.3);
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(123, 31, 162, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ffc107;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
            transform: scale(1.1);
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: rgba(123, 31, 162, 0.08);
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #5d2e7e;
            font-style: italic;
            text-align: center;
        }
        footer {
            background: #1a0d1a;
            color: #e0c8e0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #ffd700;
            margin-bottom: 14px;
            font-size: 1.2rem;
        }
        footer a {
            color: #e0c8e0;
            opacity: 0.85;
        }
        footer a:hover {
            opacity: 1;
            color: #ffd700;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer li {
            padding: 4px 0;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 12px 0 20px;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .friend-link a {
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 16px;
            border-radius: 40px;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .nav-bar a {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile.open {
                display: flex;
            }
            header .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .content h1 {
                font-size: 2rem;
            }
            .content h2 {
                font-size: 1.6rem;
            }
            .content h3 {
                font-size: 1.3rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: 0.6s ease;
        }
        .fade-up.show {
            opacity: 1;
            transform: translateY(0);
        }
        .tag {
            display: inline-block;
            background: #f3e5f5;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #7b1fa2;
            margin-right: 6px;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: #7b1fa2;
            background: rgba(255, 215, 0, 0.15);
            padding: 6px 18px;
            border-radius: 40px;
            width: fit-content;
            margin-bottom: 20px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffd700, #c2185b, transparent);
            margin: 30px 0;
            border: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        th {
            background: #7b1fa2;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0e6f0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf0fa;
        }
