:root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --accent-color: #ff7e5f;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #666;
            --border-radius: 12px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, var(--dark-color) 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent-color), #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: var(--transition);
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(255, 126, 95, 0.4);
        }
        .logo .tagline {
            font-size: 0.9rem;
            color: #a0a0c0;
            margin-top: -5px;
            letter-spacing: 0.5px;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 70%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: var(--transition);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            width: 100%;
            flex-direction: column;
            background: var(--dark-color);
            margin-top: 1rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease-out;
        }
        .mobile-nav.active {
            display: flex;
            max-height: 500px;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            padding-left: 2rem;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1.5rem auto;
            box-shadow: var(--box-shadow);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--secondary-color);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        main {
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            article h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #f0f0f0;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .meta-item i {
            color: var(--primary-color);
        }
        .intro-box {
            background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
            border-left: 5px solid var(--secondary-color);
            padding: 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2.5rem;
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.05);
        }
        .intro-box p {
            font-size: 1.1rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        h2, h3, h4 {
            color: var(--dark-color);
            margin: 2.5rem 0 1.2rem 0;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eaeaea;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(106, 17, 203, 0.2);
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: var(--primary-color);
        }
        .server-status-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .server-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid #eaeaea;
            transition: var(--transition);
        }
        .server-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        .server-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .server-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--dark-color);
        }
        .status-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
        }
        .status-online {
            background: rgba(76, 175, 80, 0.15);
            color: #2e7d32;
        }
        .status-offline {
            background: rgba(244, 67, 54, 0.15);
            color: #c62828;
        }
        .status-maintenance {
            background: rgba(255, 152, 0, 0.15);
            color: #ef6c00;
        }
        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .status-online .status-dot {
            background: #4caf50;
            box-shadow: 0 0 8px #4caf50;
        }
        .status-offline .status-dot {
            background: #f44336;
            box-shadow: 0 0 8px #f44336;
        }
        .status-maintenance .status-dot {
            background: #ff9800;
            box-shadow: 0 0 8px #ff9800;
        }
        .server-info {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .server-info p {
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
        }
        .info-label {
            font-weight: 600;
            color: var(--text-color);
        }
        .feature-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border: 3px solid white;
        }
        .feature-img:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .tooltip {
            position: relative;
            display: inline-block;
            border-bottom: 1px dotted var(--primary-color);
            cursor: help;
        }
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 250px;
            background-color: var(--dark-color);
            color: white;
            text-align: center;
            border-radius: var(--border-radius);
            padding: 0.8rem;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--dark-color) transparent transparent transparent;
        }
        .important-note {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border: 2px solid #ffc107;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        .important-note::before {
            content: "!";
            position: absolute;
            top: -15px;
            left: -15px;
            background: #ffc107;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
        }
        .important-note h4 {
            color: #e65100;
            margin-top: 0;
            padding-left: 2rem;
        }
        .important-note p {
            padding-left: 2rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            aside {
                order: -1;
            }
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--box-shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
        }
        .search-form button {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.2);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .web-links-section {
            background: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-top: 3px solid #f0f0f0;
            border-bottom: 3px solid #f0f0f0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid #e6e9ff;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.1);
            border-color: var(--primary-color);
        }
        .web-link a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .web-link i {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff7e5f, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a {
            color: #b0b0d0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            color: #8888aa;
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary-color);
        }
        .text-bold {
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
            margin: 2.5rem 0;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
        }
        @media print {
            header, aside, .search-form, .web-links-section, footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
