:root {
            --primary: #9c27b0;
            --primary-dark: #7b1fa2;
            --secondary: #ff9800;
            --dark: #222;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        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: #ffc107;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 18px;
            border: 2px solid var(--primary);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav {
            background-color: rgba(0,0,0,0.9);
            border-top: 1px solid #444;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 18px 24px;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            background-color: var(--primary);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(30,30,30,0.8);
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            background: linear-gradient(to bottom, #111, #222);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(90deg, rgba(156,39,176,0.15), rgba(255,152,0,0.15));
            border-radius: var(--border-radius);
        }
        h1 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .meta {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            border: 3px solid var(--primary);
        }
        .content-section {
            margin-bottom: 50px;
            background: rgba(30,30,30,0.7);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px dashed rgba(255,152,0,0.4);
        }
        h3 {
            color: #b39ddb;
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255,152,0,0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            border-left: 4px solid var(--secondary);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(100,100,100,0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #444;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-color: var(--primary);
        }
        .build-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .build-card {
            background: rgba(40,40,40,0.9);
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 5px solid var(--primary);
        }
        .mod-list {
            list-style: none;
            margin: 20px 0;
        }
        .mod-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            border-left: 4px solid var(--primary);
        }
        .rating-section, .comments-section {
            background: rgba(30,30,30,0.9);
            padding: 35px;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            font-size: 2.5rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            margin: 0 10px;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #ccc;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.07);
            border: 1px solid #555;
            border-radius: var(--border-radius);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(156,39,176,0.3);
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(156,39,176,0.4);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--secondary), #f57c00);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 0;
            border-bottom: 1px solid #444;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(255,152,0,0.05);
            border-color: var(--secondary);
            transform: translateX(5px);
        }
        footer {
            background-color: #000;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .search-form { max-width: 400px; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .search-form { 
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .header-top {
                flex-wrap: wrap;
            }
            nav { display: none; }
            nav.active { display: block; }
            .nav-links {
                flex-direction: column;
                text-align: center;
            }
            .nav-links a { padding: 15px; }
            .content-section { padding: 25px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 1.9rem; }
            .article-header { padding: 20px; }
            .content-section { padding: 20px; }
        }
