        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0f0e13;
            color: #e8e6f0;
            line-height: 1.8;
            font-size: 1.05rem;
            padding: 0 1.25rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.75rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f3ff;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid #e63946;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2.1rem;
            border-bottom: 2px solid #2a2438;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #f0b34b;
        }
        h4 {
            font-size: 1.25rem;
            color: #c9b8e8;
        }
        p {
            margin-bottom: 1.25rem;
            text-align: justify;
        }
        blockquote {
            border-left: 5px solid #e63946;
            background: #1e1a28;
            padding: 1rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #d5cee8;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #e63946, #f0b34b, transparent);
            margin: 2.5rem 0;
        }
        .container {
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #2a2438;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0b34b, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e63946;
            font-size: 1.8rem;
        }
        .my-logo small {
            font-size: 0.8rem;
            -webkit-text-fill-color: #a89cc8;
            font-weight: 400;
            letter-spacing: 1px;
            margin-left: 0.25rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b34b;
            color: #f0b34b;
            font-size: 1.8rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2438;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: #2a2438;
            color: #ffd966;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
            color: #e63946;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            padding: 0.6rem 0 0.2rem;
            color: #a89cc8;
            list-style: none;
            background: transparent;
            border-radius: 0;
            margin: 0.2rem 0 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f0b34b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c9b8e8;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .breadcrumb .active {
            color: #f0b34b;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.8rem 0 2.2rem;
            background: #1e1a28;
            padding: 1.2rem 1.8rem;
            border-radius: 20px;
            border: 1px solid #2a2438;
        }
        .search-form label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0b34b;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #3a3250;
            border-radius: 40px;
            background: #0f0e13;
            color: #f5f3ff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0b34b;
        }
        .search-form button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #c1121f;
            transform: translateY(-2px);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #1b1725;
            padding: 1.8rem 1.5rem;
            border-radius: 20px;
            border: 1px solid #2a2438;
            transition: transform 0.25s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.12);
            border-color: #e63946;
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #f0b34b;
            margin-bottom: 0.8rem;
        }
        .feature-card h3 {
            margin-top: 0.2rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #1b1725;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2a2438;
        }
        .data-table th {
            background: #2a2438;
            color: #f0b34b;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #2a2438;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #252030;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-panel {
            background: #1b1725;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            border: 1px solid #2a2438;
        }
        .feedback-panel h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-panel form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .feedback-panel input,
        .feedback-panel textarea,
        .feedback-panel select {
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 2px solid #3a3250;
            background: #0f0e13;
            color: #f5f3ff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .feedback-panel input:focus,
        .feedback-panel textarea:focus,
        .feedback-panel select:focus {
            border-color: #f0b34b;
        }
        .feedback-panel textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-panel button {
            background: #f0b34b;
            color: #0f0e13;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-panel button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3a3250;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #3a3250;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b34b;
        }
        footer {
            margin: 3rem 0 1.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #2a2438;
        }
        friend-link {
            display: block;
            background: #1b1725;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            border: 1px solid #2a2438;
            margin: 1.2rem 0 2rem;
            font-size: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #2a2438;
            border-radius: 30px;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #e63946;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #7a7198;
            font-size: 0.9rem;
            padding: 1rem 0 0.8rem;
            border-top: 1px solid #2a2438;
            margin-top: 1rem;
        }
        .copyright strong {
            color: #c9b8e8;
        }
        @media (max-width: 860px) {
            body {
                padding: 0 0.8rem;
                font-size: 1rem;
            }
            h1 {
                font-size: 2rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1b1725;
                padding: 1rem 1.2rem;
                border-radius: 16px;
                border: 1px solid #2a2438;
                margin-top: 0.6rem;
                gap: 0.3rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .data-table {
                font-size: 0.9rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form {
                padding: 1rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .feedback-panel {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            friend-link a {
                display: block;
                margin: 0.3rem 0;
            }
        }
        .badge {
            display: inline-block;
            background: #e63946;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            vertical-align: middle;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 179, 75, 0.2), transparent);
            padding: 0 0.3rem;
            font-weight: 600;
            color: #ffd966;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
            vertical-align: middle;
        }
        .last-update {
            font-size: 0.85rem;
            color: #7a7198;
            text-align: right;
            margin: 0.5rem 0 1.2rem;
            border-top: 1px dashed #2a2438;
            padding-top: 0.6rem;
        }
        .last-update i {
            margin-right: 0.4rem;
            color: #f0b34b;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e63946;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.4rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-top:hover {
            background: #c1121f;
            transform: translateY(-4px);
        }
        @media (max-width: 600px) {
            .btn-top {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                bottom: 1rem;
                right: 1rem;
            }
        }
        :focus-visible {
            outline: 3px solid #f0b34b;
            outline-offset: 2px;
        }
        ::selection {
            background: #e63946;
            color: #fff;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #f0b34b;
            color: #0f0e13;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 0;
            font-weight: 700;
            z-index: 1000;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }
