        *,
        *::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: #0b0e14;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7fa;
        }
        h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin: 1.5rem 0 0.75rem;
        }
        h2 {
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            margin: 2.5rem 0 0.75rem;
            border-bottom: 2px solid #2a313c;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: clamp(1.15rem, 2.5vw, 1.5rem);
            margin: 1.8rem 0 0.5rem;
        }
        h4 {
            font-size: 1.05rem;
            margin: 1.2rem 0 0.3rem;
            color: #d4dce6;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .text-center {
            text-align: center;
        }
        .text-muted {
            color: #9aa8b9;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        .badge {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .badge.blue {
            background: #2a6f97;
        }
        .badge.green {
            background: #2d6a4f;
        }
        .badge.gold {
            background: #b8860b;
        }
        .emoji-big {
            font-size: 1.6em;
            vertical-align: middle;
        }
        header {
            padding: 1rem 0 0.5rem;
            border-bottom: 1px solid #2a313c;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0b34b, #d64531);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 179, 75, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0b34b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8d0db;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #2a313c;
            color: #f0b34b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #2a313c;
        }
        #navToggle {
            display: none;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: inline-block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.75rem 0 0.5rem;
                gap: 0.2rem;
            }
            .nav-links a {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            #navToggle:checked~.nav-links {
                display: flex;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #9aa8b9;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5a6a7a;
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #b0c4d8;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 520px;
            margin: 1.5rem auto 1rem;
            background: #1a212b;
            border-radius: 50px;
            padding: 0.25rem 0.25rem 0.25rem 1.2rem;
            border: 1px solid #2f3a48;
            transition: border 0.2s;
        }
        .search-form:focus-within {
            border-color: #f0b34b;
        }
        .search-form input[type="text"] {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            min-width: 0;
        }
        .search-form input[type="text"]::placeholder {
            color: #6a7a8a;
        }
        .search-form button {
            background: #f0b34b;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.4rem;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffc966;
            transform: scale(1.02);
        }
        .feature-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a212b;
        }
        .feature-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .feature-img .img-caption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #9aa8b9;
            background: #141b24;
            text-align: center;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #161e28;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #26303d;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f0b34b44;
        }
        .card h3 {
            margin-top: 0;
        }
        .card h3 i {
            color: #f0b34b;
            margin-right: 0.4rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            padding: 0.5rem 0;
        }
        .link-list li a {
            font-size: 0.92rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .link-list li a::before {
            content: "⚔️";
            font-size: 0.75rem;
        }
        .interaction-section {
            background: #141b24;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            margin: 2.5rem 0;
            border: 1px solid #26303d;
        }
        .interaction-section h2 {
            border-bottom: none;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            color: #c8d0db;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2f3a48;
            background: #1a212b;
            color: #e8edf2;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0b34b;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-group .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .form-group .star-rating input {
            display: none;
        }
        .form-group .star-rating label {
            font-size: 1.8rem;
            color: #3a4755;
            cursor: pointer;
            transition: color 0.15s;
        }
        .form-group .star-rating label:hover,
        .form-group .star-rating label:hover~label,
        .form-group .star-rating input:checked~label {
            color: #f0b34b;
        }
        .btn {
            background: #f0b34b;
            border: none;
            border-radius: 50px;
            padding: 0.7rem 2rem;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #ffc966;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f0b34b;
            color: #f0b34b;
        }
        .btn-outline:hover {
            background: #f0b34b22;
        }
        footer {
            border-top: 1px solid #2a313c;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        friend-link {
            display: block;
            background: #161e28;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #26303d;
        }
        friend-link h3 {
            font-size: 1rem;
            margin-top: 0;
            color: #f0b34b;
            border-bottom: none;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
        }
        friend-link ul li {
            margin: 0.3rem 0;
        }
        friend-link ul li a {
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #6a7a8a;
            border-top: 1px solid #1a212b;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #b0c4d8;
        }
        .highlight-box {
            background: #1a212b;
            border-left: 4px solid #f0b34b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        table th,
        table td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #26303d;
            text-align: left;
        }
        table th {
            background: #1a212b;
            color: #f0b34b;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #111821;
        }
        .progress-bar {
            background: #26303d;
            border-radius: 20px;
            height: 8px;
            overflow: hidden;
            margin: 0.3rem 0;
        }
        .progress-bar .fill {
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(90deg, #f0b34b, #d64531);
        }
        .tag {
            display: inline-block;
            background: #2a313c;
            border-radius: 16px;
            padding: 0.15rem 0.7rem;
            font-size: 0.75rem;
            color: #b0c4d8;
            margin-right: 0.3rem;
        }
        @media (max-width: 600px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .interaction-section {
                padding: 1.2rem 0.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-wrap: wrap;
                border-radius: 16px;
                padding: 0.5rem;
            }
            .search-form input[type="text"] {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }
