        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #6c3eb8;
            --primary-dark: #4a1e8a;
            --primary-light: #a87de0;
            --secondary: #f9a826;
            --accent: #ff6b6b;
            --bg: #f8f5ff;
            --bg-card: #ffffff;
            --text: #1a1a2e;
            --text-light: #555577;
            --text-white: #ffffff;
            --border: #e0d6f5;
            --shadow: 0 8px 32px rgba(108, 62, 184, 0.12);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: var(--text);
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: var(--primary-dark);
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .section-padding {
            padding: 3rem 0;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--text-white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.5px;
        }
        .my-logo i {
            font-size: 2.2rem;
            color: var(--secondary);
        }
        .my-logo:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        .my-logo span {
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 0.1rem 0.6rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        nav a {
            color: var(--text-white);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            transition: var(--transition);
            position: relative;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--secondary);
            text-decoration: none;
        }
        nav a.active {
            background: var(--secondary);
            color: var(--primary-dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            margin: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            border: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--primary-dark);
        }
        .breadcrumb .sep {
            color: var(--text-light);
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 600;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(108, 62, 184, 0.18);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 2rem auto;
            background: var(--bg-card);
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(108, 62, 184, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            padding: 0.8rem 0;
            background: transparent;
            font-family: var(--font);
            color: var(--text);
        }
        .search-box button {
            background: var(--primary);
            border: none;
            color: var(--text-white);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i {
            transition: var(--transition);
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--secondary);
            transform: scale(1.15);
        }
        .rating-stars i.active~i {
            color: #ddd;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1rem;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 120px;
            transition: var(--transition);
            background: var(--bg);
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(108, 62, 184, 0.1);
        }
        .comment-form .input-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .comment-form .input-group input {
            flex: 1;
            min-width: 200px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0.8rem 1rem;
            font-size: 1rem;
            font-family: var(--font);
            transition: var(--transition);
            background: var(--bg);
        }
        .comment-form .input-group input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(108, 62, 184, 0.1);
        }
        .btn {
            background: var(--primary);
            color: var(--text-white);
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 62, 184, 0.3);
        }
        .btn-secondary {
            background: var(--secondary);
            color: var(--primary-dark);
        }
        .btn-secondary:hover {
            background: #e8981e;
        }
        footer {
            background: var(--primary-dark);
            color: var(--text-white);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        footer a {
            color: var(--secondary);
        }
        footer a:hover {
            color: var(--text-white);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--secondary);
            transition: var(--transition);
        }
        friend-link a:hover {
            background: var(--secondary);
            color: var(--primary-dark);
            text-decoration: none;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0e8ff, #fff5e0);
            border-left: 5px solid var(--secondary);
            padding: 1.8rem 2rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 2.5rem;
            display: inline-block;
            margin-right: 0.5rem;
        }
        .tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--text-white);
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            display: block;
        }
        .stat-label {
            font-size: 0.95rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .image-wrapper {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
            border: 1px solid var(--border);
        }
        .image-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .image-wrapper .caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
            background: var(--bg);
            border-top: 1px solid var(--border);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        th,
        td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--primary);
            color: var(--text-white);
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0e8ff;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: var(--bg-card);
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            text-align: center;
        }
        .tip-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(108, 62, 184, 0.15);
        }
        .tip-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .tip-card h4 {
            margin-top: 0;
            color: var(--primary-dark);
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
                margin-top: 0.8rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--radius);
                padding: 1rem;
                background: var(--bg-card);
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
            .card {
                padding: 1.2rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.6rem;
            }
            .section-padding {
                padding: 2rem 0;
            }
            .comment-form .input-group {
                flex-direction: column;
            }
            .comment-form .input-group input {
                min-width: unset;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
            background: var(--bg-card);
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            border: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: var(--secondary);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
