        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f9f7fe 0%, #f0edf5 100%);
            min-height: 100vh;
            padding-bottom: 60px;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #5a2d81;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid #ff6b8b;
            padding-bottom: 15px;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-left: 15px;
            border-left: 6px solid #5a2d81;
        }
        h3 {
            font-size: 1.8rem;
            color: #7a4ca3;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #9b6bc2;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.15rem;
            color: #444;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, #3a1c5e, #5a2d81);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 18px rgba(90, 45, 129, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e0d6ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #3a1c5e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e0d6ff;
            text-decoration: none;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 30px;
        }
        .breadcrumb {
            padding: 1.2rem 0;
            background: #f5f1ff;
            border-bottom: 1px solid #e6daff;
            margin-bottom: 2.5rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 12px;
        }
        .breadcrumb li {
            font-size: 1rem;
            color: #666;
        }
        .breadcrumb a {
            color: #5a2d81;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #ff6b8b;
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 12px;
            color: #999;
        }
        main {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 3rem;
            box-shadow: 0 10px 40px rgba(90, 45, 129, 0.08);
            margin-top: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,107,139,0.1) 0%, transparent 70%);
            z-index: 0;
        }
        .content-wrapper {
            position: relative;
            z-index: 1;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2.5rem 0;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .search-box, .comment-form, .rating-form {
            background: #f9f7fe;
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid #e6daff;
            box-shadow: 0 8px 20px rgba(90, 45, 129, 0.05);
        }
        .form-title {
            color: #5a2d81;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .form-title i {
            color: #ff6b8b;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #d8c6ff;
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: white;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #5a2d81;
            box-shadow: 0 0 0 3px rgba(90, 45, 129, 0.2);
        }
        textarea {
            min-height: 180px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #5a2d81, #7a4ca3);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.2rem;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 15px rgba(90, 45, 129, 0.3);
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #4a1d71, #6a3c93);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(90, 45, 129, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .highlight {
            background: linear-gradient(120deg, #fff9e6 0%, #fff0f0 100%);
            border-left: 6px solid #ffcc00;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.1);
        }
        .highlight p {
            margin-bottom: 0;
            color: #5a4700;
            font-size: 1.25rem;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 10px;
        }
        .internal-link {
            color: #5a2d81;
            text-decoration: none;
            border-bottom: 2px dotted #7a4ca3;
            font-weight: 600;
            padding: 0 3px;
            transition: all 0.3s ease;
        }
        .internal-link:hover {
            color: #ff6b8b;
            border-bottom: 2px solid #ff6b8b;
            background: rgba(255, 107, 139, 0.05);
        }
        footer {
            background: linear-gradient(to right, #3a1c5e, #2a0c4e);
            color: #e0d6ff;
            padding: 3.5rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: #ffcc00;
            font-size: 1.8rem;
            margin-bottom: 1.8rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #c8b3ff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 10px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        friend-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
        }
        friend-link p {
            color: #c8b3ff;
            margin-bottom: 0;
            font-size: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a694d4;
            font-size: 1rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 2px dashed #e6daff;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            main {
                padding: 1.8rem 1.5rem;
            }
            .container {
                padding: 0 15px;
            }
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .my-logo {
                font-size: 2.4rem;
            }
            .feature-img {
                margin: 1.8rem 0;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .search-box,
            .comment-form,
            .rating-form {
                padding: 1.5rem;
            }
            button[type="submit"] {
                width: 100%;
                justify-content: center;
            }
            .stars {
                justify-content: center;
            }
        }
