        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0e17;
            color: #e4e0d4;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f9a826;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #fefae0;
        }
        h1 {
            font-size: 2.8rem;
            margin: 1.6rem 0 0.8rem;
        }
        h2 {
            font-size: 2.0rem;
            margin: 2.4rem 0 0.8rem;
            border-left: 5px solid #f9a826;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.6rem;
            color: #f9d56e;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.4rem;
            color: #e8d5a3;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d1cdc1;
        }
        strong,
        b {
            color: #fefae0;
            font-weight: 600;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
            color: #d1cdc1;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2a3a;
            margin: 2.4rem 0;
        }
        .container {
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 1px solid #2a2a3a;
            position: relative;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a826, #f7d44a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-shadow: 0 0 20px rgba(249, 168, 38, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fefae0;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a3a;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            align-items: center;
            margin-top: 0.6rem;
        }
        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            color: #c4bfb0;
        }
        nav a:hover {
            border-bottom-color: #f9a826;
            color: #fefae0;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0.8rem 0 0.2rem;
            color: #8a867a;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #5a5a4a;
        }
        .breadcrumb a {
            color: #b8b0a0;
        }
        .breadcrumb a:hover {
            color: #f9a826;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            background: #1a1a2a;
            border-radius: 40px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            border: 1px solid #2a2a3a;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #f9a826;
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #fefae0;
            outline: none;
        }
        .search-form input::placeholder {
            color: #7a7a6a;
        }
        .search-form button {
            background: #f9a826;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.4rem;
            font-weight: 600;
            color: #0f0e17;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .feature-image {
            margin: 1.8rem 0 2.4rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .feature-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .feature-image figcaption {
            font-size: 0.85rem;
            color: #8a867a;
            padding: 0.6rem 1rem;
            background: #1a1a2a;
            border-radius: 0 0 12px 12px;
        }
        .spell-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.6rem;
            margin: 1.6rem 0;
        }
        .spell-card {
            background: #1a1a2a;
            border-radius: 16px;
            padding: 1.2rem 1.4rem;
            border: 1px solid #2a2a3a;
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
        }
        .spell-card:hover {
            transform: translateY(-4px);
            border-color: #f9a826;
            box-shadow: 0 12px 32px rgba(249, 168, 38, 0.08);
        }
        .spell-card h4 {
            margin-top: 0;
            color: #f9d56e;
        }
        .spell-card .stat {
            font-size: 0.85rem;
            color: #a9a494;
            display: block;
            margin: 0.2rem 0;
        }
        .spell-card .stat i {
            width: 1.2rem;
            color: #f9a826;
        }
        .rating-area {
            background: #1a1a2a;
            padding: 1.6rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a2a3a;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4a4a5a;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a826;
            transform: scale(1.05);
        }
        .rating-area button {
            background: #f9a826;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            color: #0f0e17;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.4rem;
        }
        .rating-area button:hover {
            background: #ffc857;
        }
        .comment-area {
            background: #1a1a2a;
            padding: 1.6rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a2a3a;
        }
        .comment-area textarea {
            width: 100%;
            background: #0f0e17;
            border: 1px solid #2a2a3a;
            border-radius: 12px;
            padding: 0.8rem 1rem;
            color: #fefae0;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f9a826;
            outline: none;
        }
        .comment-area input[type="text"] {
            width: 100%;
            background: #0f0e17;
            border: 1px solid #2a2a3a;
            border-radius: 12px;
            padding: 0.7rem 1rem;
            color: #fefae0;
            font-size: 1rem;
            margin: 0.6rem 0;
            transition: border-color 0.3s;
        }
        .comment-area input:focus {
            border-color: #f9a826;
            outline: none;
        }
        .comment-area button {
            background: #f9a826;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            color: #0f0e17;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.4rem;
        }
        .comment-area button:hover {
            background: #ffc857;
        }
        footer {
            border-top: 1px solid #2a2a3a;
            padding: 2rem 0 1.2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #1a1a2a;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a2a3a;
            transition: border-color 0.2s;
        }
        friend-link a:hover {
            border-color: #f9a826;
            text-decoration: none;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7a7a6a;
            margin-top: 1.6rem;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #1a1a2a;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-top {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #2a2a3a;
                margin-top: 0.8rem;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 0.6rem 0.4rem;
                border-bottom: 1px solid #1a1a2a;
                font-size: 1rem;
            }
            .search-form {
                max-width: 100%;
                flex-wrap: wrap;
                padding: 0.3rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .spell-grid {
                grid-template-columns: 1fr;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem 1rem;
            }
            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a867a;
            text-align: right;
            margin-top: 0.2rem;
            padding-bottom: 0.4rem;
        }
        .badge {
            display: inline-block;
            background: #f9a826;
            color: #0f0e17;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .highlight-box {
            background: #1a1a2a;
            border-left: 4px solid #f9a826;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a2a;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a3a;
        }
        th {
            background: #2a2a3a;
            color: #f9d56e;
            font-weight: 600;
        }
        td {
            color: #d1cdc1;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .toc {
            background: #1a1a2a;
            border-radius: 16px;
            padding: 1.4rem 2rem;
            margin: 1.6rem 0;
            border: 1px solid #2a2a3a;
        }
        .toc ol {
            margin: 0.4rem 0 0 1.2rem;
        }
        .toc a {
            color: #c4bfb0;
        }
        .toc a:hover {
            color: #f9a826;
        }
        .btn-small {
            background: transparent;
            border: 1px solid #f9a826;
            color: #f9a826;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-small:hover {
            background: #f9a826;
            color: #0f0e17;
        }
