        * {
            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: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: #d4af37;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b8941f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #fff;
            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;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            color: #fff;
            text-decoration: none;
        }
        .my-logo {
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: #e6e6e6;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #16213e;
            padding: 15px;
            margin-top: 15px;
            border-radius: 8px;
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            color: #e6e6e6;
            padding: 10px;
            border-bottom: 1px solid #2d3748;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #d4af37;
        }
        .breadcrumb span {
            color: #ccc;
        }
        main {
            padding: 40px 0;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: #16213e;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #0f3460;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #333;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 5px solid #d4af37;
            margin: 20px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .internal-links {
            list-style: none;
            padding: 20px;
            background-color: #f1f8ff;
            border-radius: 8px;
            margin: 25px 0;
        }
        .internal-links li {
            margin-bottom: 10px;
        }
        .internal-links a {
            color: #1a73e8;
        }
        .internal-links a:hover {
            color: #0d47a1;
        }
        .search-box, .comments-section, .rating-section {
            margin-top: 40px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .search-box h2, .comments-section h2, .rating-section h2 {
            color: #1a1a2e;
            font-size: 1.8rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 12px 25px;
            background-color: #d4af37;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background-color: #b8941f;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        footer {
            background-color: #1a1a2e;
            color: #e6e6e6;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h3 {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #a0a0ff;
        }
        friend-link:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .nav-mobile {
                width: 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
