        *,
        *::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: #0b0d17;
            color: #e3e3e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffda7a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f5f5;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            border-left: 5px solid #f0c040;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f0c04033;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #f0c040;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #0f111f;
            border-bottom: 2px solid #f0c04022;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: #0b0d17ee;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 4px;
            background: linear-gradient(135deg, #f0c040, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.8rem;
            letter-spacing: 2px;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            border-bottom-color: #f0c040;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #aaa;
            padding: 0.5rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f0c040;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .search-section {
            background: #12142a;
            padding: 1.8rem 0;
            margin: 1.5rem 0;
            border-radius: 16px;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #2a2d4a;
            border-radius: 40px;
            background: #1a1d35;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c040;
            background: #1f2340;
        }
        .search-form button {
            padding: 0.9rem 1.8rem;
            background: #f0c040;
            border: none;
            border-radius: 40px;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffda7a;
            transform: scale(1.02);
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .char-card {
            background: #12142a;
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid #2a2d4a;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .char-card:hover {
            transform: translateY(-6px);
            border-color: #f0c04066;
            box-shadow: 0 20px 40px -12px #000000aa;
        }
        .char-card img {
            border-radius: 12px;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1f2340;
            margin-bottom: 1rem;
        }
        .char-card h3 {
            margin-top: 0.2rem;
            font-size: 1.4rem;
        }
        .char-card .role {
            color: #f0c040;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .char-card p {
            font-size: 0.95rem;
            color: #bbb;
            flex: 1;
        }
        .char-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin-top: 0.8rem;
        }
        .char-card .tags span {
            background: #1f2340;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #ccc;
            border: 1px solid #2a2d4a;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        @media(max-width:768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #12142a;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #2a2d4a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 2px solid #2a2d4a;
            background: #1a1d35;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f0c040;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.8rem 1.8rem;
            background: #f0c040;
            border: none;
            border-radius: 40px;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffda7a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3d5a;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
        }
        .links-section {
            background: #0f111f;
            border-radius: 20px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2d4a;
        }
        .links-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .links-grid li a {
            display: block;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            background: #1a1d35;
            border: 1px solid #2a2d4a;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .links-grid li a:hover {
            background: #1f2340;
            border-color: #f0c04066;
            transform: translateX(4px);
        }
        footer {
            background: #0b0d17;
            border-top: 2px solid #f0c04022;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:768px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link h4 {
            color: #f0c040;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border-bottom: 1px solid #2a2d4a;
            padding-bottom: 0.4rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
        }
        friend-link ul li {
            margin-bottom: 0.4rem;
        }
        friend-link ul li a {
            font-size: 0.9rem;
            color: #bbb;
        }
        friend-link ul li a:hover {
            color: #f0c040;
        }
        .copyright {
            grid-column: 1/-1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2d4a;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #888;
        }
        .copyright strong {
            color: #ccc;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 1rem 0 0.5rem;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 0.5rem 0;
                border-bottom: 1px solid #2a2d4a33;
            }
            .char-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media(min-width:769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .highlight {
            color: #f0c040;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f0c040;
            color: #0b0d17;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .updated {
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12142a;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2d4a;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d4a;
        }
        th {
            background: #1a1d35;
            color: #f0c040;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .quote {
            border-left: 4px solid #f0c040;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #12142a88;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #ccc;
        }
        .quote strong {
            color: #f5f5f5;
        }
