* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 18px;
            padding-bottom: 60px;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #90e0ef;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            border-bottom: 2px solid #00b4d8;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4d8, #ff0054);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            background: linear-gradient(90deg, #90e0ef, #ff4d8d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: rgba(0, 180, 216, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            margin-top: 30px;
        }
        .article-header {
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid #333;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .subtitle {
            font-size: 1.3rem;
            color: #90e0ef;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }
        article {
            background: rgba(25, 25, 35, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h2 {
            color: #00b4d8;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
            font-size: 2rem;
        }
        h3 {
            color: #ff0054;
            margin: 25px 0 10px;
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.1);
            border-left: 4px solid #00b4d8;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background: rgba(255, 0, 84, 0.1);
            border-left: 4px solid #ff0054;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #333;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
        }
        .interactive-box {
            background: rgba(30, 30, 46, 0.9);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .interactive-box h3 {
            text-align: center;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 15px;
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: linear-gradient(90deg, #0077b6, #00b4d8);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffcc00;
        }
        aside {
            background: rgba(25, 25, 35, 0.8);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            border: 1px solid #333;
        }
        aside h3 {
            color: #90e0ef;
            font-size: 1.4rem;
        }
        aside ul {
            list-style: none;
            margin-top: 20px;
        }
        aside ul li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        aside ul li a {
            display: block;
            padding: 10px;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
        }
        aside ul li a:hover {
            background: rgba(0, 180, 216, 0.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(25, 25, 35, 0.8);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #333;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #00b4d8;
        }
        footer {
            text-align: center;
            padding: 30px;
            color: #aaa;
            border-top: 1px solid #333;
            margin-top: 50px;
        }
        .copyright {
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                padding: 20px;
                border-top: 1px solid #333;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .subtitle {
                font-size: 1.1rem;
            }
            article, aside {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .keyword {
            font-weight: bold;
            color: #ffcc00;
        }
        .important {
            font-weight: bold;
            color: #ff0054;
            font-size: 1.1em;
        }
        .quote {
            font-style: italic;
            color: #90e0ef;
            border-left: 3px solid #00b4d8;
            padding-left: 20px;
            margin: 25px 0;
        }
