        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            font-size: 1.1rem;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
            text-decoration: underline;
        }
        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: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 20px 0;
            border-bottom: 3px solid #3b82f6;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 10px 0;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .search-form {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-form form {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid #3b82f6;
            background: #1e293b;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            background: transparent;
            color: #f1f5f9;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #2563eb;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #cbd5e1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #3b82f6;
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fbbf24;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            padding: 40px 0;
            background: #1e293b;
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding-right: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #60a5fa;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            font-size: 1.8rem;
            color: #38bdf8;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #22d3ee;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            color: #e2e8f0;
            padding: 0 5px;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        em {
            color: #a78bfa;
            font-style: italic;
        }
        blockquote {
            border-left: 5px solid #3b82f6;
            padding-left: 25px;
            margin: 25px 0;
            font-style: italic;
            color: #cbd5e1;
            background: rgba(59, 130, 246, 0.1);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 25px;
            color: #e2e8f0;
        }
        li {
            margin-bottom: 10px;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 6px solid #fbbf24;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            border: 4px solid #3b82f6;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: #0f172a;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #334155;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #fbbf24;
            border-bottom: 2px solid #475569;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .comment-form, .rating-form {
            background: #1e293b;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #475569;
        }
        .comment-form h2, .rating-form h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cbd5e1;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #3b82f6;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #1d4ed8, #3b82f6);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(29, 78, 216, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #fbbf24;
        }
        .last-updated {
            text-align: center;
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        footer {
            background: #0f172a;
            padding: 40px 0 20px;
            border-top: 3px solid #3b82f6;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px;
            background: #1e293b;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        friend-link:hover {
            background: #334155;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                text-align: center;
                font-size: 1.8rem;
            }
            .search-form {
                max-width: 100%;
                margin: 10px 0;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -50px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e293b;
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                border: 2px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-wrapper {
                gap: 30px;
            }
            aside {
                position: static;
            }
        }
