        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #72efdd;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 4rem 0;
        }
        .text-center { text-align: center; }
        .text-highlight {
            color: #f72585;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }
        .btn:hover {
            background: linear-gradient(90deg, #3a0ca3, #4361ee);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.6);
        }
        header {
            background-color: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #4361ee;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(67, 97, 238, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 15, 35, 0.98);
            padding: 20px;
            flex-direction: column;
            border-top: 1px solid #3a0ca3;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #2d3758;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(15, 23, 42, 0.8);
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #72efdd;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(26, 26, 46, 0.9));
            border-radius: 15px;
            border-left: 6px solid #f72585;
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(45deg, #72efdd, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            color: #b0b0d0;
            font-size: 0.95rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            font-size: 1.15rem;
        }
        .content-body h2 {
            font-size: 2.4rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #4361ee;
            color: #72efdd;
        }
        .content-body h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #4cc9f0;
        }
        .content-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-body blockquote {
            border-left: 5px solid #f72585;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background-color: rgba(67, 97, 238, 0.1);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .content-body ul, .content-body ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .content-body li {
            margin-bottom: 0.5rem;
        }
        .info-box {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 23, 42, 0.9));
            border: 2px solid #4cc9f0;
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        .info-box h4 {
            color: #72efdd;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            margin-top: 0.5rem;
            color: #b0b0d0;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: rgba(15, 23, 42, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #2d3758;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #f72585;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        .search-form button {
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 20px;
            cursor: pointer;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .rating-form label {
            display: block;
            margin-bottom: 0.5rem;
        }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid #2d3758;
            border-radius: 5px;
            color: white;
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .server-status {
            text-align: center;
        }
        .status-indicator {
            display: inline-block;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #4ade80; 
        }
        .status-indicator.down { background-color: #f72585; }
        .status-indicator.maintenance { background-color: #fbbf24; }
        .comments-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid #4361ee;
        }
        .comment-form, .score-form {
            background-color: rgba(15, 23, 42, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid #2d3758;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .comment-list .comment {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #3a0ca3;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #b0b0d0;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: rgba(10, 15, 35, 0.95);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 2px solid #3a0ca3;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(67, 97, 238, 0.2);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            background-color: #0a0f23;
            color: #b0b0d0;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #2d3758;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .desktop-nav { display: none; }
            .article-header h1 { font-size: 2.5rem; }
            .content-body h2 { font-size: 2rem; }
            .content-body h3 { font-size: 1.6rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
            .section-spacing { padding: 2.5rem 0; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .stagger-delay-1 { animation-delay: 0.1s; opacity: 0; }
        .stagger-delay-2 { animation-delay: 0.2s; opacity: 0; }
        .stagger-delay-3 { animation-delay: 0.3s; opacity: 0; }
