        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #007bff;
        }
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00d4ff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ffcc00;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #00d4ff;
        }
        main {
            flex: 1;
            padding: 30px 0;
            background: white;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #1a1a2e;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
            margin-bottom: 15px;
            color: #16213e;
            border-left: 5px solid #00d4ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 10px;
            color: #0f3460;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #555;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .bold {
            font-weight: 700;
            color: #1a1a2e;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ccc;
        }
        .interactive-section {
            margin: 40px 0;
            padding: 25px;
            background: #f1f8ff;
            border-radius: 10px;
            border: 1px solid #cce5ff;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            flex: 1;
            min-width: 200px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
            width: 100%;
        }
        button {
            padding: 12px 25px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        button:hover {
            background: #0056b3;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ffcc00;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9900;
        }
        footer {
            background: #1a1a2e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #00d4ff;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .friend-links a {
            color: #ccc;
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #333;
            transition: color 0.3s;
        }
        .friend-links a:hover {
            color: #00d4ff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: #16213e;
                padding: 20px;
                z-index: 1000;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav a {
                display: block;
                padding: 12px;
                border-bottom: 1px solid #2d3748;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-box, .comment-form, .rating-form {
                flex-direction: column;
            }
            .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
                width: 100%;
            }
        }
        .link-list {
            margin: 20px 0;
            padding: 15px;
            background: #e9ecef;
            border-radius: 8px;
        }
        .link-list ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .link-list a {
            color: #0f3460;
            padding: 5px 10px;
            background: white;
            border-radius: 4px;
            border: 1px solid #ccc;
        }
        .link-list a:hover {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }
