        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a472a 0%, #2d5a3e 100%);
            color: #f0f7da;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #9bde7e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #c8f7b0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 71, 42, 0.95);
            padding: 15px 0;
            border-bottom: 3px solid #9bde7e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #9bde7e;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            color: #c8f7b0;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(155, 222, 126, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #9bde7e;
        }
        .breadcrumb {
            padding: 10px 0;
            background: rgba(45, 90, 62, 0.8);
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #9bde7e;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 71, 42, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .sidebar {
            background: rgba(45, 90, 62, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 3rem;
            color: #9bde7e;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #c8f7b0;
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: 2px solid #9bde7e;
            padding-bottom: 5px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0f7d0;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #f0f7da;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: rgba(155, 222, 126, 0.2);
            padding: 15px;
            border-left: 5px solid #9bde7e;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #9bde7e;
            border-radius: 8px;
            background: rgba(240, 247, 218, 0.1);
            color: #f0f7da;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c8f7b0;
            box-shadow: 0 0 8px rgba(200, 247, 176, 0.5);
        }
        button {
            padding: 12px 20px;
            background: linear-gradient(to right, #9bde7e, #7bc67b);
            color: #1a472a;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(155, 222, 126, 0.4);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #9bde7e;
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        footer {
            background: rgba(26, 71, 42, 0.95);
            padding: 30px 0;
            border-top: 3px solid #9bde7e;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: rgba(45, 90, 62, 0.6);
            border-radius: 8px;
            margin-bottom: 10px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(155, 222, 126, 0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d5a3e;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #c8f7b0;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 10px;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-grid {
                gap: 20px;
            }
            .article-content, .sidebar {
                padding: 20px;
            }
        }
        .text-center {
            text-align: center;
        }
        .last-updated {
            font-style: italic;
            color: #c8f7b0;
            margin-bottom: 30px;
            text-align: right;
        }
