:root {
            --primary-color: #1a1a2e;
            --secondary-color: #0f3460;
            --accent-color: #e94560;
            --light-color: #f5f5f5;
            --dark-color: #121212;
            --text-color: #e1e1e1;
            --text-muted: #a0a0a0;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff6b8b;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--secondary-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-color), #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-color);
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.98);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--secondary-color);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: var(--text-color);
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: var(--border-radius);
            background-color: rgba(255, 255, 255, 0.05);
        }
        .mobile-nav a:hover {
            background-color: rgba(233, 69, 96, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-section {
            background-color: rgba(15, 52, 96, 0.3);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: 2px solid var(--secondary-color);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, var(--accent-color), #ff3366);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(233, 69, 96, 0.4);
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffcc00, var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #ffcc00;
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #66ccff;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            font-weight: 500;
            color: #aaddff;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px solid var(--secondary-color);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.01);
            border-color: var(--accent-color);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .build-card {
            background-color: rgba(15, 52, 96, 0.4);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }
        .build-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: var(--shadow);
        }
        .build-card h3 {
            margin-top: 0;
            color: #66ffcc;
        }
        .rating {
            color: #ffcc00;
            margin: 10px 0;
        }
        .interactive-section {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 50px 0;
            border: 1px solid var(--secondary-color);
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: #ffcc00;
        }
        .section-title i {
            font-size: 2rem;
        }
        .form-group {
            margin-bottom: 25px;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #aaddff;
        }
        textarea, input[type="text"], input[type="email"], select {
            width: 100%;
            padding: 15px;
            border-radius: var(--border-radius);
            border: 2px solid var(--secondary-color);
            background-color: rgba(255, 255, 255, 0.07);
            color: var(--text-color);
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: rgba(255, 255, 255, 0.1);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.selected {
            color: #ffcc00;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00cc66, #00cc99);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 204, 102, 0.3);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(233, 69, 96, 0.1);
            border-color: var(--accent-color);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--text-color);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        footer {
            background-color: rgba(18, 18, 18, 0.98);
            padding: 50px 0 30px;
            margin-top: 50px;
            border-top: 1px solid var(--secondary-color);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links-mini {
            list-style: none;
        }
        .footer-links-mini li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.5rem; }
            .intro { font-size: 1.1rem; }
        }
