:root {
            --primary: #ff4655;
            --primary-dark: #d43c4a;
            --secondary: #0f1923;
            --secondary-light: #1a2a3a;
            --accent: #00ff9d;
            --text-light: #ece8e1;
            --text-gray: #8b8b8b;
            --bg-dark: #0a0f14;
            --border-color: #2a3a4a;
            --card-bg: #111a24;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .valorant {
            color: var(--primary);
            position: relative;
        }
        .logo .valorant::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
        }
        .logo .game {
            color: var(--accent);
        }
        nav {
            display: flex;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-light);
        }
        .breadcrumb {
            background-color: var(--secondary-light);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.2;
        }
        .article-header .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 15px;
        }
        .article-header .meta i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        article {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--accent);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        article li {
            margin-bottom: 10px;
            padding-left: 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .highlight-box h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .config-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: var(--secondary-light);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .config-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .config-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .config-table tr:hover {
            background-color: rgba(255, 70, 85, 0.05);
        }
        .feature-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 30px 0;
            border: 2px solid var(--border-color);
            transition: var(--transition);
        }
        .feature-image:hover {
            transform: scale(1.005);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
        }
        .interactive-demo {
            background: var(--secondary);
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
            text-align: center;
        }
        .interactive-demo h3 {
            margin-top: 0;
        }
        .slider-container {
            margin: 20px 0;
        }
        .slider-container label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        input[type="range"] {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            background: var(--secondary-light);
            border-radius: 4px;
            outline: none;
        }
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
        }
        .preview-box {
            width: 200px;
            height: 200px;
            margin: 20px auto;
            background: #000;
            border: 2px solid var(--border-color);
            position: relative;
        }
        .crosshair-preview {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            border: 2px solid white;
            border-radius: 50%;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 70, 85, 0.3);
        }
        .btn-accent {
            background: var(--accent);
            color: var(--secondary);
        }
        .btn-accent:hover {
            background: #00e08a;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-bottom: 25px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background: var(--secondary-light);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            color: var(--text-light);
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: var(--text-gray);
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
        }
        .rating-result {
            margin-top: 10px;
            font-weight: 600;
            color: var(--accent);
        }
        .comments-section {
            margin-top: 60px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .comments-section h2 {
            color: var(--primary);
            margin-bottom: 30px;
        }
        .comment-form {
            background: var(--secondary-light);
            padding: 25px;
            border-radius: var(--radius);
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-light);
            outline: none;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }
        .comment-list {
            margin-top: 40px;
        }
        .comment {
            border-bottom: 1px solid var(--border-color);
            padding: 25px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }
        .comment-author {
            font-weight: 700;
            color: var(--accent);
        }
        .comment-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: gold;
            margin-top: 5px;
        }
        .internal-links {
            background: var(--secondary);
            padding: 40px 0;
            margin: 60px 0 0;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        .web-link {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        footer {
            background: var(--secondary);
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary);
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-column ul li {
            margin-bottom: 12px;
        }
        .footer-column ul li a {
            color: var(--text-gray);
        }
        .footer-column ul li a:hover {
            color: var(--text-light);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
                flex-direction: column;
                gap: 0;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 12px 0;
                border-bottom: 1px solid var(--border-color);
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-widget, .comments-section {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center { text-align: center; }
        .text-primary { color: var(--primary); }
        .text-accent { color: var(--accent); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .emoji { font-size: 1.2em; }
        .strong { font-weight: 700; color: var(--accent); }
        .note { background: rgba(255, 255, 0, 0.05); padding: 15px; border-radius: var(--radius); border-left: 3px solid yellow; }
