* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f9fc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 32px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0 1rem;
            border-bottom: 2px solid #eef2f7;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e53e3e, #dc2626, #b91c1c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 2rem;
            color: #dc2626;
            background: none;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e293b;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f1f5f9;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem;
        }
        nav a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        nav a:hover {
            background: #eef2f7;
            color: #dc2626;
        }
        nav a.active {
            background: #dc2626;
            color: white;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.6rem;
            padding: 1rem 0 0.5rem;
            font-size: 0.85rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #dc2626;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            margin: 1.5rem 0 0.75rem;
            background: linear-gradient(135deg, #1e293b, #dc2626);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #fee2e2;
            color: #0f172a;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.75rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.25rem 0 0.5rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.25rem;
            color: #334155;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 0.35rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            color: #475569;
            margin-bottom: 1.5rem;
        }
        .search-box {
            display: flex;
            max-width: 550px;
            margin: 1.5rem 0 2rem;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.3s;
        }
        .search-box:focus-within {
            box-shadow: 0 4px 24px rgba(220, 38, 38, 0.12);
            border-color: #dc2626;
        }
        .search-box input {
            flex: 1;
            padding: 0.85rem 1.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: white;
            font-family: inherit;
        }
        .search-box button {
            padding: 0.85rem 1.8rem;
            background: #dc2626;
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #b91c1c;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 1.5rem 1.75rem 2rem;
            border: 1px solid #eef2f7;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d1d9e6;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: white;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #dc2626;
            outline: none;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.5rem;
            background: #dc2626;
            color: white;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #b91c1c;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d1d9e6;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f59e0b;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .featured-img figcaption {
            padding: 0.75rem 1.25rem;
            background: #f8fafc;
            font-size: 0.85rem;
            color: #475569;
            border-top: 1px solid #eef2f7;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0 2rem;
        }
        .char-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 1.25rem 1.5rem;
            border: 1px solid #eef2f7;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .char-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }
        .char-card .rarity {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.2rem 0.7rem;
            border-radius: 100px;
            background: #e2e8f0;
            color: #475569;
            margin-bottom: 0.5rem;
        }
        .char-card .rarity.common {
            background: #e2e8f0;
            color: #475569;
        }
        .char-card .rarity.rare {
            background: #dbeafe;
            color: #1d4ed8;
        }
        .char-card .rarity.epic {
            background: #f3e8ff;
            color: #7c3aed;
        }
        .char-card .rarity.legendary {
            background: #fef3c7;
            color: #d97706;
        }
        .char-card .rarity.champion {
            background: #fee2e2;
            color: #dc2626;
        }
        .char-card h4 {
            margin: 0.25rem 0 0.4rem;
            font-size: 1.2rem;
        }
        .char-card p {
            font-size: 0.92rem;
            margin-bottom: 0;
            color: #475569;
        }
        .link-inline {
            display: inline;
        }
        .link-inline a {
            color: #dc2626;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .link-inline a:hover {
            color: #b91c1c;
        }
        friend-link {
            display: block;
            margin: 2.5rem 0 1rem;
            padding: 1.5rem 0;
            border-top: 2px solid #eef2f7;
        }
        friend-link h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
        }
        friend-link .friend-list a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }
        friend-link .friend-list a:hover {
            text-decoration: underline;
        }
        footer {
            padding: 1.5rem 0 0.5rem;
            border-top: 2px solid #eef2f7;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 1rem;
        }
        footer .copy {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0.75rem 1rem 1.5rem;
                border-radius: 20px;
                margin-top: 0.75rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.25rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 12px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .char-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-box button {
                border-radius: 0 0 20px 20px;
                justify-content: center;
            }
            .search-box input {
                border-radius: 20px 20px 0 0;
            }
            footer {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .char-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #64748b;
        }
