* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0b1a;
            color: #e4e0f0;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1130 0%, #2a1a4a 100%);
            border-bottom: 2px solid #6d4aff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(109, 74, 255, 0.25);
        }
        .header-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8ff, #6d4aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #6d4aff;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a {
            color: #c8bfff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 40px;
            transition: all 0.25s;
            font-size: 0.9rem;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #6d4aff;
            color: #fff;
            outline: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f9a8ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #fff;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #9a8ec0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: #b8a8f0;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #f9a8ff;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6d4aff;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f9a8ff, #6d4aff, #f9a8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin: 20px 0 16px;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #d4c0ff;
            border-left: 6px solid #6d4aff;
            padding-left: 18px;
            margin: 48px 0 20px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #c8b5ff;
            margin: 32px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #b8a0f0;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #ddd8f0;
        }
        a {
            color: #b388ff;
            transition: color 0.2s;
        }
        a:hover {
            color: #f9a8ff;
        }
        strong,
        b {
            color: #f0e8ff;
            font-weight: 700;
        }
        .hero-img {
            width: 100%;
            max-width: 920px;
            border-radius: 20px;
            margin: 24px auto 32px;
            display: block;
            box-shadow: 0 12px 40px rgba(109, 74, 255, 0.35);
            border: 1px solid #3a2a6a;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0 40px;
        }
        .feature-card {
            background: #1e1535;
            border-radius: 18px;
            padding: 26px 22px;
            border: 1px solid #2f1f5a;
            transition: transform 0.25s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(109, 74, 255, 0.3);
            border-color: #6d4aff;
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #f9a8ff;
            margin-bottom: 12px;
            display: inline-block;
        }
        .feature-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .link-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 20px 0 30px;
            padding: 16px 20px;
            background: #1a1130;
            border-radius: 16px;
            border: 1px solid #2f1f5a;
        }
        .link-cloud a {
            font-size: 0.9rem;
            padding: 4px 12px;
            border-radius: 30px;
            background: #251b40;
            text-decoration: none;
            transition: all 0.2s;
        }
        .link-cloud a:hover {
            background: #6d4aff;
            color: #fff;
        }
        .search-block {
            background: #1e1535;
            border-radius: 20px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #3a2a6a;
        }
        .search-block form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: #2a1d4a;
            color: #f0e8ff;
            font-size: 1rem;
            outline: 1px solid #4a3a7a;
            transition: outline 0.2s;
        }
        .search-block input[type="text"]:focus {
            outline: 2px solid #6d4aff;
        }
        .search-block button {
            padding: 14px 34px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #6d4aff, #9a6aff);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-block button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(109, 74, 255, 0.5);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #1a1130;
            border-radius: 20px;
            padding: 26px 24px;
            border: 1px solid #2f1f5a;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border-radius: 14px;
            border: none;
            background: #2a1d4a;
            color: #f0e8ff;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: 1px solid #4a3a7a;
            transition: outline 0.2s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            outline: 2px solid #6d4aff;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: none;
            background: #2a1d4a;
            color: #f0e8ff;
            outline: 1px solid #4a3a7a;
            margin: 10px 0;
            font-size: 0.95rem;
        }
        .comment-box input[type="text"]:focus {
            outline: 2px solid #6d4aff;
        }
        .comment-box button,
        .score-box button {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #6d4aff, #9a6aff);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 8px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(109, 74, 255, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 10px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #4a3a6a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9c84a;
        }
        footer {
            background: #0d0920;
            border-top: 2px solid #2f1f5a;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 14px 20px;
            background: #1a1130;
            border-radius: 16px;
            border: 1px solid #2f1f5a;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b8a8f0;
            text-decoration: none;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f9a8ff;
            text-decoration: underline;
        }
        .copyright {
            color: #7a6e9a;
            font-size: 0.85rem;
            text-align: center;
            border-top: 1px solid #1f1535;
            padding-top: 20px;
            margin-top: 10px;
        }
        .last-update {
            color: #9a8ec0;
            font-size: 0.9rem;
            text-align: right;
            margin-top: 6px;
        }
        @media (max-width: 800px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-grid {
                flex-direction: row;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1130;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 8px;
                border: 1px solid #3a2a6a;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .hero-img {
                border-radius: 14px;
            }
            .link-cloud a {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                width: 100%;
            }
            .search-block button {
                width: 100%;
            }
        }
        .emoji-big {
            font-size: 1.6rem;
            display: inline-block;
            margin-right: 6px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(109, 74, 255, 0.25), transparent);
            padding: 0 6px;
            border-radius: 6px;
        }
        .quote-block {
            border-left: 4px solid #6d4aff;
            padding: 14px 20px;
            margin: 24px 0;
            background: #1a1130;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #c8bfff;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1130;
            border-radius: 14px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2f1f5a;
        }
        th {
            background: #2a1d4a;
            color: #f9a8ff;
            font-weight: 600;
        }
        td {
            color: #ddd8f0;
        }
