* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0f0e17;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 16px;
            padding: 0 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #f25f4c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        header {
            padding: 20px 0;
            border-bottom: 2px solid #2d2b3a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(255, 137, 6, 0.3);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            display: block;
            -webkit-text-fill-color: #a7a9be;
            color: #a7a9be;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff8906;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            background: #1a1932;
            border: 1px solid #2d2b3a;
            transition: all 0.3s;
        }
        nav a:hover {
            background: #ff8906;
            color: #0f0e17;
            border-color: #ff8906;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 14px 0 10px 0;
            font-size: 0.85rem;
            color: #a7a9be;
            border-bottom: 1px solid #2d2b3a;
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb a:hover {
            color: #f25f4c;
        }
        .breadcrumb span {
            color: #a7a9be;
        }
        main {
            padding: 20px 0 40px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ff8906;
            margin: 40px 0 16px 0;
            border-left: 5px solid #f25f4c;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f25f4c;
            margin: 30px 0 12px 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0e0e0;
            margin: 22px 0 10px 0;
        }
        p {
            margin-bottom: 16px;
            color: #c0c0d0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #a7a9be;
            background: #1a1932;
            padding: 8px 18px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid #2d2b3a;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid #2d2b3a;
        }
        .highlight-box {
            background: #1a1932;
            border-left: 6px solid #ff8906;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .highlight-box p {
            margin-bottom: 6px;
        }
        .emoji-big {
            font-size: 1.5rem;
            margin-right: 6px;
        }
        .search-section {
            background: #1a1932;
            padding: 30px;
            border-radius: 16px;
            margin: 40px 0;
            border: 1px solid #2d2b3a;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2d2b3a;
            background: #0f0e17;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #ff8906;
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-section button:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 30px rgba(255, 137, 6, 0.4);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width: 860px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: #1a1932;
            padding: 28px;
            border-radius: 16px;
            border: 1px solid #2d2b3a;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-left: 4px solid #ff8906;
            padding-left: 14px;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section textarea,
        .comment-section input,
        .rating-section select,
        .rating-section input {
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2d2b3a;
            background: #0f0e17;
            color: #e0e0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .comment-section input:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #ff8906;
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            color: #0f0e17;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(255, 137, 6, 0.35);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #2d2b3a;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i.active {
            color: #ff8906;
            transform: scale(1.1);
        }
        .rating-stars i:hover {
            color: #ff8906;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 16px 0;
            margin: 20px 0;
            border-top: 1px solid #2d2b3a;
            border-bottom: 1px solid #2d2b3a;
        }
        .link-list-inline a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 30px 0 16px 0;
            border-top: 2px solid #2d2b3a;
            margin-top: 40px;
            font-style: normal;
        }
        friend-link::before {
            content: "🔗 Friends & Partners";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #ff8906;
            margin-bottom: 16px;
            font-style: normal;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .friend-links-grid a {
            padding: 6px 14px;
            background: #1a1932;
            border-radius: 30px;
            border: 1px solid #2d2b3a;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .friend-links-grid a:hover {
            background: #ff8906;
            color: #0f0e17;
            border-color: #ff8906;
            text-decoration: none;
        }
        footer {
            padding: 30px 0 40px;
            border-top: 1px solid #2d2b3a;
            margin-top: 20px;
            text-align: center;
            color: #a7a9be;
            font-size: 0.9rem;
        }
        footer p {
            color: #a7a9be;
        }
        footer a {
            color: #ff8906;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 14px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0e17;
                padding: 20px 0 10px 0;
                border-top: 2px solid #2d2b3a;
                margin-top: 12px;
                gap: 8px;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .nav-toggle:checked~nav {
                display: flex;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .toc {
            background: #1a1932;
            padding: 20px 24px;
            border-radius: 14px;
            border: 1px solid #2d2b3a;
            margin: 24px 0 32px;
        }
        .toc summary {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ff8906;
            cursor: pointer;
            padding: 4px 0;
        }
        .toc ul {
            list-style: none;
            padding: 12px 0 4px 0;
        }
        .toc ul li {
            padding: 4px 0;
            border-bottom: 1px solid #2d2b3a;
        }
        .toc ul li a {
            color: #c0c0d0;
        }
        .toc ul li a:hover {
            color: #ff8906;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2d2b3a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8906;
        }
