        * {
            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%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4ade80;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #22d3ee;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2dd4bf;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #4ade80, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: rgba(74, 222, 128, 0.15);
        }
        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4ade80;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        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 {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 5px solid #4ade80;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #4ade80;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #2dd4bf;
        }
        h3 {
            font-size: 1.6rem;
            color: #22d3ee;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #a78bfa;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 300;
            background: rgba(34, 211, 238, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #22d3ee;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(74,222,128,0.2), rgba(34,211,238,0.2));
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #4ade80;
        }
        .tip {
            background: rgba(168, 85, 247, 0.1);
            border-left: 5px solid #a855f7;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .tip::before {
            content: "💡 Pro Tip: ";
            font-weight: bold;
            color: #d8b4fe;
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 10px;
        }
        blockquote {
            border-left: 4px solid #f59e0b;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #fbbf24;
            background: rgba(245, 158, 11, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
            position: relative;
        }
        .img-container img {
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        aside {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #fbbf24;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #4ade80;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4ade80;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            outline: none;
        }
        .search-box button {
            background: #4ade80;
            color: #0a2e1d;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #22d3ee;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .rate-text {
            font-size: 0.9rem;
            color: #aaa;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background: rgba(255,255,255,0.08);
            color: white;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #4ade80, #22d3ee);
            color: #0f172a;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        footer {
            background: #0f172a;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #2dd4bf;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #4ade80;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .friend-link {
            background: rgba(74, 222, 128, 0.1);
            padding: 10px 15px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .friend-link:hover {
            background: rgba(74, 222, 128, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 25, 20, 0.98);
                padding: 20px;
                border-top: 1px solid #2dd4bf;
            }
            .nav-links.active {
                display: flex;
            }
            .burger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 25px;
            }
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 20px;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            background: rgba(245, 158, 11, 0.2);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
