        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f172a;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-left: 6px solid #3b82f6;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.15rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.5em;
        }
        strong {
            color: #0f172a;
        }
        em {
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px dashed #cbd5e1;
            margin: 2.4em 0;
        }
        .container {
            background: #ffffff;
            border-radius: 28px;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
            padding: 24px 28px 40px;
            margin: 20px 0 40px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #1e3a5f, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #3b82f6;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e293b;
            background: #f1f5f9;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: #2563eb;
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #0f172a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e2e8f0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            padding: 14px 0 6px;
            margin: 0;
            font-size: 0.9rem;
            color: #64748b;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #94a3b8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #3b82f6;
        }
        .breadcrumb a:hover {
            color: #1d4ed8;
        }
        .search-section {
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0 20px;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-section label {
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0f172a;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #3b82f6;
        }
        .search-form button {
            padding: 12px 24px;
            border: none;
            border-radius: 60px;
            background: #2563eb;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1d4ed8;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0 20px;
        }
        .comment-box,
        .score-box {
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #e2e8f0;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-box textarea {
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: #3b82f6;
        }
        .comment-box input,
        .score-box input {
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .comment-box input:focus,
        .score-box input:focus {
            border-color: #3b82f6;
        }
        .comment-box button,
        .score-box button {
            padding: 12px 28px;
            border: none;
            border-radius: 60px;
            background: #2563eb;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #1d4ed8;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f59e0b;
        }
        .site-footer {
            border-top: 1px solid #e2e8f0;
            padding: 32px 0 24px;
            margin-top: 32px;
            font-size: 0.95rem;
            color: #475569;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        friend-link {
            display: block;
            background: #f1f5f9;
            border-radius: 16px;
            padding: 16px 20px;
            margin-bottom: 18px;
            font-weight: 600;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 14px 4px 0;
            padding: 4px 10px;
            background: #fff;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid #e2e8f0;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid #e2e8f0;
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 16px;
        }
        .copyright strong {
            color: #1e293b;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4em 0;
            font-size: 0.95rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1e293b;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
            background: #fff;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8fafc;
        }
        .feature-image {
            margin: 1.8em 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.10);
            background: #f1f5f9;
        }
        .feature-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #475569;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        @media (max-width: 900px) {
            .container {
                padding: 16px 16px 32px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                border-radius: 20px;
                padding: 16px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                z-index: 50;
                border: 1px solid #e2e8f0;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                width: 100%;
                text-align: left;
                padding: 12px 16px;
            }
            .hamburger {
                display: block;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            friend-link a {
                margin: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 12px 24px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .highlight-box {
            background: #eff6ff;
            border-left: 6px solid #3b82f6;
            padding: 18px 24px;
            border-radius: 14px;
            margin: 1.4em 0;
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .tag-india {
            display: inline-block;
            background: #fef3c7;
            color: #92400e;
            padding: 2px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
        }
