* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--primary-color);
            color: var(--white);
            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: 1.8rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
        }
        .logo span {
            color: var(--accent-color);
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c0392b;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(0,0,0,0.1);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 15px 20px;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: rgba(0,0,0,0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
        }
        .breadcrumb span {
            margin: 0 5px;
            color: #ccc;
        }
        main {
            padding: 30px 0;
            background-color: var(--white);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-color), #34495e);
            color: var(--white);
            border-radius: 8px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .content-section {
            margin-bottom: 40px;
        }
        h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        h3 {
            color: var(--secondary-color);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin: 20px 0;
            border-radius: 4px;
        }
        .code-box {
            background-color: #2d3748;
            color: #e2e8f0;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-family: monospace;
            overflow-x: auto;
        }
        .gift-code {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            margin: 10px 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .gift-code:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .step {
            display: flex;
            margin-bottom: 30px;
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
        }
        .step-number {
            background-color: var(--accent-color);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .step-content {
            flex: 1;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .interactive-section {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--accent-color);
        }
        .comment-form, .rating-form {
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-top: 20px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input, textarea, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #c0392b;
        }
        .internal-links {
            background-color: var(--primary-color);
            padding: 30px 0;
            color: var(--white);
        }
        .web-link {
            display: inline-block;
            margin: 5px 10px;
        }
        .web-link a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background-color: #1a2530;
            color: var(--white);
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .step {
                flex-direction: column;
            }
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
