        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.6;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f7f7f7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #ffdd59;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffaf40;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            border-bottom: 3px solid #ffdd59;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffdd59;
            text-shadow: 2px 2px 4px #000;
        }
        .logo span {
            color: #ffaf40;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 8px;
        }
        nav a:hover {
            background: #1e3799;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffdd59;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #ccc;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .search-container {
            padding: 30px 0;
            text-align: center;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            margin: 20px 0;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #ffdd59;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: #fff;
            color: #333;
        }
        .search-box button {
            background: #ffdd59;
            color: #0c2461;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffaf40;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffdd59;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px #000;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #4a69bd;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4a69bd;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffaf40;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #ffdd59, #ffaf40);
            color: #0c2461;
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            font-weight: bold;
            font-size: 1.3rem;
            border-left: 6px solid #0c2461;
        }
        .tip-box {
            background: rgba(26, 188, 156, 0.2);
            border-left: 5px solid #1abc9c;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .warning-box {
            background: rgba(231, 76, 60, 0.2);
            border-left: 5px solid #e74c3c;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            margin-top: 10px;
            color: #ccc;
            font-size: 1rem;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background: rgba(255,255,255,0.08);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .interaction-title {
            font-size: 1.8rem;
            color: #ffdd59;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        textarea, input, select {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            border: 1px solid #4a69bd;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #ffdd59, #ffaf40);
            color: #0c2461;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 221, 89, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffdd59;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ffaf40;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            border-color: #ffdd59;
        }
        footer {
            background: rgba(12, 36, 97, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ffdd59;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 36, 97, 0.98);
                padding: 20px;
                border-top: 2px solid #ffdd59;
            }
            nav ul.show { display: flex; }
            .header-container { flex-wrap: wrap; }
            .user-interaction { grid-template-columns: 1fr; }
            .internal-links { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article { padding: 25px; }
            h1 { font-size: 2rem; }
            .internal-links { grid-template-columns: 1fr; }
            .search-box input { padding: 15px; }
        }
