        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.8;
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .header {
            background: rgba(15, 23, 42, 0.95);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-decoration: none;
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            background: rgba(30, 41, 59, 0.8);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-menu a:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #f59e0b;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .main-content {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }
        article {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        h1 {
            font-size: 3.5rem;
            color: #fbbf24;
            text-align: center;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.5rem;
            color: #60a5fa;
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #3b82f6;
        }
        h3 {
            font-size: 2rem;
            color: #34d399;
            margin-top: 1.5rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #f472b6;
            margin-top: 1.2rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background: rgba(251, 191, 36, 0.2);
            border-left: 5px solid #f59e0b;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-container img {
            max-width: 90%;
            border: 3px solid #3b82f6;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #94a3b8;
            font-size: 1rem;
            margin-top: 2rem;
        }
        .search-box {
            background: rgba(15, 23, 42, 0.9);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box h3 {
            color: #f59e0b;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background: #1e293b;
            color: white;
            font-size: 1.1rem;
        }
        .search-form button {
            padding: 1rem 2rem;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #1d4ed8;
        }
        .rating-section, .comment-section {
            background: rgba(15, 23, 42, 0.9);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 2.5rem 0;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .rating-stars i {
            font-size: 2.5rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s, transform 0.3s;
        }
        .rating-stars i:hover {
            color: #fbbf24;
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 10px;
            background: #1e293b;
            border: 1px solid #475569;
            color: white;
            font-size: 1.1rem;
        }
        .comment-form button, .rating-form button {
            padding: 1rem 2rem;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #059669;
        }
        .footer {
            background: #0f172a;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 5px solid #3b82f6;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        friend-link {
            display: block;
            padding: 1.5rem;
            background: rgba(30, 41, 59, 0.8);
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        friend-link:hover {
            background: #3b82f6;
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 23, 42, 0.98);
                padding: 2rem;
                border-radius: 15px;
                position: absolute;
                top: 100%;
                left: 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .main-content {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1.1rem;
            }
            .header {
                padding: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .footer {
            animation: fadeIn 1s ease-out;
        }
