        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-green: #58cc02;
            --secondary-green: #1cb0f6;
            --accent-yellow: #ffc800;
            --dark-text: #2e2e2e;
            --light-text: #5a5a5a;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #fff;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.2rem;
            color: #1a1a1a;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 2rem;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary-green);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-green);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: var(--secondary-green);
            transform: scale(1.05);
            transition: var(--transition);
        }
        .my-logo::before {
            content: "🦉";
            font-size: 2rem;
        }
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--dark-text);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--light-text);
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--secondary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        article {
            max-width: 900px;
        }
        .content-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        .feature-box {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .feature-box::before {
            content: "🎯";
            position: absolute;
            left: -15px;
            top: -15px;
            background: white;
            padding: 5px;
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .widget {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: var(--primary-green);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(88, 204, 2, 0.1);
        }
        button, .btn {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(88, 204, 2, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
            transform: scale(1.2);
        }
        footer {
            background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        friend-link a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(88, 204, 2, 0.1) 0%, rgba(28, 176, 246, 0.1) 100%);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-green);
        }
        .tip {
            background: #fff9e6;
            border: 2px dashed var(--accent-yellow);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .tip::before {
            content: "💡 Pro Tip: ";
            font-weight: 700;
            color: var(--dark-text);
        }
        .stat-box {
            display: inline-block;
            background: white;
            padding: 1rem 2rem;
            margin: 1rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 2px solid var(--primary-green);
            transition: var(--transition);
        }
        .stat-box:hover {
            transform: rotate(-2deg) scale(1.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 25px;
            }
            .nav-link {
                width: 100%;
                text-align: center;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            nav, aside, .hamburger, footer, .widget {
                display: none;
            }
            body {
                max-width: 100%;
                padding: 0;
            }
            main {
                grid-template-columns: 1fr;
            }
        }
