* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #D4AF37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #111;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background-color: var(--dark);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            text-shadow: 2px 2px 0 #000;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo:hover {
            transform: scale(1.03);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .breadcrumb {
            background-color: #222;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 10px;
            color: var(--gray);
        }
        .search-box {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            padding: 40px 20px;
            text-align: center;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(139,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: #333;
            color: white;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #a00000;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: #1e1e1e;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            color: #D4AF37;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a0f0f;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .wallpaper-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .wallpaper-card {
            background: #252525;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .wallpaper-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139,0,0,0.4);
        }
        .wallpaper-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .wallpaper-info {
            padding: 20px;
        }
        .wallpaper-info h4 {
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .btn-download {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            margin-top: 10px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download:hover {
            background: #a00000;
            color: white;
            transform: scale(1.05);
        }
        .interaction-section {
            background: #222;
            padding: 30px;
            border-radius: 12px;
            margin-top: 50px;
        }
        .rating-box, .comment-box {
            margin-bottom: 40px;
        }
        .rating-box h3, .comment-box h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: gold;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #a00000;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            background: #333;
            border: 1px solid #444;
            border-radius: 6px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 40px 20px;
            background: #1a1a1a;
            margin-top: 50px;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
        }
        .web-link {
            background: #2a2a2a;
            padding: 12px 25px;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ccc;
            font-weight: 500;
        }
        .web-link:hover a {
            color: white;
        }
        footer {
            background-color: #000;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #777;
            border-top: 1px solid #333;
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-links {
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            article {
                padding: 25px;
            }
            .wallpaper-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .wallpaper-grid {
                grid-template-columns: 1fr;
            }
            .web-link {
                width: 100%;
                text-align: center;
            }
        }
