* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --crimson: #8b1a1a;
            --crimson-light: #c0392b;
            --dark: #0d0d0d;
            --dark-card: #1a1a2e;
            --gold: #f0c040;
            --gold-dark: #c8a030;
            --text: #e8e8e8;
            --text-muted: #a0a0b0;
            --bg-body: #0a0a12;
            --bg-section: #111122;
            --border: #2a2a40;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --transition: 0.3s ease;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg-body);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #ffd966;
            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;
        }
        header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a0a0a 100%);
            border-bottom: 2px solid var(--crimson);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(139, 26, 26, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--gold), #e6b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--crimson-light);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: all var(--transition);
            white-space: nowrap;
        }
        nav a:hover {
            color: var(--text);
            background: rgba(240, 192, 64, 0.08);
            text-decoration: none;
        }
        nav a.active {
            color: var(--gold);
            background: rgba(240, 192, 64, 0.12);
        }
        .breadcrumb {
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .breadcrumb .current {
            color: var(--gold);
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--gold);
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--crimson-light);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gold-dark);
            margin-top: 28px;
            margin-bottom: 14px;
        }
        .section-subtitle i {
            margin-right: 8px;
            color: var(--crimson-light);
        }
        .card {
            background: var(--dark-card);
            border-radius: var(--radius);
            padding: 28px 30px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        .card p {
            margin-bottom: 16px;
        }
        .card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            color: var(--gold);
            font-weight: 600;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-item .value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold);
        }
        .stat-item .label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 8px;
        }
        .hero {
            background: linear-gradient(145deg, #0d0d1a 0%, #1a0808 50%, #0d0d1a 100%);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 2px solid var(--crimson);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 16px;
            line-height: 1.2;
            text-shadow: 0 0 40px rgba(240, 192, 64, 0.1);
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta i {
            margin-right: 6px;
            color: var(--crimson-light);
        }
        .hero-img-wrap {
            max-width: 700px;
            margin: 30px auto 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 0 50px rgba(139, 26, 26, 0.2);
            border: 1px solid var(--border);
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 20px auto 0;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--dark-card);
            transition: border-color var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--gold);
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: var(--text);
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box button {
            padding: 14px 24px;
            border: none;
            background: var(--crimson);
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--crimson-light);
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text);
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.3);
            color: var(--text);
            font-size: 1rem;
            transition: border-color var(--transition);
            font-family: var(--font);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: var(--crimson);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--crimson-light);
            transform: translateY(-1px);
        }
        .btn-gold {
            background: var(--gold);
            color: #0d0d0d;
        }
        .btn-gold:hover {
            background: #e6b800;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: var(--border);
            transition: color var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: var(--gold);
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
            color: var(--text);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all var(--transition);
            color: var(--text);
            font-size: 0.95rem;
        }
        .link-list a:hover {
            background: rgba(240, 192, 64, 0.06);
            border-color: var(--gold-dark);
            text-decoration: none;
            color: var(--gold);
        }
        .link-list a i {
            color: var(--crimson-light);
            font-size: 1.1rem;
        }
        footer {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a0a0a 100%);
            border-top: 2px solid var(--crimson);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        footer a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0d0d1a;
                border-bottom: 2px solid var(--crimson);
                padding: 12px 20px;
                gap: 4px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .card {
                padding: 20px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .link-list {
                grid-template-columns: 1fr 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item .value {
                font-size: 1.3rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box button {
                border-radius: 0 0 12px 12px;
                justify-content: center;
            }
            .container {
                padding: 0 14px;
            }
            section {
                padding: 30px 0;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-body);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--crimson);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--crimson-light);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
