:root {
            --primary-green: #8BC34A;
            --secondary-green: #689F38;
            --accent-orange: #FF9800;
            --dark-bg: #2E2E2E;
            --light-bg: #F5F5F5;
            --text-dark: #333;
            --text-light: #FFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-green);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent-orange);
        }
        .my-logo:hover {
            color: #FFFDE7;
            transform: scale(1.02);
        }
        .breadcrumb {
            background-color: #E8F5E9;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--secondary-green);
        }
        .breadcrumb a:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        .main-nav ul {
            display: flex;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: var(--secondary-green);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--dark-bg);
                flex-direction: column;
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav a {
                padding: 1rem;
                border-bottom: 1px solid #444;
            }
        }
        .hero {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .play-button {
            display: inline-block;
            background-color: var(--accent-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 6px 0 #E65100;
            transition: var(--transition);
        }
        .play-button:hover {
            background-color: #FFB74D;
            transform: translateY(-3px);
            box-shadow: 0 9px 0 #E65100;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--secondary-green);
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--accent-orange);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--secondary-green);
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-orange);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--primary-green);
            margin: 2rem 0 0.8rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.6rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--secondary-green);
            font-weight: 800;
        }
        .highlight-box {
            background-color: #F1F8E9;
            border-left: 4px solid var(--accent-orange);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: var(--shadow);
            border: 5px solid white;
            outline: 2px solid var(--primary-green);
        }
        .interactive-section {
            background: linear-gradient(to right, #E3F2FD, #F3E5F5);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            text-align: center;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--secondary-green);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #CCC;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 2px solid #DDD;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--primary-green);
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
        }
        button, .btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover, .btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #CCC;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-orange);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }
        friend-link {
            display: inline-block;
            background-color: #444;
            color: #BBB;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 6px;
            border: 1px solid #555;
        }
        friend-link:hover {
            background-color: #555;
            color: white;
            border-color: var(--primary-green);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #AAA;
        }
        .last-updated {
            background-color: #FFF3CD;
            color: #856404;
            padding: 10px 15px;
            border-radius: 8px;
            margin: 2rem 0;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
