:root {
            --primary: #1a73e8;
            --secondary: #fbbc04;
            --accent: #34a853;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #dadce0;
            --text: #3c4043;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary), #0d47a1);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 3px solid transparent;
        }
        .cta-button:hover {
            background-color: transparent;
            border-color: var(--secondary);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        article h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--secondary);
        }
        article h3 {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 2.5rem 0 1rem;
        }
        article h4 {
            color: var(--accent);
            font-size: 1.3rem;
            margin: 2rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--primary);
        }
        .highlight {
            background-color: #e8f0fe;
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .image-caption {
            font-style: italic;
            margin-top: 0.8rem;
            color: #666;
            font-size: 0.95rem;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .sidebar-widget h3 i {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            border: 2px solid var(--gray);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #0d47a1;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--gray);
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray);
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .btn-submit {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .btn-submit:hover {
            background-color: #2e7d32;
        }
        .related-links {
            background-color: var(--light);
            padding: 1.2rem;
            border-radius: 10px;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--gray);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--text);
        }
        .related-links a:hover {
            color: var(--primary);
            gap: 1rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: var(--gray);
        }
        friend-link a:hover {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--dark);
                padding: 2rem;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
            main article {
                padding: 1.8rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article section {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .tag {
            display: inline-block;
            background-color: #e8f0fe;
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
