* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0720;
            color: #e8e0f0;
            line-height: 1.8;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5d47a;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffecb3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #0f0828, #1a0d3a);
            padding: 16px 0;
            border-bottom: 2px solid #d4a84333;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d47a, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(212, 168, 67, 0.3);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5d47a;
            margin-right: 8px;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: initial;
            color: #a99bc0;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5d47a;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(212, 168, 67, 0.15);
        }
        .navbar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .navbar a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #d4c8e8;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .navbar a:hover,
        .navbar a.active {
            background: rgba(212, 168, 67, 0.18);
            color: #f5d47a;
            text-decoration: none;
        }
        .navbar a i {
            margin-right: 6px;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #a99bc0;
        }
        .breadcrumb a {
            color: #c5b5e0;
        }
        .breadcrumb a:hover {
            color: #f5d47a;
        }
        .breadcrumb span {
            color: #f5d47a;
        }
        .main {
            padding: 30px 0 60px;
        }
        .hero {
            text-align: center;
            padding: 40px 20px 30px;
            background: radial-gradient(ellipse at center, #1a0d3a 0%, #0b0720 70%);
            border-radius: 24px;
            margin-bottom: 40px;
            border: 1px solid #d4a84322;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d47a, #e8b84a, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 20px;
            color: #c5b5e0;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #a99bc0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            color: #f5d47a;
            margin-right: 6px;
        }
        .section {
            margin-bottom: 48px;
            padding: 28px 24px;
            background: rgba(20, 10, 48, 0.6);
            border-radius: 20px;
            border: 1px solid #d4a84318;
            transition: border-color 0.4s;
        }
        .section:hover {
            border-color: #d4a84344;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5d47a;
            margin-bottom: 20px;
            border-left: 5px solid #d4a843;
            padding-left: 18px;
        }
        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d0a0;
            margin: 28px 0 12px;
        }
        .section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c0e8;
            margin: 20px 0 10px;
        }
        .section p {
            margin-bottom: 16px;
            color: #d4c8e8;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #d4c8e8;
        }
        .section li {
            margin-bottom: 8px;
        }
        .highlight {
            color: #f5d47a;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d4a84322;
            color: #f5d47a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #d4a84344;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a0d3a;
            text-align: center;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-wrapper figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #a99bc0;
            background: #0f0828;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-list a {
            display: block;
            padding: 12px 18px;
            background: rgba(212, 168, 67, 0.07);
            border-radius: 12px;
            border: 1px solid #d4a84322;
            transition: all 0.3s;
            font-weight: 500;
        }
        .link-list a:hover {
            background: rgba(212, 168, 67, 0.15);
            border-color: #d4a84366;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-list a i {
            color: #f5d47a;
            margin-right: 10px;
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #d4a84344;
            background: #0f0828;
            color: #e8e0f0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #f5d47a;
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #d4a843, #f5d47a);
            color: #0b0720;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
        }
        .comment-section,
        .rating-section {
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid #d4a84322;
        }
        .comment-section h3,
        .rating-section h3 {
            color: #f5d47a;
            margin-bottom: 16px;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 12px 18px;
            border-radius: 12px;
            border: 2px solid #d4a84333;
            background: #0f0828;
            color: #e8e0f0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #f5d47a;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #d4a843, #f5d47a);
            color: #0b0720;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4a84344;
            cursor: pointer;
        }
        .star-rating i.active {
            color: #f5d47a;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #f5d47a;
        }
        .footer {
            background: #0a0518;
            padding: 40px 0 20px;
            border-top: 2px solid #d4a84322;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer h4 {
            color: #f5d47a;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer a {
            color: #b5a5d0;
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer a:hover {
            color: #f5d47a;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            padding: 6px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #d4a84318;
            color: #7a6a90;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #b5a5d0;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0720;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4a84366;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5d47a;
        }
        @media (max-width: 900px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 12px 18px;
                border-radius: 12px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section {
                padding: 20px 16px;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                overflow-x: auto;
                white-space: nowrap;
                padding: 10px 0 4px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box button {
                width: 100%;
            }
            .search-box input {
                min-width: 100%;
            }
            .comment-form button,
            .rating-form button {
                width: 100%;
                text-align: center;
            }
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section {
            animation: fadeUp 0.6s ease forwards;
        }
        .section:nth-child(2) {
            animation-delay: 0.1s;
        }
        .section:nth-child(3) {
            animation-delay: 0.2s;
        }
        .section:nth-child(4) {
            animation-delay: 0.3s;
        }
