* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            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;
            background: linear-gradient(90deg, #22c55e, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }
        .nav-links a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a::after {
            content: ' > ';
            margin: 0 8px;
            color: #64748b;
        }
        .breadcrumb a:last-child::after {
            content: '';
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e2e8f0;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 1.5rem;
            height: fit-content;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #22c55e;
            line-height: 1.3;
            border-left: 6px solid #3b82f6;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #38bdf8;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #60a5fa;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #93c5fd;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #334155;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #22c55e;
            margin: 1.5rem 0;
        }
        .bold {
            font-weight: 800;
            color: #fbbf24;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #475569;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.4s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .updated-time {
            text-align: right;
            font-style: italic;
            color: #94a3b8;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #475569;
        }
        .widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #475569;
        }
        .widget:last-child {
            border-bottom: none;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #fbbf24;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #475569;
            border-radius: 8px 0 0 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0.8rem 1.5rem;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #2563eb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #f59e0b;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border-radius: 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            border: 2px solid #475569;
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #22c55e;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #16a34a;
        }
        footer {
            background-color: #1e293b;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #334155;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1rem;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 2px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            .breadcrumb {
                padding-top: 1.5rem;
            }
        }
