        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd866;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
            border-bottom: 3px solid #f0c04044;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c04033;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c04088;
            color: #f0c040;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c04022;
        }
        .nav-menu {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.45rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #ccc;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #f0c04018;
            color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            background: #12122a;
            padding: 0.6rem 0;
            border-bottom: 1px solid #222244;
            font-size: 0.85rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb span {
            color: #888;
        }
        .breadcrumb a {
            color: #f0c040bb;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #ccc;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #111128 0%, #1c1c44 50%, #0d0d1a 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 2px solid #f0c04033;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #f0c04088, transparent);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #f0c040, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 720px;
            margin: 0 auto;
        }
        .hero .update-badge {
            display: inline-block;
            margin-top: 1rem;
            background: #1e1e44;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0c040bb;
            border: 1px solid #f0c04044;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .content-body {
            max-width: 100%;
        }
        .content-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c040;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #f0c04033;
            position: relative;
        }
        .content-body h2::before {
            content: '✦ ';
            color: #f0c040;
        }
        .content-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f5d06a;
            margin: 2rem 0 0.8rem;
        }
        .content-body h3::before {
            content: '● ';
            color: #f0c04088;
        }
        .content-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e8c86a;
            margin: 1.5rem 0 0.6rem;
        }
        .content-body h4::before {
            content: '▸ ';
            color: #f0c04066;
        }
        .content-body p {
            margin-bottom: 1.1rem;
            color: #d5d5e0;
        }
        .content-body strong {
            color: #f0e0a0;
        }
        .content-body em {
            color: #c8b87a;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
            color: #d0d0dd;
        }
        .content-body li {
            margin-bottom: 0.35rem;
        }
        .pet-table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #2a2a4a;
            background: #111128;
        }
        .pet-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 600px;
        }
        .pet-table th {
            background: #1c1c44;
            color: #f0c040;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #f0c04044;
        }
        .pet-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #222244;
            color: #d0d0dd;
        }
        .pet-table tr:hover td {
            background: #18183a;
        }
        .pet-table .rarity {
            color: #f0c040;
            font-weight: 600;
        }
        .insight-card {
            background: linear-gradient(135deg, #131330, #1a1a40);
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f0c040;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        .insight-card h4 {
            margin-top: 0;
            color: #f0c040;
        }
        .insight-card p:last-child {
            margin-bottom: 0;
        }
        .interview-box {
            background: #0f0f28;
            border-radius: 14px;
            padding: 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #f0c04033;
            position: relative;
        }
        .interview-box::before {
            content: '💬';
            font-size: 2rem;
            position: absolute;
            top: -0.8rem;
            left: 1rem;
            background: #0d0d1a;
            padding: 0 0.4rem;
        }
        .interview-box .attribution {
            margin-top: 0.8rem;
            font-style: italic;
            color: #f0c040bb;
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            border: 2px solid #2a2a4a;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #0a0a1a;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a1a3a;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #111128;
            color: #aaa;
            font-size: 0.85rem;
            border-top: 1px solid #222244;
        }
        .functions-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .func-card {
            background: #111128;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #2a2a4a;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .func-card:hover {
            border-color: #f0c04066;
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.08);
        }
        .func-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f0c040;
        }
        .func-card h3 i {
            margin-right: 0.5rem;
        }
        .func-card input,
        .func-card textarea,
        .func-card select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border-radius: 8px;
            background: #0a0a1e;
            border: 1px solid #2a2a4a;
            color: #e0e0e0;
            font-size: 0.95rem;
            transition: border-color 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .func-card input:focus,
        .func-card textarea:focus,
        .func-card select:focus {
            outline: none;
            border-color: #f0c04088;
        }
        .func-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .func-card .btn {
            background: linear-gradient(135deg, #f0c040, #d4a017);
            color: #0d0d1a;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.2s ease;
            font-family: inherit;
        }
        .func-card .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(240, 192, 64, 0.25);
        }
        .func-card .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
            color: #444;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f0c040;
            transform: scale(1.1);
        }
        .related-links {
            background: #111128;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #2a2a4a;
            margin-top: 2rem;
        }
        .related-links h3 {
            color: #f0c040;
            margin-top: 0;
            font-size: 1.3rem;
        }
        .related-links ul {
            list-style: none;
            padding: 0;
        }
        .related-links li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1a1a3a;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            color: #c8c8dd;
            transition: color 0.2s, padding-left 0.2s;
            display: inline-block;
        }
        .related-links a:hover {
            color: #f0c040;
            padding-left: 4px;
            text-decoration: none;
        }
        .related-links a::before {
            content: '🔗 ';
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0a0a1a;
            border-top: 2px solid #1a1a3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f0c040;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            background: #111128;
            border-radius: 10px;
            padding: 1rem 1.4rem;
            border: 1px solid #2a2a4a;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #1a1a3a;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #ccc;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #f0c04022;
            color: #f0c040;
            text-decoration: none;
        }
        .copyright {
            margin-top: 1.5rem;
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid #1a1a3a;
            padding-top: 1.5rem;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 900px) {
            .functions-section {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0f23;
                border-radius: 10px;
                padding: 0.6rem 0;
                border: 1px solid #2a2a4a;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1.2rem;
                width: 100%;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.25rem;
            }
            .content-body h4 {
                font-size: 1.05rem;
            }
            .pet-table-wrap {
                font-size: 0.8rem;
            }
            .pet-table th,
            .pet-table td {
                padding: 0.5rem 0.6rem;
            }
            .func-card {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .insight-card {
                padding: 1rem 1.2rem;
            }
            .interview-box {
                padding: 1.2rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3a5a;
        }
