        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #ffcc00;
            --accent-dark: #e6b800;
            --text: #f1f1f1;
            --text-muted: #b0b0b0;
            --card-bg: #222831;
            --border: #393e46;
            --success: #4caf50;
            --danger: #f44336;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--secondary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff6b6b;
        }
        .logo:hover {
            text-decoration: none;
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 204, 0, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent);
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--secondary);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            overflow-y: auto;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            font-size: 1.2rem;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border);
            display: block;
        }
        .close-menu {
            align-self: flex-end;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent);
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            display: none;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: var(--border);
        }
        main {
            flex: 1;
            padding: 2rem 0 4rem;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--accent);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--accent);
            border-radius: 0 5px 5px 0;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--accent);
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--accent);
            font-size: 1.1rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background-color: rgba(34, 40, 49, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .step-by-step {
            counter-reset: step-counter;
            margin: 2.5rem 0;
        }
        .step {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            align-items: flex-start;
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            background-color: var(--accent);
            color: var(--primary);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
        }
        .step-content h4 {
            margin-top: 0;
            color: var(--accent);
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            border: 3px solid var(--accent);
            max-width: 800px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .search-section {
            background-color: var(--secondary);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 1.5rem auto 0;
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            background-color: var(--primary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 1.8rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-button:hover {
            background-color: var(--accent-dark);
        }
        .interactive-section {
            margin: 4rem 0;
        }
        .rating-container {
            background-color: var(--secondary);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2.2rem;
        }
        .star {
            cursor: pointer;
            color: var(--border);
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .rating-form {
            max-width: 500px;
            margin: 2rem auto 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-color: var(--primary);
            color: var(--text);
            font-family: var(--font-main);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        .submit-button:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.3);
        }
        .comments-container {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.5rem;
        }
        .comment:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--accent);
        }
        .comment-date {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: var(--secondary);
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .web-link {
            padding: 1.2rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--accent);
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .footer-bottom a {
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        @media (max-width: 992px) {
            .feature-list {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                border-radius: 8px;
                border-right: 2px solid var(--border);
            }
            .search-button {
                border-radius: 8px;
                padding: 1rem;
            }
            .step {
                flex-direction: column;
                gap: 1rem;
            }
            .stars {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
