        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #ff4655;
            --primary-dark: #d43c49;
            --secondary: #0f1923;
            --tertiary: #1a242d;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --accent: #00ff9d;
            --border: #2a3a48;
            --shadow: rgba(0, 0, 0, 0.3);
            --card-bg: #1a242dcc;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background: linear-gradient(135deg, #0a0f14 0%, #141a23 100%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, var(--secondary) 0%, rgba(15, 25, 35, 0.95) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff4655, #ff6b7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: var(--transition);
            text-shadow: 0 2px 4px var(--shadow);
        }
        .logo:hover {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(255, 70, 85, 0.3);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--secondary);
            padding: 1rem;
            border-top: 1px solid var(--border);
            z-index: 999;
            box-shadow: 0 10px 20px var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .breadcrumb {
            background: var(--tertiary);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            list-style: none;
        }
        .breadcrumb-item {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary);
        }
        .breadcrumb-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-link:hover {
            color: var(--primary);
        }
        main {
            padding: 2rem 0;
            min-height: 100vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(0, 255, 157, 0.05));
            border-radius: 12px;
            border: 1px solid var(--border);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-section {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .content-section:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 70, 85, 0.1);
        }
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 1.5rem 0 1rem 0;
            color: var(--text-primary);
        }
        p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 70, 85, 0.2), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .specs-table th {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .specs-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--border);
            background: rgba(42, 58, 72, 0.5);
        }
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        .specs-table tr:hover td {
            background: rgba(255, 70, 85, 0.1);
        }
        .badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-right: 0.5rem;
        }
        .badge-minimum {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        }
        .badge-recommended {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
        }
        .badge-competitive {
            background: linear-gradient(135deg, #ffd166, #ffb347);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: linear-gradient(145deg, #1a242d, #162028);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(255, 70, 85, 0.2);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .search-section, .comments-section, .rating-section {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.2);
        }
        .btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #2a3a48, #1a242d);
            border: 1px solid var(--border);
        }
        .btn-secondary:hover {
            border-color: var(--primary);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: inherit;
            transition: var(--transition);
        }
        textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #2a3a48;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .star:hover ~ .star {
            color: #ffd700;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-caption {
            text-align: center;
            padding: 1rem;
            background: rgba(42, 58, 72, 0.7);
            color: var(--text-secondary);
            font-style: italic;
        }
        .internal-link {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent);
            transition: var(--transition);
        }
        .internal-link:hover {
            color: var(--primary);
            border-bottom-style: solid;
        }
        .footer-links {
            background: var(--secondary);
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .web-link {
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        .web-link i {
            color: var(--primary);
        }
        footer {
            background: #0a0f14;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .copyright a {
            color: var(--primary);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .text-primary { color: var(--primary); }
        .text-accent { color: var(--accent); }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .specs-table {
                display: block;
                overflow-x: auto;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .article-header {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
