        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a9d8f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e76f51;
            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, #264653 0%, #2a9d8f 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f4a261;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            color: #e9c46a;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            border-radius: 5px;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2a9d8f;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 3rem;
            color: #264653;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid #e76f51;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2a9d8f;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 5px solid #f4a261;
        }
        h3 {
            font-size: 1.8rem;
            color: #e76f51;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #555;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 50px;
            padding-top: 15px;
            border-top: 1px dashed #ccc;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #dee2e6;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #264653;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a9d8f;
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        button {
            background-color: #2a9d8f;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        button:hover {
            background-color: #21867a;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .stars i {
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffed4e;
        }
        footer {
            background-color: #264653;
            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 h4 {
            color: #f4a261;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #e9c46a;
        }
        friend-link:hover {
            color: #f4a261;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3d5a80;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            nav ul { display: none; }
            .hamburger { display: block; }
            nav.active ul {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #264653;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav.active ul li {
                margin: 10px 0;
            }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            .container { padding: 0 15px; }
            article { padding: 0 15px; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .my-logo { margin-bottom: 15px; }
        }
