:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: var(--dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #FFD700;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: rgba(255,255,255,0.9);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #FFD700;
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            border-bottom: 1px solid #dee2e6;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px dashed var(--secondary);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            color: var(--gray);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 1.8rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight strong {
            color: var(--primary);
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: var(--light);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            border-top: 5px solid var(--accent);
            transition: var(--transition);
        }
        .strategy-card:hover {
            transform: translateY(-5px);
        }
        .strategy-card h4 {
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3rem 0;
        }
        .cta-box h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
            text-align: left;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #FFD700;
            cursor: pointer;
        }
        .star-rating i {
            transition: var(--transition);
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .web-links {
            background: var(--light);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        .site-footer {
            background: var(--dark);
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .strategy-grid {
                grid-template-columns: 1fr;
            }
            .featured-image {
                max-height: 300px;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
