*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #f59e0b;
            --primary-dark: #d97706;
            --secondary: #1e293b;
            --accent: #ef4444;
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --bg-body: #f8fafc;
            --text-light: #f1f5f9;
            --text-dark: #0f172a;
            --text-muted: #94a3b8;
            --border: #334155;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 16px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--text-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo .logo-icon {
            font-size: 32px;
            color: var(--accent);
        }
        .my-logo .logo-sub {
            font-size: 12px;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 1px;
            display: block;
            line-height: 1;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: var(--primary);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 12px 20px;
            font-size: 13px;
            color: var(--text-muted);
            background: rgba(15, 23, 42, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .breadcrumb a {
            color: var(--primary-dark);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 30px 20px 60px;
        }
        .hero-section {
            text-align: center;
            padding: 40px 20px 30px;
            background: linear-gradient(145deg, #0f172a, #1e293b);
            border-radius: var(--radius);
            color: var(--text-light);
            margin-bottom: 48px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "⚔️🔥";
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 120px;
            opacity: 0.08;
            transform: rotate(15deg);
        }
        .hero-section h1 {
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero-section h1 .highlight {
            color: var(--primary);
        }
        .hero-section p {
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto 20px;
            color: #cbd5e1;
            font-weight: 400;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--text-muted);
        }
        .hero-meta i {
            color: var(--primary);
            margin-right: 6px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245, 158, 11, 0.15);
            padding: 4px 14px;
            border-radius: 20px;
            font-weight: 500;
            color: var(--primary);
        }
        .content-section {
            margin-bottom: 56px;
        }
        .content-section h2 {
            font-size: clamp(24px, 3.5vw, 36px);
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 4px solid var(--primary);
            display: inline-block;
        }
        .content-section h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
        .content-section h3 {
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 700;
            color: var(--secondary);
            margin: 28px 0 14px;
        }
        .content-section h3 i {
            color: var(--accent);
            margin-right: 8px;
        }
        .content-section h4 {
            font-size: clamp(17px, 1.8vw, 22px);
            font-weight: 600;
            color: #1e293b;
            margin: 20px 0 10px;
        }
        .content-section p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #334155;
        }
        .content-section p b,
        .content-section p strong {
            color: var(--secondary);
        }
        .content-section ul,
        .content-section ol {
            margin: 12px 0 20px 24px;
            color: #334155;
        }
        .content-section li {
            margin-bottom: 8px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }
        .card .card-icon {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .card h4 {
            margin: 0 0 8px;
            font-size: 18px;
        }
        .card p {
            font-size: 14px;
            color: #475569;
            margin: 0;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            background: #e2e8f0;
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .img-wrapper .img-caption {
            background: rgba(15, 23, 42, 0.85);
            color: var(--text-light);
            padding: 10px 18px;
            font-size: 13px;
            text-align: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        thead {
            background: var(--secondary);
            color: var(--text-light);
        }
        th,
        td {
            padding: 12px 18px;
            text-align: left;
            font-size: 14px;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 13px;
        }
        tr:hover td {
            background: #f1f5f9;
        }
        .search-block {
            background: white;
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
        }
        .search-block h3 {
            margin: 0 0 16px;
            font-size: 22px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        @media(max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: white;
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
        }
        .feedback-card h3 {
            margin: 0 0 16px;
            font-size: 20px;
        }
        .feedback-card h3 i {
            color: var(--primary);
            margin-right: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 15px;
            font-family: var(--font);
            outline: none;
            transition: border-color 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--primary);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            background: var(--secondary);
            color: var(--text-light);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .feedback-card button:hover {
            background: #0f172a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #cbd5e1;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s, transform 0.1s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--primary);
            transform: scale(1.1);
        }
        .site-footer {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--text-light);
            padding: 48px 20px 24px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media(max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-brand h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .footer-brand p {
            color: #94a3b8;
            font-size: 14px;
            max-width: 360px;
        }
        .footer-links h4,
        .footer-friend h4 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links a,
        .footer-friend a {
            display: block;
            color: #cbd5e1;
            text-decoration: none;
            padding: 4px 0;
            font-size: 14px;
            transition: color 0.2s, padding-left 0.2s;
        }
        .footer-links a:hover,
        .footer-friend a:hover {
            color: var(--primary);
            padding-left: 6px;
        }
        friend-link {
            display: block;
        }
        .copyright {
            max-width: var(--max-width);
            margin: 32px auto 0;
            padding-top: 20px;
            border-top: 1px solid #334155;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }
        .copyright a {
            color: var(--primary);
            text-decoration: none;
        }
        @media(max-width:900px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--secondary);
                padding: 16px 20px;
                gap: 4px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
                border-radius: 0 0 var(--radius) var(--radius);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 16px;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                height: 60px;
            }
            .my-logo {
                font-size: 22px;
            }
            .hero-section {
                padding: 28px 16px;
            }
        }
        @media(max-width:480px) {
            .hero-section h1 {
                font-size: 24px;
            }
            .hero-section p {
                font-size: 15px;
            }
            .search-form input {
                min-width: 140px;
            }
            .feedback-card {
                padding: 20px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            main {
                padding: 20px 14px 40px;
            }
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        .indian-flag {
            display: inline-block;
        }
        .pro-tip {
            background: #fef3c7;
            border-left: 6px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .pro-tip strong {
            color: var(--secondary);
        }
        .quote-block {
            background: #f1f5f9;
            padding: 20px 24px;
            border-radius: var(--radius);
            font-style: italic;
            border-left: 4px solid var(--primary);
            margin: 20px 0;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .text-center {
            text-align: center;
        }
