        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d0d;
            color: #e8e0d0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            background-image: radial-gradient(ellipse at 20% 50%, #1a1510 0%, #0d0d0d 80%);
            min-height: 100vh;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #f5e6a3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5e6a3;
            margin-bottom: 0.75rem;
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #e8d48b;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #2a2520;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4c090;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c4b080;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d6cec0;
        }
        strong {
            color: #f5e6a3;
            font-weight: 700;
        }
        .text-gold {
            color: #d4af37;
        }
        .text-muted {
            color: #a09888;
        }
        .small {
            font-size: 0.85rem;
        }
        .last-updated {
            display: inline-block;
            background: #1f1a15;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #b0a898;
            margin-bottom: 1.5rem;
        }
        .site-header {
            background: #14100c;
            border-bottom: 2px solid #2a2218;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(20, 16, 12, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e6a3;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #d4af37, #f5e6a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-list {
            display: flex;
            gap: 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-list a {
            color: #c8c0b0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list a:hover {
            color: #f5e6a3;
            border-bottom-color: #d4af37;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e0d0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }
        .hamburger:focus-visible {
            outline: 2px solid #d4af37;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.4rem 0;
            font-size: 0.85rem;
            color: #8a8070;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.5rem;
        }
        .breadcrumb a {
            color: #b0a898;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .breadcrumb .sep {
            color: #5a5048;
        }
        .hero-img {
            margin: 1.5rem 0 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
            border: 1px solid #2a2218;
        }
        .hero-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .search-wrap {
            display: flex;
            max-width: 480px;
            margin: 1.8rem 0 0.5rem 0;
            background: #1a1612;
            border: 1px solid #2a2520;
            border-radius: 40px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #d4af37;
        }
        .search-wrap input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            background: transparent;
            border: none;
            color: #e8e0d0;
            font-size: 0.95rem;
            outline: none;
        }
        .search-wrap input::placeholder {
            color: #6a6058;
        }
        .search-wrap button {
            background: #d4af37;
            border: none;
            padding: 0.8rem 1.4rem;
            color: #0d0d0d;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s;
        }
        .search-wrap button:hover {
            background: #f5e6a3;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem 0;
            background: #14100c;
            border: 1px solid #2a2520;
            border-radius: 16px;
            padding: 2rem;
        }
        .feedback-section h3 {
            margin-top: 0;
            color: #f5e6a3;
            font-size: 1.4rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            color: #c8b898;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #1f1a15;
            border: 1px solid #2a2520;
            border-radius: 8px;
            color: #e8e0d0;
            font-size: 0.95rem;
            transition: border-color 0.25s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4af37;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #d4af37;
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s, transform 0.15s;
        }
        .btn-submit:hover {
            background: #f5e6a3;
            transform: scale(1.02);
        }
        .btn-submit:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #4a4038;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #d4af37;
            transform: scale(1.1);
        }
        .star-rating input {
            display: none;
        }
        .link-group {
            background: #1a1612;
            border-left: 4px solid #d4af37;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .link-group h4 {
            margin-top: 0;
            color: #e8d48b;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.5rem 1.5rem;
        }
        .link-group li::before {
            content: "⚔️ ";
            font-size: 0.8rem;
        }
        friend-link {
            display: block;
            background: #14100c;
            border-top: 2px solid #2a2218;
            padding: 2rem 0 1.5rem 0;
            margin-top: 2.5rem;
        }
        friend-link .friend-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        friend-link h3 {
            color: #d4af37;
            margin-top: 0;
            font-size: 1.2rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
        }
        friend-link a {
            color: #b0a898;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f5e6a3;
        }
        .site-footer {
            background: #0a0806;
            border-top: 1px solid #1f1a15;
            padding: 2rem 0;
            text-align: center;
            color: #6a6058;
            font-size: 0.85rem;
        }
        .site-footer .copyright {
            margin-bottom: 0.3rem;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1612;
            border-radius: 12px;
            overflow: hidden;
        }
        .spec-table th,
        .spec-table td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a2520;
        }
        .spec-table th {
            background: #2a2218;
            color: #f5e6a3;
            font-weight: 600;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        .spec-table td {
            color: #d6cec0;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1.5rem;
            }
            .link-group ul {
                grid-template-columns: 1fr 1fr;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14100c;
                padding: 1rem 0 1.2rem 0;
                gap: 0.8rem;
                border-top: 1px solid #2a2218;
                margin-top: 0.8rem;
            }
            .nav-list a {
                padding: 0.4rem 1rem;
                display: block;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .spec-table {
                font-size: 0.85rem;
            }
            .spec-table th,
            .spec-table td {
                padding: 0.5rem 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .link-group ul {
                grid-template-columns: 1fr;
            }
            .search-wrap {
                max-width: 100%;
            }
            .feedback-section {
                padding: 1rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0d0d0d;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2520;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3530;
        }
        :focus-visible {
            outline: 2px solid #d4af37;
            outline-offset: 2px;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #d4af37;
            color: #0d0d0d;
            padding: 0.5rem 1rem;
            z-index: 200;
        }
        .skip-link:focus {
            top: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .quote-block {
            border-left: 4px solid #d4af37;
            padding: 1rem 1.5rem;
            background: #1a1612;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #c8b898;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #d4af37;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
