        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f8f9fa;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #4cd137;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #00a8ff;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
        }
        .logo span {
            color: #ff6b6b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(0, 168, 255, 0.2);
            color: #00a8ff;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #00a8ff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 46, 0.8);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00a8ff;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(25, 25, 35, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #00a8ff;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
        }
        h2 {
            font-size: 2rem;
            color: #4cd137;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff9f43;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #ffdd59;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(0, 168, 255, 0.1), transparent);
            border-left: 4px solid #00a8ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #00a8ff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(40, 40, 60, 0.8);
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid #555;
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            color: #00a8ff;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(20, 20, 30, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(90deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(90deg, #0097e6, #00a8ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffdd59;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.6);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #4cd137;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(40, 40, 60, 0.9);
        }
        footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 40px 0 20px;
            border-top: 2px solid #00a8ff;
            text-align: center;
            color: #aaa;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.3rem; }
            article { padding: 25px; }
            .header-container { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(20, 20, 30, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #333;
            }
            nav ul.active { display: flex; }
            .hamburger { display: block; }
            .footer-links { grid-template-columns: 1fr; }
        }
