        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffdba0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2c3a4f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px 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;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            transition: opacity 0.25s;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #fc5c7d;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c27f;
            color: #f0c27f;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c27f20;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            color: #cbd5e1;
        }
        .main-nav a:hover {
            background: #2c3a4f;
            color: #f0c27f;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a212e;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3548;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a8aa3;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #a0b3cc;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 30% 40%, #1f2a3a, #0b0e14 80%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, #f5d6a0, #fc7b9b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #bcc9de;
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #8d9db5;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #f0c27f;
        }
        section {
            padding: 2.5rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            border-left: 5px solid #fc5c7d;
            padding-left: 1rem;
            color: #f0e6d3;
        }
        .section-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #f0c27f;
        }
        .section-subtitle-h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem;
            color: #e2d5c0;
        }
        .section-subtitle-h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem;
            color: #cfc1ab;
        }
        .text-large {
            font-size: 1.1rem;
        }
        .highlight-box {
            background: #1a2332;
            border-left: 4px solid #f0c27f;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #1a2332;
            border-radius: 12px;
            padding: 1.5rem;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #2c3a4f;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
            border-color: #f0c27f55;
        }
        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
            color: #f0c27f;
        }
        .card h4 {
            font-size: 1.05rem;
            color: #e2d5c0;
            margin-bottom: 0.4rem;
        }
        .card p {
            color: #bcc9de;
            font-size: 0.95rem;
        }
        .card i {
            color: #fc5c7d;
            margin-right: 0.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141b26;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a3548;
        }
        th {
            background: #1f2a3a;
            color: #f0c27f;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:hover td {
            background: #1a2535;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 520px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid #3a4a62;
            border-radius: 6px;
            background: #141b26;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #f0c27f;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: #f0c27f;
            color: #0b0e14;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .search-form button:hover {
            background: #ffdba0;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #3a4a62;
            border-radius: 6px;
            background: #141b26;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #f0c27f;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 2rem;
            background: #fc5c7d;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #fd7a96;
            transform: scale(1.02);
        }
        .score-form .star-row {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
        }
        .score-form .star-row i {
            font-size: 1.6rem;
            color: #3a4a62;
            cursor: pointer;
            transition: color 0.2s;
        }
        .score-form .star-row i.active,
        .score-form .star-row i:hover {
            color: #f0c27f;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a2332;
            padding: 0.5rem;
        }
        .featured-image img {
            border-radius: 8px;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 0.5rem 0.3rem;
            font-size: 0.9rem;
            color: #8d9db5;
            text-align: center;
            font-style: italic;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        .friend-links-grid li {
            margin: 0;
        }
        .friend-links-grid a {
            background: #1a2332;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            border: 1px solid #2c3a4f;
            font-size: 0.9rem;
            transition: 0.2s;
            display: inline-block;
        }
        .friend-links-grid a:hover {
            background: #2c3a4f;
            border-color: #f0c27f;
            text-decoration: none;
        }
        .site-footer {
            background: #0f141e;
            border-top: 2px solid #1f2a3a;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #7a8aa3;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1f2a3a;
        }
        .site-footer .copyright a {
            color: #f0c27f;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-muted {
            color: #8d9db5;
        }
        .text-accent {
            color: #f0c27f;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .gap-items {
            gap: 1.2rem;
        }
        .inline-icon {
            margin-right: 0.4rem;
        }
        .pill {
            display: inline-block;
            background: #2c3a4f;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f0c27f;
        }
        .last-updated {
            display: inline-block;
            background: #1a2332;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #bcc9de;
            border: 1px solid #2c3a4f;
        }
        .last-updated i {
            color: #f0c27f;
            margin-right: 0.4rem;
        }
