        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a2e1d 0%, #1a5c3a 100%);
            color: #e0f7e9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 46, 29, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2ecc71;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2ecc71;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #27ae60;
            transform: scale(1.05);
        }
        .my-logo i {
            color: #e74c3c;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #bdc3c7;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background: #27ae60;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #2ecc71;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 46, 29, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #27ae60;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ecf0f1;
            padding: 1rem;
            text-decoration: none;
            border-bottom: 1px solid #1a5c3a;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: #27ae60;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        .breadcrumb a {
            color: #2ecc71;
            text-decoration: none;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 92, 58, 0.6);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h1 {
            color: #2ecc71;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #e74c3c;
            padding-left: 15px;
        }
        .article-content h2 {
            color: #27ae60;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3498db;
        }
        .article-content h3 {
            color: #1abc9c;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: #f39c12;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content b, strong {
            color: #f1c40f;
            font-weight: 700;
        }
        .article-content em {
            color: #9b59b6;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(41, 128, 185, 0.2);
            border-left: 4px solid #3498db;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            color: #3498db;
            text-decoration: none;
            border-bottom: 1px dotted #3498db;
            transition: color 0.3s;
        }
        .inline-link:hover {
            color: #2ecc71;
            border-bottom-style: solid;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #2ecc71;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #95a5a6;
            margin-top: 0.5rem;
        }
        .last-updated {
            background: rgba(231, 76, 60, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .last-updated i {
            color: #e74c3c;
        }
        .sidebar {
            background: rgba(10, 46, 29, 0.7);
            padding: 2rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #2ecc71;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #27ae60;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #27ae60;
            border-radius: 5px 0 0 5px;
            background: #0a2e1d;
            color: white;
        }
        .search-form button {
            background: #27ae60;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #219653;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #34495e;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #f1c40f;
        }
        .rating-widget textarea,
        .comment-widget textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            background: #0a2e1d;
            border: 1px solid #27ae60;
            color: white;
            resize: vertical;
            min-height: 100px;
        }
        .rating-widget button,
        .comment-widget button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-widget button:hover,
        .comment-widget button:hover {
            background: #c0392b;
        }
        .site-footer {
            background: #0a2e1d;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-top: 3px solid #2ecc71;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #2ecc71;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            color: #bdc3c7;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #2ecc71;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(46, 204, 113, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1a5c3a;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #2ecc71, transparent);
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .sidebar {
                padding: 1.5rem;
            }
        }
