 <!-- Styles -->
    <link rel="stylesheet" href="css/styles.css">
    <link rel="stylesheet" href="css/gallery.css">
    
    <style>
        .breadcrumbs {
            padding: 10px 20px;
            background: #f5f5f5;
            margin-bottom: 20px;
        }
        
        .breadcrumbs a {
            color: #2196F3;
            text-decoration: none;
        }
        
        .breadcrumbs .current {
            color: #333;
            font-weight: bold;
        }

        .category-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s;
            background: white;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-container {
            position: relative;
			width: 100;
            padding-top: 100%;
            cursor: pointer;
        }

        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 15px;
        }

        .hierarchy-level {
            color: #666;
            font-size: 1.0em;
            margin: 5px 0;
        }

        .rev-share-badge {
            background: #4CAF50;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8em;
        }

        .button-group {
            display: flex;
            gap: 5px;
            margin-top: 5px;
        }

        .view-button, .browse-button .buy-button{
            padding: 5px 5px;
            border-radius: 4px;
            text-decoration: none;
            text-align: center;
			flex-wrap: wrap;
            flex: 1;
        }

        .view-button {
            background: #2196F3;
            color: white;
			flex-wrap: wrap;
        }

.buy-button {
            background: #2196F3;
            color: white;
			flex-wrap: wrap;
        }

        .browse-button {
            background: #4CAF50;
            color: white;
			flex-wrap: wrap;
        }

        .nft-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .category-info {
            padding: 20px;
            background: #f9f9f9;
            margin-bottom: 20px;
        }

        .hierarchy-path {
            color: #666;
            font-size: 0.9em;
            margin-top: 5px;
        }
    </style>