*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #0d0d1a;
            --bg2: #16162b;
            --bg3: #1e1e3a;
            --primary: #e94560;
            --primary-dark: #c23350;
            --accent: #ffd700;
            --text: #ececec;
            --text-muted: #b0b0c8;
            --border: #2a2a4a;
            --radius: 10px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--bg2);
            border-bottom: 2px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            -webkit-text-fill-color: var(--text-muted);
            color: var(--text-muted);
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border);
            color: var(--text);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: var(--bg3);
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-muted);
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--bg2);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(circle at 30% 30%, var(--bg3) 0%, var(--bg) 80%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .update-badge {
            display: inline-block;
            background: var(--primary);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
        }
        section {
            padding: 50px 0;
            border-bottom: 1px solid var(--border);
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
            margin-top: 6px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 32px 0 14px;
            color: var(--accent);
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #fff;
        }
        p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary)30%, transparent 90%);
            padding: 0 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 24px;
            margin: 24px 0;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .card {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg2);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--bg3);
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        td {
            color: var(--text);
        }
        tr:hover td {
            background: rgba(233, 69, 96, 0.08);
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #fff;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--bg2);
            color: var(--text);
            font-size: 1rem;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.25);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: var(--primary);
            color: #fff;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--bg2);
            color: var(--text);
            font-size: 1rem;
        }
        .search-form input:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-item {
            background: var(--bg2);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 14px;
        }
        .comment-item strong {
            color: var(--accent);
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: var(--border);
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: var(--border);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        .rating-display {
            font-size: 1.2rem;
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 30px 0 10px;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            margin-top: 10px;
        }
        friend-link a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .site-footer {
            background: var(--bg2);
            border-top: 2px solid var(--border);
            padding: 30px 0 20px;
            text-align: center;
            margin-top: auto;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 12px;
        }
        @media(max-width:900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg2);
                padding: 12px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 12px;
            }
            section {
                padding: 30px 0;
            }
            .card {
                padding: 16px;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .img-placeholder {
            background: var(--bg3);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            min-height: 200px;
            border: 1px solid var(--border);
        }
        .img-placeholder img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: var(--radius);
        }
        .tag {
            display: inline-block;
            background: var(--bg3);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-right: 4px;
        }
