* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f1a;
            color: #e4e4f0;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff7eb3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffb3d9;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1c2e 0%, #2a2d4a 100%);
            border-bottom: 2px solid #ff7eb3;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff7eb3, #ffb86c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        nav.main-nav {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #d0d0e8;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        nav.main-nav a:hover {
            background: rgba(255, 126, 179, 0.15);
            border-color: #ff7eb3;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff7eb3;
            background: none;
            border: none;
            padding: 4px 8px;
            transition: color 0.2s ease;
        }
        .hamburger:hover {
            color: #ffb3d9;
        }
        .breadcrumb {
            background: #141726;
            padding: 10px 0;
            border-bottom: 1px solid #2a2d4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 12px;
            color: #666;
        }
        .breadcrumb a {
            color: #9a9abf;
        }
        .breadcrumb a:hover {
            color: #ff7eb3;
        }
        .breadcrumb .current {
            color: #ffb86c;
        }
        .hero {
            padding: 50px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff7eb3, #ffb86c, #ff7eb3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0b0d0;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero-meta {
            font-size: 0.9rem;
            color: #8888aa;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #ff7eb3;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 30px 0 50px;
        }
        @media (max-width: 960px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffb86c;
            margin: 40px 0 16px;
            border-left: 4px solid #ff7eb3;
            padding-left: 16px;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ff9fd4;
            margin: 28px 0 12px;
        }
        .main-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #c0c0e8;
            margin: 20px 0 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d4d4ec;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #c8c8e0;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content strong {
            color: #fff;
            font-weight: 700;
        }
        .main-content .highlight-box {
            background: linear-gradient(135deg, rgba(255, 126, 179, 0.08), rgba(255, 184, 108, 0.08));
            border-left: 4px solid #ff7eb3;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrapper {
            margin: 30px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-image-wrapper figcaption {
            background: #1a1c2e;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #9999bb;
            text-align: center;
            border-top: 1px solid #2a2d4a;
        }
        .sidebar {
            background: #141726;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2d4a;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #ffb86c;
            margin-bottom: 16px;
            border-bottom: 2px solid #2a2d4a;
            padding-bottom: 10px;
        }
        .sidebar .link-list {
            list-style: none;
            margin: 0;
        }
        .sidebar .link-list li {
            padding: 6px 0;
            border-bottom: 1px solid #1e2036;
        }
        .sidebar .link-list a {
            color: #b0b0d8;
            font-size: 0.9rem;
            display: block;
            padding: 4px 0;
            transition: all 0.2s ease;
        }
        .sidebar .link-list a:hover {
            color: #ff7eb3;
            padding-left: 6px;
            text-decoration: none;
        }
        .search-box {
            background: #0d0f1a;
            border-radius: 40px;
            border: 1px solid #2a2d4a;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            transition: border-color 0.3s ease;
        }
        .search-box:focus-within {
            border-color: #ff7eb3;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px 0;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #666;
        }
        .search-box button {
            background: #ff7eb3;
            border: none;
            color: #0d0f1a;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .search-box button:hover {
            background: #ff9fd4;
        }
        .feedback-section {
            margin-top: 40px;
            padding: 28px;
            background: #141726;
            border-radius: 16px;
            border: 1px solid #2a2d4a;
        }
        .feedback-section h3 {
            color: #ffb86c;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }
        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-form textarea,
        .feedback-form input {
            background: #0d0f1a;
            border: 1px solid #2a2d4a;
            border-radius: 10px;
            padding: 12px 16px;
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.2s ease;
            width: 100%;
        }
        .feedback-form textarea:focus,
        .feedback-form input:focus {
            border-color: #ff7eb3;
            outline: none;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .feedback-form .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .feedback-form .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            margin: 4px 0;
        }
        .feedback-form .star-rating i {
            transition: color 0.15s ease;
        }
        .feedback-form .star-rating i.active,
        .feedback-form .star-rating i:hover {
            color: #ffb86c;
        }
        .feedback-form .btn-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .feedback-form .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .feedback-form .btn-primary {
            background: #ff7eb3;
            color: #0d0f1a;
        }
        .feedback-form .btn-primary:hover {
            background: #ff9fd4;
            transform: translateY(-2px);
        }
        .feedback-form .btn-secondary {
            background: #2a2d4a;
            color: #d0d0e8;
        }
        .feedback-form .btn-secondary:hover {
            background: #3a3d5a;
        }
        .feedback-form .small-note {
            font-size: 0.8rem;
            color: #7777aa;
            margin-top: 4px;
        }
        footer {
            background: #0a0b14;
            border-top: 2px solid #1e2036;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 30px;
        }
        @media (max-width: 720px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #ffb86c;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner p,
        .footer-inner li {
            color: #9999bb;
            font-size: 0.9rem;
        }
        .footer-inner ul {
            list-style: none;
            margin: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner a {
            color: #b0b0d8;
        }
        .footer-inner a:hover {
            color: #ff7eb3;
        }
        friend-link {
            display: block;
            background: #141726;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0 12px;
            border: 1px solid #2a2d4a;
            font-style: normal;
        }
        friend-link .fl-title {
            font-weight: 600;
            color: #ffb86c;
            margin-bottom: 10px;
            display: block;
            font-size: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #1e2036;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #c0c0e0;
            transition: all 0.2s ease;
        }
        friend-link a:hover {
            background: #ff7eb3;
            color: #0d0f1a;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e2036;
            font-size: 0.85rem;
            color: #666688;
        }
        .copyright a {
            color: #8888aa;
        }
        @media (max-width: 720px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
            }
            nav.main-nav.open {
                display: flex;
            }
            nav.main-nav a {
                width: 100%;
                text-align: center;
                padding: 10px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-grid {
                padding: 10px 0 30px;
            }
            .feedback-section {
                padding: 18px;
            }
            .feedback-form .form-row {
                flex-direction: column;
            }
            .sidebar {
                position: static;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2d4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff7eb3;
        }
        html {
            scroll-behavior: smooth;
        }
        .mod-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.9rem;
            background: #141726;
            border-radius: 12px;
            overflow: hidden;
        }
        .mod-table th {
            background: #1e2036;
            color: #ffb86c;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .mod-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #1e2036;
            color: #c8c8e0;
        }
        .mod-table tr:last-child td {
            border-bottom: none;
        }
        .mod-table tr:hover td {
            background: rgba(255, 126, 179, 0.04);
        }
        @media (max-width: 600px) {
            .mod-table {
                font-size: 0.75rem;
            }
            .mod-table th,
            .mod-table td {
                padding: 6px 8px;
            }
        }
