* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #121821;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
            border-radius: 24px;
            padding: 20px 24px 32px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        a {
            color: #f0c94a;
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: #ffde6b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            margin: 28px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 1px solid #2a3344;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c94a, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 201, 74, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #8899b0;
            color: #8899b0;
            font-weight: 400;
            letter-spacing: 0.3px;
            margin-left: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a3a;
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: 0.2s;
            display: inline-block;
        }
        .nav-menu li a:hover {
            background: #1f2a3a;
            color: #f0c94a;
            text-decoration: none;
        }
        .nav-menu li a.active {
            background: #f0c94a;
            color: #0b0e14;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #7483a0;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #4a5a78;
        }
        .breadcrumb a {
            color: #b0c0d8;
        }
        .breadcrumb a:hover {
            color: #f0c94a;
        }
        .breadcrumb .current {
            color: #f0c94a;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 28px 0 16px;
            line-height: 1.2;
            background: linear-gradient(135deg, #f7e8b0, #f0c94a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3344;
            color: #f0d78a;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e0c878;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #d0b868;
        }
        p {
            margin: 0 0 18px;
            color: #d5dce8;
        }
        .lead {
            font-size: 1.15rem;
            color: #e8edf2;
            font-weight: 400;
            border-left: 4px solid #f0c94a;
            padding-left: 20px;
            margin: 24px 0 28px;
        }
        b,
        strong {
            color: #f7f0e0;
            font-weight: 700;
        }
        .highlight-box {
            background: #1a2438;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 4px solid #f0c94a;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .search-section {
            background: #1a2438;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 40px;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 1rem;
            outline: 1px solid #2a3344;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            outline: 2px solid #f0c94a;
        }
        .search-section button {
            background: #f0c94a;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #ffde6b;
            transform: scale(1.02);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 32px;
        }
        .feedback-card {
            background: #1a2438;
            border-radius: 16px;
            padding: 24px 28px;
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a3344;
            padding-bottom: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 12px 16px;
            border: none;
            border-radius: 12px;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: 1px solid #2a3344;
            resize: vertical;
            font-family: inherit;
            transition: 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            outline: 2px solid #f0c94a;
        }
        .feedback-card button {
            background: #f0c94a;
            border: none;
            border-radius: 40px;
            padding: 12px 20px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffde6b;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #4a5a78;
            cursor: pointer;
        }
        .star-rating .fa-star.active {
            color: #f0c94a;
        }
        .star-rating .fa-star {
            transition: 0.15s;
        }
        .star-rating .fa-star:hover {
            color: #f0c94a;
            transform: scale(1.1);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 28px 0;
            padding: 0;
            list-style: none;
        }
        .related-links li a {
            display: block;
            padding: 10px 16px;
            background: #1a2438;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #2a3344;
            transition: 0.2s;
        }
        .related-links li a:hover {
            background: #24304a;
            border-color: #f0c94a;
            text-decoration: none;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            padding: 24px 0 16px;
            border-top: 1px solid #2a3344;
            margin-top: 24px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 6px 16px;
            background: #1a2438;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #2a3344;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #24304a;
            border-color: #f0c94a;
            text-decoration: none;
        }
        .footer {
            padding: 24px 0 12px;
            border-top: 1px solid #2a3344;
            margin-top: 32px;
            font-size: 0.85rem;
            color: #7483a0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .footer .copyright {
            color: #5a6a88;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 24px;
                border-radius: 16px;
                margin-top: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            .header {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a2438;
                border-radius: 16px;
                padding: 16px 12px;
                margin-top: 12px;
                gap: 4px;
                border: 1px solid #2a3344;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                border-radius: 12px;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                padding: 16px 18px;
            }
            .search-section form {
                width: 100%;
            }
            .related-links {
                grid-template-columns: 1fr 1fr;
            }
            .footer {
                flex-direction: column;
                text-align: center;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .related-links {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #7483a0;
        }
        .tag {
            display: inline-block;
            background: #1f2a3a;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #b0c0d8;
            margin-right: 4px;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1a2438;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #b0c0d8;
            border: 1px solid #2a3344;
        }
