        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #1e90ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #58cc02 0%, #1cb0f6 100%);
            color: white;
            padding: 1rem 5%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            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;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo span {
            color: #ffc800;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 5%;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .search-container {
            background-color: #fff;
            padding: 2rem 5%;
            text-align: center;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #58cc02;
            border-right: none;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #58cc02, #1cb0f6);
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .search-btn:hover {
            opacity: 0.9;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr minmax(300px, 25%);
            gap: 3rem;
            padding: 3rem 5%;
            max-width: 1600px;
            margin: 0 auto;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-header {
            border-bottom: 3px solid #58cc02;
            padding-bottom: 1.5rem;
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #6c757d;
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .last-updated {
            background-color: #e7f7ff;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        h2, h3, h4 {
            color: #2d3748;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            scroll-margin-top: 100px;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #1cb0f6;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #58cc02;
        }
        h4 {
            font-size: 1.3rem;
            color: #6c757d;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .key-point {
            background-color: #f0f9ff;
            border-left: 4px solid #1cb0f6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .reddit-quote {
            background-color: #fff5f5;
            border: 1px solid #ffcccb;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            position: relative;
        }
        .reddit-quote::before {
            content: '"';
            font-size: 4rem;
            color: #ff6b6b;
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: 0.3;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #dee2e6;
            padding: 1rem;
            text-align: left;
        }
        .comparison-table th {
            background-color: #58cc02;
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .highlight {
            background-color: #ffeb3b;
            padding: 0 4px;
            border-radius: 3px;
            font-weight: 600;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 2px dotted #1cb0f6;
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .related-links li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #58cc02;
            font-size: 0.8rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .selected {
            color: #ffc800;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(to right, #58cc02, #1cb0f6);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .comments-section {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            margin: 3rem 5%;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .comment-form input, .comment-form textarea {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            grid-column: 1 / -1;
            min-height: 150px;
            resize: vertical;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #666;
        }
        footer {
            background: #2d3748;
            color: #cbd5e0;
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1600px;
            margin: 0 auto;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }
        friend-link {
            display: inline-block;
            background-color: #4a5568;
            color: #cbd5e0;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #58cc02;
            color: white;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: 0;
            }
            .article-meta {
                flex-direction: column;
            }
            .comment-form {
                grid-template-columns: 1fr;
            }
            article, .comments-section {
                padding: 2rem;
            }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb, .main-container, .comments-section, footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
