        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f7f4f0;
            color: #1e1e2a;
            line-height: 1.8;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #b4542c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a371a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: clamp(2rem, 5.5vw, 3.2rem);
            border-bottom: 4px solid #f3b33d;
            display: inline-block;
            padding-bottom: 0.2em;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            border-left: 6px solid #f3b33d;
            padding-left: 0.75rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            color: #2d2d44;
            margin-top: 2rem;
        }
        h4 {
            font-size: clamp(1rem, 1.8vw, 1.25rem);
            color: #3d3d55;
            font-weight: 600;
            margin-top: 1.5rem;
        }
        p {
            margin: 0.9rem 0;
            font-size: 1.05rem;
        }
        .content-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        @media (max-width: 640px) {
            .content-section {
                padding: 1.2rem 1rem;
            }
            body {
                padding: 0 10px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 2px solid #e8e0d6;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f3b33d, #d4692a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(212, 105, 42, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #d4692a;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: initial;
            color: #6b5b4e;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            color: #2d2d44;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }
        .nav-bar a:hover {
            background: #f3b33d;
            color: #1a1a2e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #2d2d44;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ede4da;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem 0;
                gap: 0.3rem;
            }
            .nav-bar a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
                background: #f5efe9;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            color: #6b5b4e;
            padding: 0.6rem 0 0.2rem 0;
            background: transparent;
            border-radius: 12px;
            margin: 0.2rem 0 0.6rem 0;
        }
        .breadcrumb a {
            color: #b4542c;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #a98d7a;
        }
        .search-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            max-width: 580px;
            margin: 1.2rem 0 0.8rem 0;
            background: #fff;
            padding: 0.3rem;
            border-radius: 60px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0d6cc;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            padding: 0.7rem 1.2rem;
            font-size: 1rem;
            border-radius: 60px;
            outline: none;
            background: transparent;
            min-width: 120px;
            color: #1e1e2a;
        }
        .search-wrap input::placeholder {
            color: #9a8a7a;
        }
        .search-wrap button {
            background: #f3b33d;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            color: #1a1a2e;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
        }
        .search-wrap button:hover {
            background: #e09f2a;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 1rem 0;
            padding: 1rem 1.2rem;
            background: #fcf9f5;
            border-radius: 16px;
            border: 1px solid #ece3d9;
        }
        .rating-box .stars {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.25rem;
        }
        .rating-box .stars input {
            display: none;
        }
        .rating-box .stars label {
            font-size: 1.8rem;
            color: #d6c8ba;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-box .stars input:checked~label,
        .rating-box .stars label:hover,
        .rating-box .stars label:hover~label {
            color: #f3b33d;
        }
        .rating-box .stars label i {
            font-size: inherit;
        }
        .rating-box button {
            background: #2d2d44;
            color: #fff;
            border: none;
            padding: 0.5rem 1.6rem;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.9rem;
        }
        .rating-box button:hover {
            background: #454565;
        }
        .rating-avg {
            font-weight: 600;
            color: #2d2d44;
            font-size: 1.1rem;
        }
        .comment-area {
            margin: 1.5rem 0;
        }
        .comment-area textarea {
            width: 100%;
            border: 1px solid #ddd6cc;
            border-radius: 16px;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #f3b33d;
            outline: none;
            box-shadow: 0 0 0 3px rgba(243, 179, 61, 0.15);
        }
        .comment-area .comment-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.6rem;
            align-items: center;
        }
        .comment-area .comment-actions button {
            background: #b4542c;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .comment-area .comment-actions button:hover {
            background: #8a3f1f;
        }
        .comment-list {
            margin-top: 1.2rem;
        }
        .comment-item {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #ede4da;
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
        }
        .comment-item .avatar {
            background: #f3b33d;
            color: #1a1a2e;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .comment-item .comment-body {
            flex: 1;
        }
        .comment-item .comment-body .meta {
            font-size: 0.8rem;
            color: #8a7a6a;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 0.8rem 0;
            border-top: 2px solid #e8e0d6;
            margin-top: 2.5rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.2rem;
            color: #2d2d44;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        friend-link .fl-list a {
            color: #b4542c;
            font-size: 0.95rem;
        }
        .site-footer {
            padding: 1.8rem 0 2.5rem 0;
            text-align: center;
            color: #6b5b4e;
            font-size: 0.9rem;
            border-top: 1px solid #e8e0d6;
            margin-top: 1.5rem;
        }
        .site-footer .copyright {
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            background: #fcfaf7;
            border-radius: 16px;
            overflow: hidden;
        }
        .data-table th {
            background: #2d2d44;
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #ede4da;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f7f1ea;
        }
        .highlight {
            background: #fdf6e3;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            font-weight: 600;
        }
        .pro-tip {
            background: #eef4f0;
            border-left: 5px solid #2a9d8f;
            padding: 0.8rem 1.2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.2rem 0;
        }
        .pro-tip i {
            color: #2a9d8f;
            margin-right: 0.5rem;
        }
        .indian-flag {
            display: inline-block;
        }
        .badge {
            display: inline-block;
            background: #f3b33d;
            color: #1a1a2e;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        .gap-2 {
            gap: 2rem;
        }
        .text-center-mobile {
            text-align: left;
        }
        @media (max-width: 640px) {
            .text-center-mobile {
                text-align: left;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6b5b4e;
            text-align: center;
            margin-top: 0.3rem;
            font-style: italic;
        }
        .img-wrap {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f2ede7;
            padding: 0.5rem;
        }
        :target {
            scroll-margin-top: 70px;
        }
        .schema-hidden {
            display: none;
        }
