*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent2: #0f3460;
            --gold: #f5a623;
            --light: #f8f9fa;
            --dark: #0d0d1a;
            --text: #2d3436;
            --text-light: #636e72;
            --white: #ffffff;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--light);
            color: var(--text);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold);
        }
        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(--primary);
            color: var(--white);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .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;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--gold), #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--gold);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: var(--white);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-1px);
        }
        .main-nav a.active {
            background: var(--accent);
        }
        .breadcrumb {
            background: var(--secondary);
            padding: 10px 0;
            font-size: 0.8rem;
            color: #aaa;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--gold);
        }
        .breadcrumb a:hover {
            color: var(--white);
        }
        .breadcrumb span {
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent2) 100%);
            color: var(--white);
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '♠ ♥ ♦ ♣';
            position: absolute;
            bottom: 10px;
            right: 20px;
            font-size: 4rem;
            opacity: 0.06;
            letter-spacing: 20px;
            pointer-events: none;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .hero h1 span {
            background: linear-gradient(135deg, var(--gold), #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto 20px;
            color: #ddd;
            line-height: 1.7;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: #aaa;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: var(--gold);
        }
        .section {
            padding: 50px 0;
        }
        .section-alt {
            background: var(--white);
        }
        .section-dark {
            background: var(--primary);
            color: var(--white);
        }
        .section-dark h2,
        .section-dark h3,
        .section-dark h4 {
            color: var(--white);
        }
        .section-dark .text-muted {
            color: #bbb;
        }
        h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.3;
        }
        h2 i {
            color: var(--accent);
            margin-right: 10px;
        }
        h3 {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--secondary);
            line-height: 1.4;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
            line-height: 1.4;
        }
        .content-grid {
            display: grid;
            gap: 30px;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }
        .card-dark {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--white);
        }
        .card-dark h3,
        .card-dark h4 {
            color: var(--white);
        }
        .text-muted {
            color: var(--text-light);
            font-size: 0.92rem;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .gap-20 {
            gap: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            background: var(--accent);
            color: var(--white);
        }
        .btn:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(233, 69, 96, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        .btn-outline:hover {
            background: var(--accent);
            color: var(--white);
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: var(--white);
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
            border-top: 1px solid #eee;
        }
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 16px 0;
        }
        .links-list a {
            background: rgba(233, 69, 96, 0.08);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--accent);
            border: 1px solid rgba(233, 69, 96, 0.15);
            transition: var(--transition);
        }
        .links-list a:hover {
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 0 auto 30px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--white);
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.15);
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
            color: var(--text);
        }
        .search-box button {
            padding: 14px 28px;
            background: var(--accent);
            color: var(--white);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--gold);
            color: var(--dark);
        }
        .comment-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }
        .comment-section h3 {
            margin-bottom: 16px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 100px;
            transition: var(--transition);
            background: #fafafa;
        }
        .comment-form textarea:focus {
            border-color: var(--accent);
            outline: none;
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.08);
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: var(--transition);
            background: #fafafa;
        }
        .comment-form .form-row input:focus {
            border-color: var(--accent);
            outline: none;
            background: var(--white);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ddd;
            transition: var(--transition);
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: var(--gold);
        }
        .comment-list {
            margin-top: 24px;
            max-height: 400px;
            overflow-y: auto;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #eee;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: var(--primary);
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
            color: var(--text);
        }
        .site-footer {
            background: var(--dark);
            color: #ccc;
            padding: 50px 0 30px;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: var(--white);
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
            padding: 4px 0;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.82rem;
            color: #888;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: var(--secondary);
                padding: 12px 16px;
                border-radius: var(--radius);
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 14px;
                border-radius: 8px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 8px;
            }
            .section {
                padding: 30px 0;
            }
            .comment-section {
                padding: 20px;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-box button {
                border-radius: 0 0 var(--radius) var(--radius);
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 14px;
            }
            .card {
                padding: 20px 16px;
            }
        }
        .comment-list::-webkit-scrollbar {
            width: 6px;
        }
        .comment-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .comment-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }
        .comment-list::-webkit-scrollbar-thumb:hover {
            background: #aaa;
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(233, 69, 96, 0.1);
            color: var(--accent);
            margin-right: 6px;
            margin-bottom: 6px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 40px 0;
            opacity: 0.2;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 2rem;
            display: inline-block;
            margin-right: 8px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            text-align: center;
            padding: 18px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold);
        }
        .stat-item .label {
            font-size: 0.8rem;
            color: #aaa;
            margin-top: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f8ff;
        }
