* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #ff4655;
            --secondary-color: #1c1c1e;
            --accent-color: #0f1923;
            --text-color: #ffffff;
            --light-bg: #2a2a2d;
            --border-color: #404044;
            --success-color: #4CAF50;
            --warning-color: #ff9800;
            --error-color: #f44336;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo:hover {
            color: #ff6b7a;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            background: var(--light-bg);
            color: var(--text-color);
            width: 300px;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ff6b7a;
        }
        .main-nav {
            background: var(--accent-color);
            padding: 1rem 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
        }
        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: 500;
        }
        .nav-link:hover {
            background: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--light-bg);
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb-item {
            color: var(--text-color);
        }
        .breadcrumb-item:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
        }
        .breadcrumb-link {
            color: var(--primary-color);
            text-decoration: none;
        }
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        .article-section {
            background: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .article-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        .article-subtitle {
            color: var(--primary-color);
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .article-text {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: var(--primary-color);
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        .status-tracker {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .status-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .status-online {
            color: var(--success-color);
        }
        .status-offline {
            color: var(--error-color);
        }
        .status-maintenance {
            color: var(--warning-color);
        }
        .sidebar {
            background: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .comment-section {
            background: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .form-input, .form-textarea {
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            background: var(--light-bg);
            color: var(--text-color);
        }
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #ff6b7a;
        }
        .rating-system {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        .star-rating {
            display: flex;
            gap: 5px;
        }
        .star {
            color: #ffd700;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background: var(--accent-color);
            padding: 3rem 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-2px);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background: var(--secondary-color);
            padding: 2rem 0;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                display: none;
            }
            .nav-list.active {
                display: flex;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-section {
            animation: fadeIn 0.6s ease-out;
        }
        .status-item {
            transition: background 0.3s;
        }
        .status-item:hover {
            background: rgba(255,255,255,0.05);
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
