        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        header {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            color: inherit;
            background: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        nav a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 0.8rem 2rem;
            font-size: 0.95rem;
            border-bottom: 1px solid #c5cae9;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb span {
            color: #3949ab;
            font-weight: bold;
        }
        main {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 3rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 4px solid #ff9800;
            padding-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #283593;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #4caf50;
        }
        h3 {
            font-size: 1.8rem;
            color: #3949ab;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            background: #fff9c4;
            padding: 1.5rem;
            border-left: 6px solid #ffb300;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: #5d4037;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        strong {
            color: #d32f2f;
            font-weight: 800;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-container img {
            max-width: 80%;
            border: 5px solid #bbdefb;
        }
        .search-section, .comments-section, .rating-section {
            background: #f3e5f5;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .search-section h3, .comments-section h3, .rating-section h3 {
            color: #7b1fa2;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #ba68c8;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #7b1fa2;
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #8e24aa, #ab47bc);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(142, 36, 170, 0.4);
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #bbdefb;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
            padding: 0.6rem;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.2);
        }
        friend-link a {
            color: #c5cae9;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.95rem;
            color: #9fa8da;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            nav ul.active {
                display: flex;
            }
            nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            main {
                padding: 0 1rem;
            }
            article {
                padding: 1.8rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, footer, .search-section, .comments-section, .rating-section {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
